        :root {
            --color-primary: #173728;
            --color-primary-rgb: 23, 55, 40;
            --color-secondary: #4b6655;
            --color-accent: #2f6f42;
            --color-accent-rgb: 47, 111, 66;
            --color-accent-soft: #5f916a;
            --color-accent-hover: #245735;
            --color-accent-light: #e6f0e8;
            --color-bg: #ffffff;
            --color-bg-alt: #f3f7f3;
            --color-text: #22342b;
            --color-text-light: #607166;
            --color-border: #dbe7dd;
            --color-shadow: rgba(23, 55, 40, 0.08);
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
            --spacing-xs: 0.5rem;
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 6rem;
            --max-width: 1200px;
            --radius-sm: 6px;
            --radius-md: 10px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
            --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
            --shadow-xl: 0 24px 64px rgba(0,0,0,0.16);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            color: var(--color-text);
            line-height: 1.7;
            background-color: var(--color-bg);
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        body.lightbox-open {
            overflow: hidden;
        }

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

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

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            line-height: 1.2;
            color: var(--color-primary);
        }

        h2 {
            font-size: 2.75rem;
            margin-bottom: var(--spacing-md);
            position: relative;
            display: inline-block;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        p {
            margin-bottom: 1rem;
            color: var(--color-text-light);
            font-size: 1.05rem;
        }

        .container {
            width: 90%;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.92);
            z-index: 1000;
            border-bottom: 1px solid rgba(0,0,0,0.04);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            transition: var(--transition);
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-sm);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 72px;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            line-height: 1;
        }

        .logo-image {
            height: 62px;
            width: auto;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.25rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--color-secondary);
            font-weight: 500;
            font-size: 0.925rem;
            position: relative;
            padding: 0.25rem 0;
            letter-spacing: 0.01em;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-accent);
            border-radius: 1px;
            transition: var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a.is-current::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--color-accent);
        }

        .nav-links a.is-current {
            color: var(--color-accent);
        }

        .nav-cta {
            background: var(--color-accent);
            color: white !important;
            padding: 1rem 1.8rem;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.98rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            line-height: 1;
            white-space: nowrap;
            border: 1px solid transparent;
            box-shadow: 0 6px 18px rgba(var(--color-accent-rgb), 0.22);
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: var(--color-accent-hover) !important;
            color: white !important;
            transform: translateY(-1px);
            box-shadow: 0 10px 24px rgba(var(--color-accent-rgb), 0.3);
        }

        .nav-cta svg {
            width: 17px;
            height: 17px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
        }

        .mobile-toggle {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            color: var(--color-primary);
            position: relative;
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .mobile-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: currentColor;
            transition: var(--transition);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 999px;
        }

        .mobile-toggle span::before,
        .mobile-toggle span::after {
            content: '';
            position: absolute;
            left: 50%;
            width: 24px;
            height: 2px;
            background: currentColor;
            transition: var(--transition);
            transform: translateX(-50%);
            border-radius: 999px;
        }

        .mobile-toggle span::before { top: -7px; }
        .mobile-toggle span::after { top: 7px; }

        .mobile-toggle.active span { background: transparent; }
        .mobile-toggle.active span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
        .mobile-toggle.active span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

        .gallery-hero {
            min-height: 70vh;
            display: flex;
            align-items: center;
            padding: 72px 0 4rem;
            position: relative;
            overflow: hidden;
            background:
                linear-gradient(115deg, rgba(8, 22, 15, 0.76) 0%, rgba(8, 22, 15, 0.48) 42%, rgba(8, 22, 15, 0.72) 100%),
                url("../Assets Peterson/IMG_5966.JPG") center center / cover no-repeat;
        }

        .gallery-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 18% 30%, rgba(var(--color-accent-rgb), 0.34) 0%, transparent 30%),
                radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.12) 0%, transparent 22%),
                linear-gradient(to bottom, rgba(4, 12, 8, 0.16), rgba(4, 12, 8, 0.38));
            pointer-events: none;
        }

        .gallery-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: clamp(6rem, 12vw, 10rem);
            background:
                linear-gradient(
                    to bottom,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 0.08) 18%,
                    rgba(255, 255, 255, 0.26) 38%,
                    rgba(255, 255, 255, 0.58) 62%,
                    rgba(255, 255, 255, 0.9) 82%,
                    rgba(255, 255, 255, 1) 100%
                );
            transform: translateY(1px);
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
            gap: 2.5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-copy {
            max-width: 640px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background: transparent;
            padding: 0.55rem 1.15rem;
            padding-left: 0;
            font-size: 0.825rem;
            font-weight: 600;
            color: #f3f8f4;
            margin-bottom: 1.75rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .hero-badge svg {
            width: 15px;
            height: 15px;
            margin-right: 0.5rem;
            fill: #cfe6d3;
            stroke: none;
        }

        .hero-copy h1 {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 4.5vw, 4.25rem);
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            line-height: 1.08;
            letter-spacing: -1.5px;
            text-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
        }

        .hero-copy p {
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.84);
            line-height: 1.8;
            max-width: 600px;
        }

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.95rem 2rem;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-family: var(--font-main);
        }

        .btn-primary {
            background: var(--color-accent);
            color: white;
            box-shadow: 0 4px 16px rgba(var(--color-accent-rgb), 0.3);
        }

        .btn-primary:hover {
            background: var(--color-accent-hover);
            box-shadow: 0 6px 24px rgba(var(--color-accent-rgb), 0.4);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.12);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.28);
        }

        .btn-secondary:hover {
            border-color: rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .hero-stats {
            display: flex;
            gap: 2.5rem;
            margin-top: 1rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.14);
        }

        .hero-stat {
            text-align: left;
            position: relative;
        }

        .hero-stat:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -1.25rem;
            top: 50%;
            transform: translateY(-50%);
            height: 40px;
            width: 1px;
            background: rgba(255,255,255,0.16);
        }

        .hero-stat strong {
            display: block;
            font-family: var(--font-heading);
            font-size: 1.85rem;
            font-weight: 800;
            color: white;
            letter-spacing: -0.5px;
        }

        .hero-stat span {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.74);
            font-weight: 500;
            margin-top: 0.15rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-collage {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
            align-items: end;
        }

        .collage-card {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius-lg);
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.22);
            box-shadow: var(--shadow-lg);
            min-height: 190px;
        }

        .collage-card:nth-child(1) {
            transform: translateY(18px) rotate(-3deg);
        }

        .collage-card:nth-child(2) {
            transform: rotate(2deg);
        }

        .collage-card:nth-child(3) {
            transform: rotate(-1deg);
        }

        .collage-card:nth-child(4) {
            transform: translateY(12px) rotate(3deg);
        }

        .collage-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 190px;
        }

        .collage-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 20%, rgba(10, 18, 26, 0.88) 100%);
        }

        .collage-card-copy {
            position: absolute;
            left: 1rem;
            right: 1rem;
            bottom: 0.95rem;
            z-index: 1;
        }

        .collage-chip {
            display: inline-flex;
            align-items: center;
            padding: 0.35rem 0.7rem;
            border-radius: var(--radius-sm);
            background: rgba(255, 255, 255, 0.16);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .collage-card h3 {
            color: #fff;
            font-size: 1rem;
        }

        .gallery-shell {
            padding: var(--spacing-lg) 0 var(--spacing-xl);
            background: var(--color-bg);
        }

        .section-heading {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 1.8rem;
        }

        .section-heading h2 {
            font-size: clamp(2rem, 3.6vw, 2.75rem);
        }

        .section-heading h2::after {
            content: '';
            display: block;
            width: 48px;
            height: 4px;
            border-radius: 2px;
            margin-top: 12px;
            background: var(--color-accent);
        }

        .section-heading p {
            max-width: 54ch;
        }

        .filter-toolbar {
            position: sticky;
            top: 80px;
            z-index: 30;
            display: grid;
            gap: 0.95rem;
            padding: 1.2rem;
            margin-bottom: 1.5rem;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

        .filter-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .filter-label {
            font-size: 0.9rem;
            font-weight: 800;
            color: var(--color-primary);
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .filter-hint {
            font-size: 0.93rem;
        }

        .filter-buttons {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            border: 1px solid var(--color-border);
            background: var(--color-bg-alt);
            color: var(--color-secondary);
            border-radius: var(--radius-sm);
            padding: 0.7rem 1rem;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-btn:hover {
            border-color: var(--color-accent);
            color: var(--color-accent);
            transform: translateY(-1px);
        }

        .filter-btn.is-active {
            background: var(--color-accent);
            color: #fff;
            border-color: transparent;
            box-shadow: 0 4px 12px rgba(var(--color-accent-rgb), 0.25);
        }

        .filter-count {
            display: inline-grid;
            place-items: center;
            min-width: 1.6rem;
            min-height: 1.6rem;
            padding: 0 0.35rem;
            border-radius: var(--radius-sm);
            background: rgba(0, 0, 0, 0.06);
            color: inherit;
            font-size: 0.8rem;
        }

        .filter-btn.is-active .filter-count {
            background: rgba(255, 255, 255, 0.2);
        }

        .gallery-summary {
            font-size: 0.96rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(12, minmax(0, 1fr));
            gap: 1rem;
            align-items: start;
        }

        .gallery-card {
            grid-column: span 4;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: white;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .gallery-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .gallery-card.card-wide {
            grid-column: span 8;
        }

        .gallery-open {
            width: 100%;
            background: transparent;
            border: 0;
            cursor: pointer;
            text-align: left;
            color: inherit;
        }

        .gallery-media {
            position: relative;
            overflow: hidden;
            background: #dfe5ea;
            aspect-ratio: 5 / 4;
        }

        .gallery-card.card-wide .gallery-media {
            aspect-ratio: 16 / 9;
        }

        .gallery-card.card-tall .gallery-media {
            aspect-ratio: 4 / 5;
        }

        .gallery-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.55s ease;
        }

        .gallery-card:hover .gallery-media img {
            transform: scale(1.04);
        }

        .gallery-copy {
            padding: 1rem 1rem 1.15rem;
        }

        .gallery-chip {
            display: inline-flex;
            align-items: center;
            padding: 0.35rem 0.7rem;
            border-radius: var(--radius-sm);
            background: var(--color-accent-light);
            color: var(--color-accent);
            font-size: 0.74rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 0.85rem;
        }

        .gallery-card h3 {
            font-size: 1.12rem;
            margin-bottom: 0.55rem;
        }

        .gallery-card p {
            font-size: 0.95rem;
            margin-bottom: 0.95rem;
        }

        .gallery-card span {
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
            color: var(--color-primary);
            font-size: 0.9rem;
            font-weight: 700;
        }

        .gallery-card span svg {
            width: 16px;
            height: 16px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
        }

        .cta-band {
            padding: 1.5rem 0 5.5rem;
        }

        .cta-panel {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 1.4rem;
            align-items: center;
            padding: 3rem;
            border-radius: var(--radius-xl);
            background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-soft) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-panel::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-panel h2 {
            color: white;
            font-size: clamp(1.9rem, 3vw, 2.5rem);
            margin-bottom: 0.65rem;
        }

        .cta-panel h2::after {
            display: none;
        }

        .cta-panel p {
            color: rgba(255, 255, 255, 0.9);
            max-width: 52ch;
        }

        .cta-actions {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .btn-light {
            background: white;
            color: var(--color-accent);
            font-weight: 700;
        }

        .btn-light:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
        }

        .btn-ghost {
            border: 2px solid rgba(255, 255, 255, 0.28);
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
        }

        .btn-ghost:hover {
            border-color: rgba(255, 255, 255, 0.7);
            background: rgba(255, 255, 255, 0.2);
        }

        footer {
            background: #102319;
            color: rgba(255,255,255,0.45);
            padding: 3.5rem 0 2rem;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .footer-logo {
            display: inline-flex;
            align-items: center;
        }

        .footer-logo-image {
            height: 58px;
            width: auto;
            display: block;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .footer-links a {
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            padding-top: 2rem;
            font-size: 0.825rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255,255,255,0.35);
        }

        .lightbox {
            position: fixed;
            inset: 0;
            z-index: 1200;
            display: grid;
            place-items: center;
            padding: 1.5rem;
            background: rgba(6, 18, 13, 0.82);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

        .lightbox[hidden] {
            display: none;
        }

        .lightbox-panel {
            position: relative;
            width: min(1100px, 100%);
            max-height: 100%;
            display: grid;
            grid-template-columns: minmax(0, 1fr);
            gap: 1rem;
        }

        .lightbox-figure {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
        }

        .lightbox-figure img {
            width: 100%;
            max-height: min(72vh, 820px);
            object-fit: contain;
            background: rgba(16, 35, 25, 0.95);
        }

        .lightbox-meta {
            display: flex;
            align-items: start;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            padding: 1.15rem 0.25rem 0;
            color: #fff;
        }

        .lightbox-meta h3 {
            color: #fff;
            margin-bottom: 0.45rem;
            font-size: 1.35rem;
        }

        .lightbox-meta p {
            color: rgba(255, 255, 255, 0.72);
            max-width: 56ch;
        }

        .lightbox-controls {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .lightbox-btn,
        .lightbox-close {
            border: 0;
            cursor: pointer;
            color: #fff;
            background: rgba(255, 255, 255, 0.12);
            transition: var(--transition);
        }

        .lightbox-btn {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: grid;
            place-items: center;
        }

        .lightbox-close {
            position: absolute;
            top: 0.9rem;
            right: 0.9rem;
            z-index: 2;
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: grid;
            place-items: center;
        }

        .lightbox-btn:hover,
        .lightbox-close:hover {
            background: rgba(255, 255, 255, 0.22);
        }

        .lightbox-btn svg,
        .lightbox-close svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
        }

        .lightbox-count {
            color: rgba(255, 255, 255, 0.72);
            font-weight: 700;
            min-width: 4.5rem;
            text-align: center;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        @media (max-width: 1080px) {
            .hero-grid {
                grid-template-columns: 1fr;
            }

            .hero-copy {
                max-width: none;
            }

            .hero-collage {
                display: none;
            }

            .gallery-card,
            .gallery-card.card-wide {
                grid-column: span 6;
            }

            .cta-panel {
                grid-template-columns: 1fr;
            }

            .cta-actions {
                justify-content: flex-start;
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .nav-container {
                gap: 0.75rem;
            }

            .logo {
                max-width: calc(100% - 56px);
            }

            .logo-image {
                height: 52px;
            }

            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: calc(100% + 0.6rem);
                left: 0;
                right: 0;
                width: auto;
                background: rgba(255, 255, 255, 0.99);
                backdrop-filter: blur(24px);
                padding: 0.75rem;
                box-shadow: var(--shadow-lg);
                gap: 0.35rem;
                border: 1px solid rgba(var(--color-primary-rgb), 0.08);
                border-radius: 20px;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                width: 100%;
                padding: 0;
            }

            .nav-links li a,
            .nav-links a {
                display: block;
                padding: 0.95rem 1rem;
                font-size: 1rem;
                border-radius: 14px;
                text-align: center;
            }

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

            .nav-links a:hover,
            .nav-links a.is-current {
                background: var(--color-bg-alt);
            }

            .nav-cta {
                margin: 0.35rem 0 0;
                justify-content: center;
                width: 100%;
            }

            .gallery-hero {
                min-height: auto;
                padding-top: 6.5rem;
                padding-bottom: clamp(5rem, 16vw, 7rem);
            }

            .hero-copy h1 {
                font-size: 2.85rem;
                letter-spacing: -1px;
            }

            .hero-copy p {
                font-size: 1.1rem;
            }

            .hero-stats {
                gap: 1.5rem;
                flex-wrap: wrap;
            }

            .hero-stat:not(:last-child)::after {
                display: none;
            }

            h2 {
                font-size: 2.25rem;
            }

            .filter-toolbar {
                position: static;
                padding: 0;
                background: none;
                border: none;
                box-shadow: none;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                gap: 0.5rem;
            }

            .filter-meta {
                display: none;
            }

            .filter-buttons {
                display: flex;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                gap: 0.5rem;
                padding-bottom: 0.25rem;
            }

            .filter-buttons::-webkit-scrollbar {
                display: none;
            }

            .filter-btn {
                white-space: nowrap;
                flex-shrink: 0;
                padding: 0.55rem 0.8rem;
                font-size: 0.82rem;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.75rem;
            }

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

            .gallery-card.card-wide .gallery-media,
            .gallery-media {
                aspect-ratio: 4 / 3;
            }

            .gallery-copy {
                padding: 0.75rem 0.75rem 0.85rem;
            }

            .gallery-card h3 {
                font-size: 0.95rem;
                margin-bottom: 0.35rem;
            }

            .gallery-card p {
                font-size: 0.85rem;
                margin-bottom: 0.65rem;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            .section-heading {
                margin-bottom: 1.4rem;
            }

            .lightbox {
                padding: 0.75rem;
            }

            .lightbox-figure img {
                max-height: 60vh;
            }

            .lightbox-meta {
                padding-top: 0.5rem;
                flex-direction: column;
            }

            .lightbox-meta h3 {
                font-size: 1.1rem;
            }

            .cta-panel {
                padding: 2rem 1.5rem;
            }

            .footer-content {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 0.75rem;
                text-align: center;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .gallery-hero {
                padding-top: 5.5rem;
            }

            .hero-copy h1 {
                font-size: 2.15rem;
            }

            h2 {
                font-size: 1.9rem;
            }

            .hero-actions,
            .cta-actions {
                flex-direction: column;
            }

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

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

            .hero-stats {
                flex-direction: column;
                gap: 1rem;
            }

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

            .gallery-card.card-wide .gallery-media,
            .gallery-media {
                aspect-ratio: 16 / 10;
            }

            .lightbox-controls {
                width: 100%;
                justify-content: space-between;
            }

            .lightbox-btn {
                width: 44px;
                height: 44px;
            }

            .lightbox-close {
                width: 40px;
                height: 40px;
            }
        }
