/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --black: #0a0a0a;
    --black-rich: #111111;
    --white: #f5f2eb;
    --white-pure: #ffffff;
    --gold: #c9a84c;
    --gold-light: #e8d48b;
    --gold-dark: #a07c2a;
    --gray-900: #1a1a1a;
    --gray-800: #2a2a2a;
    --gray-700: #3a3a3a;
    --gray-400: #888888;
    --gray-300: #aaaaaa;
    --cream: #f5f0e6;
    --spotify: #1DB954;
    --apple: #fc3c44;
    --youtube: #FF0000;
    --amazon: #00A8E1;
    --tidal: #000000;
    --deezer: #a238ff;
    --instagram: #E1306C;
    --tiktok: #00f2ea;

    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-out-expo);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

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

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

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

    100% {
        background-position: 200% 0;
    }
}

@keyframes wingSpread {
    0% {
        transform: scaleX(0.8) scaleY(0.9);
        opacity: 0.3;
    }

    50% {
        transform: scaleX(1.1) scaleY(1.05);
        opacity: 0.6;
    }

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

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(201, 168, 76, 0.4);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s var(--ease-out-expo);
    background: transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    padding: 10px 0;
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__logo img {
    height: 42px;
    width: auto;
}

.nav__logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: var(--white);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav__links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-300);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--ease-out-expo);
}

.nav__links a:hover {
    color: var(--white);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-out-expo);
}

.nav__cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.nav__cta::after {
    display: none !important;
}

.nav__mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

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

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.3);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.4) 0%,
            rgba(10, 10, 10, 0.2) 40%,
            rgba(10, 10, 10, 0.7) 75%,
            rgba(10, 10, 10, 1) 100%);
}

.hero__glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: wingSpread 6s ease-in-out infinite;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 32px;
    animation: fadeIn 1s var(--ease-out-expo) 0.2s both;
}

.hero__badge::before {
    content: '✦';
    font-size: 0.6rem;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.92;
    letter-spacing: -1px;
    color: var(--white-pure);
    margin-bottom: 8px;
    animation: fadeInUp 1s var(--ease-out-expo) 0.4s both;
}

.hero__title-accent {
    display: block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--gray-300);
    max-width: 560px;
    margin: 20px auto 40px;
    line-height: 1.7;
    font-weight: 300;
    animation: fadeInUp 1s var(--ease-out-expo) 0.6s both;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 1s var(--ease-out-expo) 0.8s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: all 0.4s var(--ease-out-expo);
}

.btn--primary {
    background: var(--gold);
    color: var(--black);
}

.btn--primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(201, 168, 76, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn svg {
    width: 18px;
    height: 18px;
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.hero__scroll-indicator svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
    opacity: 0.5;
}

/* ============================================
   PLATFORMS SECTION  
   ============================================ */
.platforms {
    padding: 100px 0 80px;
    position: relative;
}

.platforms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    text-align: center;
    line-height: 1;
    margin-bottom: 20px;
    color: var(--white-pure);
}

.section-desc {
    text-align: center;
    color: var(--gray-400);
    max-width: 520px;
    margin: 0 auto 56px;
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
}

.platforms__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.platform-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 24px;
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    transition: all 0.4s var(--ease-out-expo);
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 16px;
}

.platform-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-card span {
    position: relative;
    z-index: 1;
}

.platform-card svg {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.platform-card--spotify::before {
    background: linear-gradient(135deg, rgba(29, 185, 84, 0.15), rgba(29, 185, 84, 0.05));
}

.platform-card--spotify:hover {
    border-color: rgba(29, 185, 84, 0.3);
    box-shadow: 0 8px 32px rgba(29, 185, 84, 0.15);
}

.platform-card--spotify svg {
    color: var(--spotify);
}

.platform-card--apple::before {
    background: linear-gradient(135deg, rgba(252, 60, 68, 0.15), rgba(252, 60, 68, 0.05));
}

.platform-card--apple:hover {
    border-color: rgba(252, 60, 68, 0.3);
    box-shadow: 0 8px 32px rgba(252, 60, 68, 0.15);
}

.platform-card--apple svg {
    color: var(--apple);
}

.platform-card--ytmusic::before {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15), rgba(255, 0, 0, 0.05));
}

.platform-card--ytmusic:hover {
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.15);
}

.platform-card--ytmusic svg {
    color: var(--youtube);
}

.platform-card--amazon::before {
    background: linear-gradient(135deg, rgba(0, 168, 225, 0.15), rgba(0, 168, 225, 0.05));
}

.platform-card--amazon:hover {
    border-color: rgba(0, 168, 225, 0.3);
    box-shadow: 0 8px 32px rgba(0, 168, 225, 0.15);
}

.platform-card--amazon svg {
    color: var(--amazon);
}

.platform-card--tidal::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.platform-card--tidal:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.08);
}

.platform-card--tidal svg {
    color: var(--white);
}

.platform-card--deezer::before {
    background: linear-gradient(135deg, rgba(162, 56, 255, 0.15), rgba(162, 56, 255, 0.05));
}

.platform-card--deezer:hover {
    border-color: rgba(162, 56, 255, 0.3);
    box-shadow: 0 8px 32px rgba(162, 56, 255, 0.15);
}

.platform-card--deezer svg {
    color: var(--deezer);
}

/* ============================================
   ABOUT / QUEM SOMOS SECTION
   ============================================ */
.about {
    padding: 80px 0 100px;
    position: relative;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about__image-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold-dark));
    border-radius: 26px;
    z-index: -1;
    opacity: 0.4;
}

.about__image-wrapper img {
    border-radius: 24px;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.about__text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1;
    margin-bottom: 24px;
}

.about__text h2 span {
    color: var(--gold);
}

.about__text p {
    color: var(--gray-300);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
}

.about__tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-right: 8px;
    margin-bottom: 8px;
}

.about__tags {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
}

/* ============================================
   AI + FAITH SECTION
   ============================================ */
.innovation {
    padding: 100px 0;
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.innovation::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05), transparent 70%);
    pointer-events: none;
}

.innovation__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.innovation__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.innovation__icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.innovation h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1;
    margin-bottom: 24px;
}

.innovation h2 span {
    color: var(--gold);
}

.innovation p {
    color: var(--gray-300);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 16px;
}

.innovation__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    text-align: left;
}

.feature-card {
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    transition: all 0.4s var(--ease-out-expo);
}

.feature-card:hover {
    background: rgba(201, 168, 76, 0.05);
    border-color: rgba(201, 168, 76, 0.15);
    transform: translateY(-4px);
}

.feature-card__icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   GAEL & SOL SECTION
   ============================================ */
.angels {
    padding: 100px 0;
    position: relative;
}

.angels__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.angels__text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1;
    margin-bottom: 24px;
}

.angels__text h2 span {
    color: var(--gold);
}

.angels__text p {
    color: var(--gray-300);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 300;
}

.angels__image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.angels__image-wrapper img {
    border-radius: 24px;
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.angels__image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

/* ============================================
   MANIFESTO / CTA SECTION
   ============================================ */
.manifesto {
    padding: 120px 0;
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.manifesto::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06), transparent 60%);
    pointer-events: none;
}

.manifesto__content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.manifesto__verse {
    font-style: italic;
    color: var(--gold-light);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.manifesto h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1;
    margin-bottom: 24px;
}

.manifesto p {
    color: var(--gray-300);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.manifesto .btn--primary {
    animation: glowPulse 3s ease-in-out infinite;
}

/* ============================================
   SOCIAL SECTION
   ============================================ */
.social {
    padding: 80px 0 60px;
}

.social__grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 28px;
    background: var(--gray-900);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s var(--ease-out-expo);
}

.social-card svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.social-card:hover {
    transform: translateY(-4px);
}

.social-card--ig:hover {
    border-color: rgba(225, 48, 108, 0.3);
    box-shadow: 0 8px 32px rgba(225, 48, 108, 0.15);
}

.social-card--ig svg {
    color: var(--instagram);
}

.social-card--yt:hover {
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.15);
}

.social-card--yt svg {
    color: var(--youtube);
}

.social-card--tt:hover {
    border-color: rgba(0, 242, 234, 0.3);
    box-shadow: 0 8px 32px rgba(0, 242, 234, 0.15);
}

.social-card--tt svg {
    color: var(--tiktok);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer__logo img {
    height: 36px;
    width: auto;
}

.footer__logo span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

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

.footer__email {
    color: var(--gold) !important;
    font-weight: 500;
}

.footer__email:hover {
    color: var(--gold-light) !important;
}

.footer__copy {
    margin-top: 24px;
    font-size: 0.78rem;
    color: var(--gray-700);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
    .nav__links {
        display: none;
    }

    .nav__mobile-toggle {
        display: block;
    }

    .about__grid,
    .angels__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .angels__grid {
        direction: ltr;
    }

    .angels__image-wrapper {
        order: -1;
    }

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

    .innovation__features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

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

    .hero__actions {
        flex-direction: column;
    }

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

    .social__grid {
        flex-direction: column;
        align-items: center;
    }

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out-expo);
}

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

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--white);
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}