/* ===== VILAS BHUMRE — DESIGN #5 ===== */
/* SLATE BLUE & AMBER | Sora + Work Sans | Centered hero + circular portrait | Gradient-bordered cards */

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

:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --amber-300: #fcd34d;
    --amber-400: #fbbf24;
    --amber-500: #f59e0b;
    --amber-600: #d97706;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --white: #ffffff;
    --grad-accent: linear-gradient(135deg, var(--orange-500), var(--amber-400));
    --grad-hero: linear-gradient(160deg, #0f172a 0%, #1e293b 40%, #1a1a2e 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 4px 24px rgba(249, 115, 22, 0.15);
    --tr: 0.3s ease;
    --radius: 14px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    background: var(--slate-950);
    color: var(--slate-300);
    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 {
    font-family: 'Sora', sans-serif;
    color: var(--white);
    font-weight: 700;
}

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

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

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.logo-mark {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.logo-mark span {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-badge {
    background: var(--orange-500);
    color: var(--white);
    font-family: 'Sora', sans-serif;
    font-size: 0.48rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

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

.nav-links a {
    color: var(--slate-400);
    font-size: 0.84rem;
    font-weight: 500;
    padding: 6px 14px;
    position: relative;
    transition: var(--tr);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--orange-500);
    transform: scaleX(0);
    transition: var(--tr);
    border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    transform: scaleX(1);
}

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

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

/* ===== HERO — centered text + circular portrait ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-mesh .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}

.hero-mesh .orb-1 {
    width: 500px;
    height: 500px;
    background: var(--orange-500);
    top: -10%;
    right: -5%;
    animation: float 8s ease-in-out infinite;
}

.hero-mesh .orb-2 {
    width: 400px;
    height: 400px;
    background: var(--amber-400);
    bottom: -15%;
    left: -8%;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-mesh .orb-3 {
    width: 200px;
    height: 200px;
    background: #818cf8;
    top: 50%;
    left: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

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

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--orange-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
}

.hero-chip .dot {
    width: 6px;
    height: 6px;
    background: var(--orange-500);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.05;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-title .gradient {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--slate-400);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.hero-portrait-wrap {
    margin: 0 auto 36px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 4px;
    background: var(--grad-accent);
    box-shadow: 0 0 40px rgba(249, 115, 22, 0.2);
}

.hero-portrait-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--slate-900);
}

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

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 48px;
}

.h-stat {
    text-align: center;
    padding: 0 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.h-stat:last-child {
    border-right: none;
}

.h-stat .h-num {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.h-stat .h-lbl {
    font-size: 0.68rem;
    color: var(--slate-500);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

.btn-amber {
    background: var(--orange-500);
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.btn-amber:hover {
    background: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--slate-300);
    border: 1.5px solid var(--slate-600);
}

.btn-outline:hover {
    border-color: var(--orange-500);
    color: var(--orange-400);
}

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

.sec-dark {
    background: var(--slate-950);
}

.sec-darker {
    background: #020617;
}

.sec-slate {
    background: var(--slate-900);
}

.sec-gradient {
    background: linear-gradient(180deg, var(--slate-900) 0%, var(--slate-950) 100%);
}

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

.label-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    color: var(--orange-400);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.label-tag .tag-dot {
    width: 4px;
    height: 4px;
    background: var(--orange-500);
    border-radius: 50%;
}

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

.section-desc {
    color: var(--slate-500);
    max-width: 520px;
    margin: 0 auto;
    font-size: 0.95rem;
}

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

.gcard {
    background: var(--slate-900);
    border-radius: var(--radius);
    padding: 2px;
    position: relative;
    overflow: hidden;
    transition: var(--tr);
}

.gcard::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-accent);
}

.gcard:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.gcard-inner {
    background: var(--slate-900);
    border-radius: calc(var(--radius) - 2px);
    padding: 32px 24px;
    height: 100%;
}

.gcard .icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(249, 115, 22, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.gcard h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.gcard p {
    font-size: 0.85rem;
    color: var(--slate-400);
    line-height: 1.7;
}

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

.duo-img {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.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: 16px;
    letter-spacing: -0.02em;
}

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

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.chip {
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.15);
    color: var(--orange-400);
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
}

/* ===== FLOATING STAT CARDS ===== */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    background: var(--slate-800);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--tr);
}

.stat-card:hover {
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateY(-4px);
}

.stat-card .sc-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.stat-card .sc-num {
    font-family: 'Sora', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-card .sc-lbl {
    font-size: 0.68rem;
    color: var(--slate-500);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== VERTICAL NUMBERED STEPS ===== */
.steps {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-item {
    display: flex;
    gap: 20px;
    position: relative;
    padding-bottom: 36px;
}

.step-item:last-child {
    padding-bottom: 0;
}

.step-line {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--orange-400);
    flex-shrink: 0;
}

.step-connector {
    flex: 1;
    width: 2px;
    background: rgba(249, 115, 22, 0.1);
    margin-top: 8px;
}

.step-item:last-child .step-connector {
    display: none;
}

.step-content h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.step-content .step-year {
    font-size: 0.72rem;
    color: var(--orange-400);
    font-weight: 700;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.step-content p {
    font-size: 0.84rem;
    color: var(--slate-400);
    line-height: 1.7;
}

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

.g-tab {
    padding: 7px 18px;
    border-radius: 6px;
    border: 1px solid var(--slate-700);
    background: transparent;
    color: var(--slate-400);
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 0.78rem;
    cursor: pointer;
    transition: var(--tr);
}

.g-tab:hover,
.g-tab.active {
    background: var(--orange-500);
    color: var(--white);
    border-color: var(--orange-500);
}

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

.g-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.g-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--tr);
}

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

.g-overlay h4 {
    color: var(--white);
    font-size: 0.88rem;
    font-family: 'Sora', sans-serif;
}

.g-overlay p {
    color: var(--slate-400);
    font-size: 0.72rem;
}

.g-item.span2 {
    grid-column: span 2;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(2, 6, 23, 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.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tr);
}

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

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

.w-card {
    background: var(--slate-900);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--tr);
}

.w-card:hover {
    border-color: rgba(249, 115, 22, 0.15);
    transform: translateY(-3px);
}

.w-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(249, 115, 22, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

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

.w-card p {
    font-size: 0.82rem;
    color: var(--slate-400);
    line-height: 1.7;
}

/* ===== 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-size: 0.7rem;
    font-weight: 600;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.fg input,
.fg textarea {
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid var(--slate-700);
    background: var(--slate-800);
    color: var(--white);
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    transition: var(--tr);
    outline: none;
}

.fg input:focus,
.fg textarea:focus {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

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

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

.c-card {
    background: var(--slate-900);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.c-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(249, 115, 22, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.c-card h4 {
    font-size: 0.88rem;
    color: var(--white);
    margin-bottom: 2px;
}

.c-card p {
    color: var(--slate-400);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 140px 0 70px;
    text-align: center;
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
}

.page-header .hero-mesh {
    position: absolute;
    inset: 0;
}

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

.page-header h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.page-header h1 .gradient {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    color: var(--slate-400);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

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

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

.breadcrumb span {
    color: var(--slate-600);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--slate-900);
    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: var(--slate-500);
    font-size: 0.78rem;
}

.footer-right {
    font-size: 0.78rem;
    color: var(--slate-500);
}

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

.footer-right a:hover {
    color: var(--orange-500);
}

.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.04);
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--slate-500);
    transition: var(--tr);
}

.footer-social a:hover {
    background: var(--orange-500);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

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

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

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

.fx-l {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fx-r {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fx-s {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

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

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

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

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

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--slate-900);
        flex-direction: column;
        padding: 80px 24px;
        gap: 4px;
        transition: var(--tr);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

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

    .nav-links a::after {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .g-item.span2 {
        grid-column: span 1;
    }

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

    .h-stat {
        border-right: none;
        padding: 0 20px;
    }

    .hero-portrait-wrap {
        width: 160px;
        height: 160px;
    }

    .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;
    }

    .stat-cards {
        grid-template-columns: 1fr;
    }
}