:root {
            --bg-base: #2f3943;
            --bg-surface: rgba(30, 36, 42, 0.45);
            --bg-surface-elevated: rgba(38, 46, 54, 0.55);

            --text-primary: #ffffff;
            --text-secondary: #d1d5db;
            --text-muted: #9ca3af;

            --accent-copper-light: #e2a77f;
            --accent-copper-dark: #af6035;
            --brand-gradient: linear-gradient(135deg, #e2a77f 0%, #af6035 100%);
            --brand-gradient-shimmer: linear-gradient(90deg, #af6035 0%, #e2a77f 50%, #af6035 100%);

            --accent-gold: #ce8e62;
            --accent-gold-hover: #e5a67a;
            --accent-neon: #a85cfc;
            --accent-warm: #af6035;

            --border-subtle: rgba(255, 255, 255, 0.04);
            --border-glass: rgba(255, 255, 255, 0.08);

            --font-display: 'Playfair Display', serif;
            --font-sans: 'Outfit', sans-serif;

            --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Reset & Base */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: transparent;
            /* Relying on ambient background */
            color: var(--text-primary);
            font-family: var(--font-sans);
            font-weight: 300;
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Ambient Background Layer */
        .ambient-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1;
            overflow: hidden;
            background-color: var(--bg-base);
        }

        .ambient-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            animation: float 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0.25;
            z-index: 1;
        }

        .blob-1 {
            top: -10%;
            left: -10%;
            width: 50vw;
            height: 50vw;
            background: var(--accent-gold);
        }

        .blob-2 {
            bottom: -20%;
            right: -10%;
            width: 60vw;
            height: 60vw;
            background: var(--accent-warm);
            animation-delay: -10s;
        }

        @keyframes float {
            0% {
                transform: translate(0, 0) scale(1);
            }

            100% {
                transform: translate(10%, 15%) scale(1.1);
            }
        }

        /* Glassmorphism Block Utilities */
        .glass-panel {
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-display);
            font-weight: 400;
            line-height: 1.1;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        ul {
            list-style: none;
        }

        /* Typography Utilities */
        .text-display-hero {
            font-size: clamp(3.2rem, 15vw, 10rem);
            letter-spacing: -0.01em;
            line-height: 1.25;
            padding: 0.2em 0;
            font-family: var(--font-display);
            text-transform: none;
            color: #fff;
        }

        @media (min-width: 768px) {
            .text-display-hero {
                font-size: clamp(5rem, 12vw, 10rem);
                line-height: 1.25;
            }
        }

        .hero-location {
            margin-bottom: 2.5rem;
            color: var(--accent-copper-light);
            font-weight: 600;
            letter-spacing: 0.4em;
            font-size: 0.85rem;
            text-transform: uppercase;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
            display: inline-block;
            animation: fadeIn 1.5s var(--ease-out-expo);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        .text-italic {
            font-style: italic;
            display: inline-block;
            padding: 0 0.1em;
            margin: 0 -0.05em;
            color: inherit;
        }

        @keyframes shimmer {
            to {
                background-position: 200% center;
            }
        }

        .text-muted {
            color: var(--text-secondary);
        }

        .label-upper {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            font-weight: 500;
            color: var(--text-muted);
        }

        /* Layout & Utilities */
        .container {
            width: 100%;
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
        }

        @media (min-width: 1024px) {
            .grid-2 {
                grid-template-columns: 1fr 1fr;
                gap: 8rem;
                align-items: center;
            }
        }

        .py-section {
            padding: 8rem 0;
        }

        @media (max-width: 768px) {
            .py-section {
                padding: 4rem 0;
            }
        }




        /* Navigation Components */
        .nav-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            padding: 0 5%;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.4s var(--ease-out-expo);
            background: transparent;
        }

        @media (min-width: 768px) {
            .nav-header {
                height: 110px;
            }
        }

        .nav-header.scrolled {
            background: transparent;
            height: 70px;
        }

        @media (min-width: 768px) {
            .nav-header.scrolled {
                height: 80px;
            }
        }

        .nav-logo-container {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .nav-logo {
            display: block;
            width: 95px;
            height: 95px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(206, 142, 98, 0.3);
            border: 1px solid var(--accent-gold);
            transition: all 0.4s var(--ease-out-expo);
            position: relative;
            transform: translateY(15px);
        }

        @media(min-width: 768px) {
            .nav-logo {
                width: 185px;
                height: 185px;
                border-width: 2px;
                box-shadow: 0 0 30px rgba(206, 142, 98, 0.4);
                transform: translateY(35px);
            }

            .nav-header.scrolled .nav-logo {
                transform: translateY(40px);
            }
        }

        .nav-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.2);
        }

        .nav-links {
            display: none;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
        }

        .nav-links a {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            font-weight: 500;
            position: relative;
            text-decoration: none;
            color: var(--text-primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }

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

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

        .mobile-toggle {
            display: block;
            background: none;
            border: none;
            color: var(--text-primary);
            cursor: pointer;
            z-index: 110;
        }

        @media (min-width: 768px) {
            .mobile-toggle {
                display: none;
            }
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            min-height: 100vh;
            height: 100dvh;
            background: rgba(3, 3, 3, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            z-index: 105;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s var(--ease-out-expo);
        }

        .mobile-menu.active {
            opacity: 1;
            pointer-events: all;
        }

        .mobile-menu a {
            font-family: var(--font-display);
            font-size: 3rem;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s var(--ease-out-expo);
        }

        .mobile-menu.active a {
            transform: translateY(0);
            opacity: 1;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: var(--bg-base);
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            transform: scale(1.05);
        }

        @keyframes slowZoom {
            0% {
                transform: scale(1);
            }

            100% {
                transform: scale(1.15);
            }
        }

        .hero-bg video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            animation: slowZoom 45s infinite alternate ease-in-out;
        }

        @media (max-width: 768px) {
            .hero-bg video {
                object-position: 65% center;
            }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom,
                    rgba(3, 3, 3, 0.2) 0%,
                    rgba(3, 3, 3, 0.6) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1200px;
            width: 100%;
            padding: 0 5%;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.4);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 1.2s var(--ease-out-expo) forwards;
            animation-delay: 0.2s;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .text-display-hero {
            font-size: clamp(3.2rem, 15vw, 10rem);
            letter-spacing: -0.01em;
            line-height: 1.25;
            padding: 0.2em 0;
            font-family: var(--font-display);
            text-transform: none;
            color: #fff;
        }

        @media (min-width: 768px) {
            .text-display-hero {
                font-size: clamp(5rem, 12vw, 10rem);
                line-height: 1.25;
            }
        }

        .hero-location {
            margin-bottom: 2.5rem;
            color: var(--accent-copper-light);
            font-weight: 600;
            letter-spacing: 0.4em;
            font-size: 0.85rem;
            text-transform: uppercase;
            text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
            display: inline-block;
            animation: fadeIn 1.5s var(--ease-out-expo);
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .text-italic {
            font-style: italic;
            display: inline-block;
            padding: 0 0.1em;
            margin: 0 -0.05em;
            color: inherit;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            border: 1px solid var(--border-glass);
            padding: 1.2rem 2rem;
            border-radius: 100px;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-weight: 500;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            margin-top: 2.5rem;
            width: 100%;
            max-width: 320px;
        }

        @media (min-width: 768px) {
            .btn-outline {
                width: auto;
                padding: 1.25rem 3rem;
                margin-top: 3.5rem;
            }
        }

        .btn-outline:hover {
            background: var(--text-primary);
            color: var(--bg-base);
            border-color: var(--text-primary);
        }

        /* Event Banner Marquee */
        .event-banner {
            background: var(--brand-gradient);
            color: #000;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05rem;
            padding: 0.85rem 0;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            z-index: 10;
        }

        .marquee-inner {
            display: inline-block;
            animation: marquee 19s linear infinite;
        }

        /* Architecture Details */
        .img-wrapper {
            position: relative;
            border-radius: 2px;
            overflow: hidden;
            aspect-ratio: 4/5;
        }

        .img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s var(--ease-out-expo);
        }

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

        /* Event Posters Specific */
        .poster-wrap {
            aspect-ratio: auto !important;
            background: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
        }

        .poster-wrap img {
            object-fit: contain !important;
            height: auto !important;
            max-height: 100% !important;
        }

        /* Form Components */
        .form-group {
            margin-bottom: 2.5rem;
            position: relative;
        }

        .form-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--border-glass);
            padding: 0.5rem 0;
            color: var(--text-primary);
            font-family: var(--font-sans);
            font-size: 1.1rem;
            transition: border-color 0.3s ease;
        }

        .form-input:focus {
            outline: none;
            border-bottom-color: var(--accent-gold);
        }

        .form-label {
            position: absolute;
            top: 0.5rem;
            left: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            color: var(--text-muted);
            font-size: 1.1rem;
        }

        .form-input:focus~.form-label,
        .form-input:not(:placeholder-shown)~.form-label {
            top: -1.2rem;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent-gold);
        }

        .btn-solid {
            background: var(--brand-gradient);
            color: var(--bg-base);
            border: none;
            padding: 1.25rem 2.5rem;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-weight: 500;
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
        }

        .btn-solid:hover {
            filter: brightness(1.1);
        }

        /* Review Carousel */
        .carousel-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin: 4rem auto 0;
            overflow: hidden;
            padding: 2rem 0;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.6s var(--ease-out-expo);
            width: 100%;
        }

        .carousel-slide {
            min-width: 100%;
            padding: 0 1rem;
            display: flex;
            justify-content: center;
        }

        .review-card {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            padding: 2rem 1rem;
            width: 100%;
            text-align: center;
            border-radius: 4px;
        }

        .stars {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            display: flex;
            justify-content: center;
            gap: 0.25rem;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--border-glass);
            border: none;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .carousel-dot.active {
            background: var(--accent-gold);
        }

        .carousel-btn {
            background: none;
            border: 1px solid var(--border-glass);
            color: var(--text-primary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            transition: all 0.3s ease;
            backdrop-filter: blur(4px);
        }

        .carousel-btn:hover {
            border-color: var(--accent-gold);
            color: var(--accent-gold);
        }

        .carousel-prev {
            left: 0;
        }

        .carousel-next {
            right: 0;
        }

        @media (min-width: 768px) {
            .carousel-prev {
                left: 2rem;
            }

            .carousel-next {
                right: 2rem;
            }

            .review-card {
                padding: 4rem;
            }
        }

        /* Cookie Banner */
        .cookie-toast {
            position: fixed;
            bottom: 1rem;
            left: 1rem;
            right: 1rem;
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 1rem;
            z-index: 1000;
            background: rgba(12, 12, 12, 0.75);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid var(--border-glass);
            border-radius: 8px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            transform: translateY(calc(100% + 2rem));
            transition: transform 0.6s var(--ease-out-expo);
        }

        @media(min-width: 768px) {
            .cookie-toast {
                bottom: 2rem;
                left: 2rem;
                right: auto;
                max-width: 340px;
            }
        }

        /* Animations */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s var(--ease-out-expo);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Footer */
        .footer {
            background: var(--bg-surface-elevated);
            padding: 6rem 0 3rem;
            border-top: 1px solid var(--border-subtle);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        @media(min-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .footer-logo {
            display: block;
            width: 90px;
            height: 90px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(207, 168, 86, 0.3);
            border: 1px solid var(--accent-gold);
            margin-bottom: 2rem;
        }

        @media(min-width: 768px) {
            .footer-logo {
                width: 120px;
                height: 120px;
                border-width: 2px;
                box-shadow: 0 0 30px rgba(207, 168, 86, 0.4);
            }
        }

        .footer-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.1);
        }

        .horizontal-scroll-grid {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            padding-bottom: 2rem;
            scroll-snap-type: x mandatory;
            margin-top: 4rem;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
            scrollbar-color: var(--accent-gold) rgba(255, 255, 255, 0.05);
        }

        .horizontal-scroll-grid::-webkit-scrollbar {
            height: 6px;
        }

        .horizontal-scroll-grid::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
        }

        .horizontal-scroll-grid::-webkit-scrollbar-thumb {
            background: var(--accent-gold);
            border-radius: 4px;
        }

        .horizontal-scroll-grid>div {
            flex: 0 0 auto;
            width: calc(100% - 4rem);
            max-width: 320px;
            scroll-snap-align: center;
            opacity: 1;
            transform: translateY(0);
        }

        /* Accordion Styles */
        .accordion-container {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .accordion-item {
            border-bottom: 1px solid var(--border-subtle);
            overflow: hidden;
        }

        .accordion-header {
            width: 100%;
            background: transparent;
            border: none;
            padding: 1.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--text-primary);
            font-family: var(--font-display);
            font-size: 1.5rem;
            text-align: left;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .accordion-header:hover {
            color: var(--accent-gold);
        }

        .accordion-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.4s var(--ease-out-expo);
            color: var(--accent-gold);
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
        }

        .accordion-content {
            max-height: 0;
            opacity: 0;
            transition: all 0.5s var(--ease-out-expo);
            padding: 0;
        }

        .accordion-item.active .accordion-content {
            max-height: 500px;
            /* Arbitrary large height to allow content to expand */
            opacity: 1;
            padding-bottom: 1.5rem;
        }

        .accordion-text {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 0.5rem;
        }

        @media (min-width: 768px) {
            .horizontal-scroll-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                overflow-x: visible;
                padding-bottom: 0;
            }

            .horizontal-scroll-grid>div {
                flex: auto;
                max-width: none;
            }
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
            gap: 2rem;
        }

        @media(min-width: 768px) {
            .footer-content {
                flex-direction: row;
            }
        }

        .menu-teaser-img-col {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            order: 2;
        }

        .menu-teaser-text-col {
            order: 1;
        }

        @media(min-width: 1024px) {
            .menu-teaser-img-col {
                order: 1;
            }

            .menu-teaser-text-col {
                order: 2;
            }
        }

        /* Utility classes — extracted from inline styles */
        .star-icon {
            width: 14px;
            height: 14px;
            fill: currentColor;
        }

        .review-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .review-author-wrap {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .review-author {
            font-family: var(--font-sans);
            font-weight: 500;
            font-size: 1.1rem;
            line-height: 1;
        }

        .review-stars {
            margin-bottom: 0;
            justify-content: flex-start;
            margin-top: 4px;
        }

        .review-text {
            font-size: 1.25rem;
            font-family: var(--font-display);
            font-style: italic;
        }

        .section-divider {
            border-top: 1px solid var(--border-subtle);
            padding: 2rem 0;
        }

        .section-title-sm {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .social-link {
            color: #ffffff;
            transition: transform 0.3s ease, color 0.3s ease, filter 0.3s ease;
            display: inline-flex;
        }

        .social-link:hover {
            color: var(--accent-gold);
            transform: scale(1.1);
            filter: drop-shadow(0 0 10px rgba(207, 168, 86, 0.4));
        }

        .social-icon {
            width: 32px;
            height: 32px;
        }

        .contact-info-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            margin-top: 4px;
        }

        .contact-info-title {
            font-family: var(--font-sans);
            margin-bottom: 0.5rem;
            font-weight: 400;
        }

        /* Reduced motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            .ambient-blob { animation: none; }
            .hero-bg video { animation: none; }
            .marquee-inner { animation: none; }
        }

/* --- A11Y Utility Classes --- */
.skip-nav {
    position: absolute;
    top: -100px;
    left: 0;
    padding: 10px 15px;
    z-index: 9999;
    background: var(--bg-base);
    color: var(--accent-gold);
    font-weight: bold;
    text-decoration: none;
    transition: top 0.3s var(--ease-out-expo);
}
.skip-nav:focus {
    top: 0;
}

:focus-visible {
    outline: 2px solid var(--accent-gold);
    outline-offset: 4px;
}


/* Atomic Utilities */
.mb-2 { margin-bottom: 2rem; }
.mb-1-5 { margin-bottom: 1.5rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-0-5 { margin-bottom: 0.5rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.pb-2 { padding-bottom: 2rem; }
.pb-0 { padding-bottom: 0; }
.pr-4 { padding-right: 4rem; }
.py-1 { padding: 1rem 0; }
.gap-2 { gap: 2rem; }
.gap-1-5 { gap: 1.5rem; }
.gap-1 { gap: 1rem; }
.font-display { font-family: var(--font-display); }
.font-sans { font-family: var(--font-sans); }
.font-medium { font-weight: 500; }
.font-bold { font-weight: 600; }
.text-xl { font-size: 1.4rem; }
.text-lg { font-size: 1.2rem; }
.text-md { font-size: 1.1rem; }
.text-sm { font-size: 0.9rem; }
.uppercase { text-transform: uppercase; }
.tracking-widest { letter-spacing: 0.2em; }
.text-gold { color: var(--accent-gold); }
.text-primary { color: var(--text-primary); }
.text-muted { color: var(--text-muted); }
.text-copper-light { color: var(--accent-copper-light); }
.text-center { text-align: center; }
.w-full { width: 100%; }
.flex { display: flex; }

.gallery-main {
    padding-top: 35vw;
}

@media (min-width: 768px) {
    .gallery-main {
        padding-top: 280px; /* offset for overlapping circle logo */
    }
}
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.delay-200 { transition-delay: 0.2s; }

/* --- Gallery Carousel (CSS Scroll Snap) --- */
.gallery-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 2rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    margin: 0 -5%; /* Break out of container padding */
    padding: 0 5% 3rem 5%; /* Restore padding for edges */
}

.gallery-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.gallery-carousel .gallery-item {
    scroll-snap-align: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

/* Specific Aspect Ratios & Widths */
.gallery-carousel .item-photo,
.gallery-carousel .item-video {
    flex: 0 0 calc(85vw - 2rem);
    aspect-ratio: 4/5;
    max-width: 400px;
}

.gallery-carousel .item-photo-portrait {
    flex: 0 0 calc(70vw - 2rem);
    aspect-ratio: 3/4;
    max-width: 350px;
}

.gallery-carousel .item-wide,
.gallery-carousel .item-featured {
    flex: 0 0 calc(90vw - 2rem);
    aspect-ratio: 16/9;
    max-width: 700px;
}

@media (min-width: 768px) {
    .gallery-carousel .gallery-item {
        scroll-snap-align: start;
    }
    .gallery-carousel .item-photo,
    .gallery-carousel .item-video {
        flex: 0 0 320px;
        aspect-ratio: 4/5;
    }
    .gallery-carousel .item-photo-portrait {
        flex: 0 0 280px;
        aspect-ratio: 3/4;
    }
    .gallery-carousel .item-wide,
    .gallery-carousel .item-featured {
        flex: 0 0 540px;
        aspect-ratio: 16/9;
    }
}

@media (min-width: 1024px) {
    .gallery-carousel .item-photo,
    .gallery-carousel .item-video {
        flex: 0 0 380px;
    }
    .gallery-carousel .item-photo-portrait {
        flex: 0 0 320px;
    }
    .gallery-carousel .item-wide,
    .gallery-carousel .item-featured {
        flex: 0 0 650px;
    }
}

/* Ensure media covers the container properly */
.gallery-carousel .gallery-item img,
.gallery-carousel .gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out-expo);
}

.gallery-carousel .gallery-item:hover img,
.gallery-carousel .gallery-item:hover video {
    transform: scale(1.05);
}

.gallery-carousel .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-carousel .gallery-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-display);
}

.gallery-carousel .gallery-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-family: var(--font-sans);
}

.gallery-carousel .video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.4s ease;
}

.gallery-carousel .gallery-item:hover .video-play-icon {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(206,142,98, 0.4);
}

.gallery-carousel .video-play-icon::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
    margin-left: 6px;
}
.delay-400 { transition-delay: 0.4s; }
.delay-600 { transition-delay: 0.6s; }
.aspect-video { aspect-ratio: 16/9; }
.object-center { object-position: center; }