 /* ═══════════════════════════════════════
       BASE RESET
    ═══════════════════════════════════════ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            /* prevent horizontal scroll globally */
            overflow-x: hidden;
        }

        body {
            font-family: 'Raleway', sans-serif;
            background: #0c1a2e;
            color: #f6f0e6;
            overflow-x: hidden;
            width: 100%;
        }

        img {
            display: block;
            max-width: 100%;
            height: auto;
        }

        /* ═══════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════ */
        :root {
            --navy: #0c1a2e;
            --navy2: #162340;
            --gold: #c9a96e;
            --gold2: #e8cea0;
            --cream: #f6f0e6;
            --terra: #a0522d;
            --white: #fdfaf5;
            --txt: #1a1209;
            --muted: #6b5b45;
            --t: 0.38s cubic-bezier(.25, .8, .25, 1);

            /* spacing scale */
            --s1: 0.5rem;
            --s2: 1rem;
            --s3: 1.5rem;
            --s4: 2rem;
            --s5: 3rem;
            --s6: 4rem;
            --s7: 5rem;
            --s8: 7rem;
        }

        ::-webkit-scrollbar {
            width: 4px;
        }

        ::-webkit-scrollbar-track {
            background: var(--navy);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 2px;
        }

        /* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            /* mobile-first padding */
            padding: 0.9rem 2rem;
            transition: background var(--t), padding var(--t), box-shadow var(--t);
        }

        .navbar.scrolled {
            background: rgba(10, 20, 40, 0.97);
            box-shadow: 0 2px 32px rgba(0, 0, 0, 0.55);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        /* Logo */
        .navbar__logo__text {
          
            display: flex;
            align-items: center;
            text-decoration: none; 
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-weight: 600;
            position: relative;
            white-space: nowrap;
            transition: opacity var(--t), color var(--t);
            gap: 10px;
            height: 90px;
            font-size: 1.20rem;
            font-family: 'Cormorant Garamond', serif;
        }
        .navbar__logo__text span:first-child {
            color: var(--gold);
         }
        .navbar__logo__text span:last-child {
            color: var(--cream);
        }


        /* Desktop links — hidden on mobile by default */
        .navbar__links {
            display: none;
            list-style: none;
            gap: 1.8rem;
            align-items: center;
        }

        .navbar__links a {
            color: var(--cream);
            text-decoration: none;
            font-size: 0.71rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            font-weight: 600;
            opacity: 0.78;
            position: relative;
            white-space: nowrap;
            transition: opacity var(--t), color var(--t);
        }

        .navbar__links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width var(--t);
        }

        .navbar__links a:hover,
        .navbar__links a.active {
            opacity: 1;
            color: var(--gold);
        }

        .navbar__links a:hover::after,
        .navbar__links a.active::after {
            width: 100%;
        }

        /* Hamburger — visible on mobile */
        .hamburger {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 6px;
            z-index: 501;
            flex-shrink: 0;
        }

        .hamburger__bar {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
            transition: transform 0.32s ease, opacity 0.32s ease;
            transform-origin: center;
        }

        .hamburger.is-open .hamburger__bar:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger.is-open .hamburger__bar:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger.is-open .hamburger__bar:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Full-screen mobile drawer */
        .mobile-drawer {
            position: fixed;
            inset: 0;
            z-index: 499;
            background: rgba(6, 12, 26, 0.98);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0;
            /* hidden by default */
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.32s ease, visibility 0.32s ease;
        }

        .mobile-drawer.is-open {
            visibility: visible;
            opacity: 1;
        }

        .mobile-drawer__link {
            display: block;
            width: 100%;
            max-width: 320px;
            padding: 1.1rem 2rem;
            text-align: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.65rem;
            font-weight: 400;
            color: var(--cream);
            text-decoration: none;
            border-bottom: 1px solid rgba(201, 169, 110, 0.12);
            transition: color var(--t), background var(--t);
        }

        .mobile-drawer__link:first-child {
            border-top: 1px solid rgba(201, 169, 110, 0.12);
        }

        .mobile-drawer__link:hover {
            color: var(--gold);
            background: rgba(201, 169, 110, 0.04);
        }

        /* ─── DESKTOP BREAKPOINT ─── */
        @media (min-width: 768px) {
            .navbar {
                padding: 1.1rem 3rem;
            }

            .navbar.scrolled {
                padding: 0.7rem 3rem;
            }

            /* Show desktop links */
            .navbar__links {
                display: flex;
            }

            /* Hide hamburger */
            .hamburger {
                display: none;
            }
        }

        @media (min-width: 1100px) {
            .navbar {
                padding: 1.2rem 4.5rem;
            }

            .navbar.scrolled {
                padding: 0.75rem 4.5rem;
            }

            .navbar__links {
                gap: 2.4rem;
            }
        }

        /* ═══════════════════════════════════════
   SHARED UTILITIES
═══════════════════════════════════════ */

        /* Container */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.25rem;
        }

        @media (min-width: 768px) {
            .container {
                padding: 0 2.5rem;
            }
        }

        @media (min-width: 1100px) {
            .container {
                padding: 0 4rem;
            }
        }

        /* Section padding */
        .section {
            padding: 4rem 0;
        }

        @media (min-width: 768px) {
            .section {
                padding: 6rem 0;
            }
        }

        @media (min-width: 1100px) {
            .section {
                padding: 7.5rem 0;
            }
        }

        /* Label */
        .label {
            font-size: 0.64rem;
            letter-spacing: 0.44em;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--gold);
        }

        .label--terra {
            color: var(--terra);
        }

        /* Heading */
        .heading {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 400;
            line-height: 1.1;
            color: var(--cream);
            font-size: clamp(2rem, 6vw, 3.6rem);
        }

        .heading em {
            font-style: italic;
            color: var(--gold);
        }

        .heading--dark {
            color: var(--txt);
        }

        .heading--dark em {
            color: var(--terra);
        }

        /* Body text */
        .body-text {
            font-size: 0.9rem;
            line-height: 1.9;
            font-weight: 300;
            color: rgba(246, 240, 230, 0.65);
        }

        .body-text--dark {
            color: var(--muted);
        }

        /* Divider */
        .divider {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin: 1.2rem 0;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--gold));
        }

        .divider::after {
            background: linear-gradient(to left, transparent, var(--gold));
        }

        .divider--left::before {
            display: none;
        }

        .divider--left::after {
            background: linear-gradient(to right, var(--gold), transparent);
            max-width: 80px;
        }

        .divider--terra::before {
            background: linear-gradient(to right, transparent, var(--terra));
        }

        .divider--terra::after {
            background: linear-gradient(to left, transparent, var(--terra));
        }

        .divider__icon {
            color: var(--gold);
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .divider__icon--terra {
            color: var(--terra);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            padding: 0.82rem 1.8rem;
            font-family: 'Raleway', sans-serif;
            font-size: 0.68rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            font-weight: 700;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
            white-space: nowrap;
        }

        .btn--gold {
            background: var(--gold);
            color: var(--navy);
        }

        .btn--gold:hover {
            background: var(--gold2);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(201, 169, 110, 0.28);
        }

        .btn--outline {
            background: transparent;
            color: var(--cream);
            border: 1px solid rgba(246, 240, 230, 0.3);
        }

        .btn--outline:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-2px);
        }

        .btn--pdf {
            background: transparent;
            color: var(--gold);
            border: 1px solid rgba(201, 169, 110, 0.4);
        }

        .btn--pdf:hover {
            background: rgba(201, 169, 110, 0.08);
            border-color: var(--gold);
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(201, 169, 110, 0.14);
        }

        .btn--navy {
            background: var(--navy);
            color: var(--gold);
        }

        .btn--navy:hover {
            background: #0a1525;
            transform: translateY(-2px);
            box-shadow: 0 10px 26px rgba(12, 26, 46, 0.3);
        }

        /* Reveal on scroll */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.75s ease, transform 0.75s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal.d1 {
            transition-delay: 0.1s;
        }

        .reveal.d2 {
            transition-delay: 0.2s;
        }

        .reveal.d3 {
            transition-delay: 0.3s;
        }

        .reveal.d4 {
            transition-delay: 0.4s;
        }

        /* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            padding: 6rem 1.25rem 4rem;
        }

        @media (min-width: 768px) {
            .hero {
                padding: 7rem 2.5rem 5rem;
            }
        }

        .hero__bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background:
                radial-gradient(ellipse at 65% 40%, rgba(201, 169, 110, 0.09) 0%, transparent 60%),
                radial-gradient(ellipse at 10% 80%, rgba(160, 82, 45, 0.09) 0%, transparent 50%),
                linear-gradient(155deg, #0a1628 0%, #162340 55%, #0c1a2e 100%);
        }

        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            opacity: 0.1;
            pointer-events: none;
            animation: blobFloat 10s ease-in-out infinite;
        }

        .blob--1 {
            width: min(520px, 80vw);
            height: min(520px, 80vw);
            background: var(--gold);
            top: -20%;
            right: -15%;
        }

        .blob--2 {
            width: min(380px, 60vw);
            height: min(380px, 60vw);
            background: var(--terra);
            bottom: -15%;
            left: -12%;
            animation-delay: -5s;
        }

        @keyframes blobFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            50% {
                transform: translate(14px, -20px) scale(1.04);
            }
        }

        /* Frame corners */
        .hero__frame {
            position: absolute;
            inset: 16px;
            z-index: 1;
            border: 1px solid rgba(201, 169, 110, 0.15);
            pointer-events: none;
        }

        @media (min-width: 768px) {
            .hero__frame {
                inset: 26px;
            }
        }

        .hero__frame::before {
            content: '';
            position: absolute;
            inset: 7px;
            border: 1px solid rgba(201, 169, 110, 0.06);
        }

        .corner {
            position: absolute;
            width: 28px;
            height: 28px;
            border-color: var(--gold);
            border-style: solid;
            opacity: 0.5;
        }

        @media (min-width: 768px) {
            .corner {
                width: 36px;
                height: 36px;
            }
        }

        .corner--tl {
            top: -1px;
            left: -1px;
            border-width: 2px 0 0 2px;
        }

        .corner--tr {
            top: -1px;
            right: -1px;
            border-width: 2px 2px 0 0;
        }

        .corner--bl {
            bottom: -1px;
            left: -1px;
            border-width: 0 0 2px 2px;
        }

        .corner--br {
            bottom: -1px;
            right: -1px;
            border-width: 0 2px 2px 0;
        }

        .hero__content {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
            max-width: 820px;
        }

        .hero__logo {
            opacity: 0;
            animation: fadeUp 0.9s 0.1s ease forwards;
            margin-bottom: 1.25rem;
        }

        .hero__logo img {
            height: 100px;
            width: auto;
            margin: 0 auto;
            filter: drop-shadow(0 0 28px rgba(201, 169, 110, 0.22));
        }

        @media (min-width: 768px) {
            .hero__logo img {
                height: 120px;
            }
        }

        @media (min-width: 1100px) {
            .hero__logo img {
                height: 180px;
            }
        }

        .hero__eyebrow {
            font-size: 0.62rem;
            letter-spacing: 0.44em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeUp 0.9s 0.25s ease forwards;
        }

        @media (min-width: 768px) {
            .hero__eyebrow {
                font-size: 0.68rem;
            }
        }

        .hero__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2.4rem, 9vw, 6.8rem);
            line-height: 0.93;
            font-weight: 300;
            color: var(--cream);
            opacity: 0;
            animation: fadeUp 1s 0.4s ease forwards;
            word-break: break-word;
            hyphens: auto;
        }

        .hero__title em {
            font-style: italic;
            color: var(--gold);
            display: block;
        }

        .hero__sub {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(0.95rem, 2.5vw, 1.3rem);
            font-weight: 300;
            font-style: italic;
            color: rgba(246, 240, 230, 0.58);
            margin: 1.4rem auto 2.2rem;
            max-width: 560px;
            opacity: 0;
            animation: fadeUp 1s 0.55s ease forwards;
        }

        .hero__actions {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            opacity: 0;
            animation: fadeUp 1s 0.7s ease forwards;
        }

        @media (min-width: 480px) {
            .hero__actions {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
            }

            .hero__actions .btn {
                width: auto;
            }
        }

        .hero__actions .btn {
            width: 100%;
            max-width: 280px;
        }

        .hero__scroll {
            position: absolute;
            bottom: 1.5rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
            color: rgba(246, 240, 230, 0.32);
            font-size: 0.58rem;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            opacity: 0;
            animation: fadeIn 1s 1.5s ease forwards;
        }

        .hero__scroll-line {
            width: 1px;
            height: 36px;
            background: linear-gradient(to bottom, var(--gold), transparent);
            animation: scrollPulse 2.4s ease-in-out infinite;
        }

        @keyframes scrollPulse {

            0%,
            100% {
                transform: scaleY(1);
                opacity: .4;
            }

            50% {
                transform: scaleY(1.3);
                opacity: 1;
            }
        }

        /* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
        .about {
            background: var(--white);
        }

        .about__grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        @media (min-width: 900px) {
            .about__grid {
                grid-template-columns: 1fr 1fr;
                gap: 5rem;
                align-items: center;
            }
        }

        .about__stats {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .stat__num {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.6rem;
            font-weight: 300;
            color: var(--terra);
            line-height: 1;
        }

        .stat__lbl {
            font-size: 0.65rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--muted);
            margin-top: 0.2rem;
        }

        .about__card {
            background: var(--navy);
            padding: 2.2rem;
            position: relative;
        }

        @media (min-width: 768px) {
            .about__card {
                padding: 3rem;
            }
        }

        .about__card::before {
            content: '';
            position: absolute;
            top: -8px;
            right: -8px;
            bottom: 8px;
            left: 8px;
            border: 1px solid var(--gold);
            pointer-events: none;
        }

        @media (min-width: 768px) {
            .about__card::before {
                top: -10px;
                right: -10px;
                bottom: 10px;
                left: 10px;
            }
        }

        .about__quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.35rem, 3vw, 1.85rem);
            font-style: italic;
            color: var(--gold);
            line-height: 1.4;
            margin-bottom: 0.6rem;
        }

        .about__quote-attr {
            font-size: 0.67rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(246, 240, 230, 0.35);
        }

        .about__card-divider {
            height: 1px;
            background: rgba(201, 169, 110, 0.18);
            margin: 1.5rem 0;
        }

        .about__card-note {
            font-size: 0.83rem;
            line-height: 1.82;
            color: rgba(246, 240, 230, 0.5);
            font-weight: 300;
            margin-bottom: 1.5rem;
        }

        /* ═══════════════════════════════════════
   SPEISEKARTE / PDF
═══════════════════════════════════════ */
        .speisekarte {
            background: var(--navy2);
        }

        .speisekarte__grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            align-items: center;
        }

        @media (min-width: 768px) {
            .speisekarte__grid {
                grid-template-columns: 1fr auto;
                gap: 3rem;
            }
        }

        .pdf-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.1rem;
            border: 1px solid rgba(201, 169, 110, 0.2);
            padding: 2rem 1.5rem;
            background: rgba(201, 169, 110, 0.04);
            text-align: center;
            width: 100%;
        }

        @media (min-width: 768px) {
            .pdf-box {
                min-width: 200px;
                width: auto;
            }
        }

        .pdf-box__icon {
            width: 52px;
            height: 52px;
            border: 1px solid rgba(201, 169, 110, 0.28);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
        }

        .pdf-box__label {
            font-size: 0.65rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: rgba(246, 240, 230, 0.4);
        }

        /* ═══════════════════════════════════════
   HOURS
═══════════════════════════════════════ */
        .hours {
            background: var(--navy);
        }

        .hours__inner {
            text-align: center;
        }

        .hours__grid {
            display: grid;
            gap: 1px;
            background: rgba(201, 169, 110, 0.12);
            border: 1px solid rgba(201, 169, 110, 0.12);
            margin-top: 2.5rem;
            /* 2 columns on mobile */
            grid-template-columns: repeat(2, 1fr);
        }

        @media (min-width: 600px) {
            .hours__grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (min-width: 900px) {
            .hours__grid {
                grid-template-columns: repeat(7, 1fr);
            }
        }

        .hours__item {
            padding: 1.6rem 0.75rem;
            background: var(--navy);
            text-align: center;
            transition: background var(--t);
        }

        .hours__item:hover {
            background: rgba(201, 169, 110, 0.07);
        }

        .hours__item--off {
            opacity: 0.35;
        }

        .hours__day {
            font-size: 0.6rem;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 700;
            margin-bottom: 0.6rem;
        }

        .hours__time {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.05rem;
            color: var(--cream);
            line-height: 1.5;
        }

        .hours__note {
            margin-top: 1.25rem;
            font-size: 0.72rem;
            color: rgba(246, 240, 230, 0.35);
            letter-spacing: 0.1em;
        }

        /* ═══════════════════════════════════════
   REVIEWS
═══════════════════════════════════════ */
        .reviews {
            background: var(--white);
        }

        .reviews__header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .reviews__grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.25rem;
        }

        @media (min-width: 600px) {
            .reviews__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1000px) {
            .reviews__grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .review-card {
            background: var(--white);
            padding: 2rem 1.75rem;
            border-top: 3px solid var(--terra);
            border: 1px solid rgba(160, 82, 45, 0.1);
            border-top: 3px solid var(--terra);
            transition: transform var(--t), box-shadow var(--t);
        }

        .review-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
        }

        .review-card__stars {
            color: var(--terra);
            font-size: 0.78rem;
            letter-spacing: 0.08em;
            margin-bottom: 0.75rem;
        }

        .review-card__text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.04rem;
            font-style: italic;
            color: var(--txt);
            line-height: 1.62;
            margin-bottom: 1.1rem;
        }

        .review-card__author {
            font-size: 0.66rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--muted);
            font-weight: 700;
        }

        /* ═══════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════ */
        .cta-strip {
            background: var(--gold);
            padding: 3.5rem 1.25rem;
            text-align: center;
        }

        @media (min-width: 768px) {
            .cta-strip {
                padding: 4.5rem 2.5rem;
            }
        }

        .cta-strip__title {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.7rem, 5vw, 3rem);
            font-weight: 400;
            color: var(--navy);
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }

        .cta-strip__title em {
            font-style: italic;
        }

        .cta-strip__sub {
            font-size: 0.88rem;
            color: rgba(12, 26, 46, 0.68);
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .cta-strip__actions {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
        }

        @media (min-width: 480px) {
            .cta-strip__actions {
                flex-direction: row;
                justify-content: center;
                flex-wrap: wrap;
            }
        }

        /* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
        .footer {
            background: #060e1c;
            padding: 4.5rem 1.25rem 3rem;
            border-top: 1px solid rgba(201, 169, 110, 0.1);
        }

        @media (min-width: 768px) {
            .footer {
                padding: 5.5rem 2.5rem 3.5rem;
            }
        }

        .footer__top {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 3rem;
            padding-bottom: 3.5rem;
            border-bottom: 1px solid rgba(201, 169, 110, 0.08);
            margin-bottom: 2.5rem;
        }

        .footer__logo img {
            height: 110px;
            width: auto;
            filter: drop-shadow(0 0 25px rgba(201, 169, 110, 0.2));
        }

        .footer__nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem 3rem;
            max-width: 900px;
        }

        .footer__nav a {
            font-size: 0.82rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: rgba(246, 240, 230, 0.5);
            text-decoration: none;
            transition: color var(--t), opacity var(--t);
            font-weight: 600;
        }

        .footer__nav a:hover {
            color: var(--gold);
            opacity: 1;
        }

        .footer__contact {
            max-width: 500px;
        }

        .footer__contact p {
            font-size: 1.05rem;
            color: rgba(246, 240, 230, 0.6);
            line-height: 1.8;
            font-weight: 300;
            margin-bottom: 0.5rem;
        }

        .footer__contact a {
            color: rgba(246, 240, 230, 0.6);
            text-decoration: none;
            transition: color var(--t);
        }

        .footer__contact a:hover {
            color: var(--gold);
        }

        .footer__social {
            display: flex;
            justify-content: center;
            gap: 1.8rem;
            margin-top: 1.8rem;
        }

        .footer__social-link {
            color: rgba(246, 240, 230, 0.45);
            transition: color var(--t), transform var(--t), border-color var(--t), background var(--t);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.7rem;
            border: 1px solid rgba(246, 240, 230, 0.1);
            border-radius: 50%;
        }

        .footer__social-link:hover {
            color: var(--gold);
            border-color: var(--gold);
            transform: translateY(-4px);
            background: rgba(201, 169, 110, 0.05);
        }

        .footer__social-link svg {
            width: 24px;
            height: 24px;
        }

        .footer__bottom {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            text-align: center;
        }

        @media (min-width: 768px) {
            .footer__bottom {
                flex-direction: row;
                justify-content: space-between;
                text-align: left;
            }
        }

        .footer__copy {
            font-size: 0.68rem;
            color: rgba(246, 240, 230, 0.25);
            letter-spacing: 0.05em;
        }

        .footer__legal {
            display: flex;
            gap: 2rem;
        }

        .footer__legal a {
            font-size: 0.68rem;
            color: rgba(246, 240, 230, 0.25);
            text-decoration: none;
            transition: color var(--t);
        }

        .footer__legal a:hover {
            color: var(--gold);
        }

        /* ═══════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════ */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }