/* ================================================
   AUVORATA — Landing Cinematográfica
   ================================================ */

:root {
    --color-bg: #000000;
    --color-bg-soft: #0a0807;
    --color-gold: #d4af5c;
    --color-gold-bright: #ecc878;
    --color-gold-deep: #8a6d35;
    --color-gold-faint: rgba(212, 175, 92, 0.15);
    --color-text: #e8dfc8;
    --color-text-dim: #8a8170;
    --color-text-faint: #4a4438;

    --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-body: 'Cormorant Infant', 'Times New Roman', serif;

    --ease-cinema: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-slow: cubic-bezier(0.65, 0, 0.35, 1);

    --max-width: 1100px;
}

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

html {
    scroll-behavior: smooth;
    background: var(--color-bg);
}

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

/* Em mobile/touch volta o cursor padrão */
@media (hover: none), (max-width: 900px) {
    body { cursor: auto; }
    .cursor { display: none; }
}

::selection {
    background: var(--color-gold);
    color: var(--color-bg);
}

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

/* ================================================
   CURSOR CUSTOMIZADO
   ================================================ */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-cinema),
                height 0.3s var(--ease-cinema),
                background 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-inner {
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-gold);
    border-radius: 50%;
    transition: transform 0.4s var(--ease-cinema),
                background 0.3s ease,
                border-color 0.3s ease;
}

.cursor.is-hovering .cursor-inner {
    transform: scale(1.8);
    background: var(--color-gold);
    border-color: var(--color-gold);
}

/* ================================================
   ATO I — PRELÚDIO (overlay de abertura)
   ================================================ */
.prelude {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transition: opacity 1.4s var(--ease-cinema) 3.5s;
}

.prelude-spark {
    width: 3px;
    height: 3px;
    background: var(--color-gold-bright);
    border-radius: 50%;
    box-shadow:
        0 0 12px var(--color-gold),
        0 0 30px var(--color-gold),
        0 0 60px var(--color-gold-deep);
    opacity: 0;
    animation: spark-ignite 2.5s var(--ease-cinema) 0.4s forwards;
}

@keyframes spark-ignite {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
    70% {
        opacity: 1;
        transform: scale(1.4);
        box-shadow:
            0 0 30px var(--color-gold-bright),
            0 0 80px var(--color-gold),
            0 0 200px var(--color-gold-deep);
    }
    100% {
        opacity: 0;
        transform: scale(80);
        box-shadow:
            0 0 0 var(--color-gold-bright),
            0 0 0 var(--color-gold);
    }
}

/* Após o prelúdio: fade out do overlay */
body:not(.is-loading) .prelude {
    opacity: 0;
}

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4rem 1.5rem;
}

/* Aurora dourada animada */
.aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.aurora-layer {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform, opacity;
}

.aurora-1 {
    width: 80vw;
    height: 80vw;
    max-width: 900px;
    max-height: 900px;
    background: radial-gradient(circle, rgba(212, 175, 92, 0.18) 0%, transparent 60%);
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    animation: aurora-breath 12s ease-in-out infinite;
}

.aurora-2 {
    width: 60vw;
    height: 60vw;
    max-width: 700px;
    max-height: 700px;
    background: radial-gradient(circle, rgba(236, 200, 120, 0.1) 0%, transparent 60%);
    bottom: -30%;
    right: -10%;
    animation: aurora-breath 16s ease-in-out infinite 2s;
}

.aurora-3 {
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 92, 0.08) 0%, transparent 60%);
    top: 40%;
    left: -15%;
    animation: aurora-breath 14s ease-in-out infinite 1s;
}

@keyframes aurora-breath {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1) translateX(-50%);
    }
    50% {
        opacity: 1;
        transform: scale(1.15) translateX(-50%);
    }
}

.aurora-2, .aurora-3 {
    animation-name: aurora-breath-side;
}

@keyframes aurora-breath-side {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.15);
    }
}

/* Partículas de luz flutuantes */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particles span {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--color-gold-bright);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 6px var(--color-gold);
    animation: particle-float 15s linear infinite;
}

.particles span:nth-child(1)  { left: 10%; animation-delay: 0s;  animation-duration: 18s; }
.particles span:nth-child(2)  { left: 20%; animation-delay: 2s;  animation-duration: 22s; }
.particles span:nth-child(3)  { left: 30%; animation-delay: 5s;  animation-duration: 16s; }
.particles span:nth-child(4)  { left: 40%; animation-delay: 1s;  animation-duration: 25s; }
.particles span:nth-child(5)  { left: 50%; animation-delay: 7s;  animation-duration: 19s; }
.particles span:nth-child(6)  { left: 60%; animation-delay: 3s;  animation-duration: 21s; }
.particles span:nth-child(7)  { left: 70%; animation-delay: 8s;  animation-duration: 17s; }
.particles span:nth-child(8)  { left: 80%; animation-delay: 4s;  animation-duration: 24s; }
.particles span:nth-child(9)  { left: 90%; animation-delay: 6s;  animation-duration: 20s; }
.particles span:nth-child(10) { left: 15%; animation-delay: 9s;  animation-duration: 23s; }
.particles span:nth-child(11) { left: 35%; animation-delay: 11s; animation-duration: 18s; }
.particles span:nth-child(12) { left: 55%; animation-delay: 13s; animation-duration: 26s; }
.particles span:nth-child(13) { left: 75%; animation-delay: 10s; animation-duration: 22s; }
.particles span:nth-child(14) { left: 95%; animation-delay: 12s; animation-duration: 19s; }
.particles span:nth-child(15) { left: 25%; animation-delay: 14s; animation-duration: 24s; }

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translateY(110vh) translateX(0);
    }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% {
        opacity: 0;
        transform: translateY(-10vh) translateX(40px);
    }
}

/* Conteúdo central do hero */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
}

/* Símbolo do sol — animação de desenho */
.hero-symbol {
    color: var(--color-gold);
    margin: 0 auto 2.5rem;
    max-width: 380px;
    opacity: 0;
    animation: fade-in 1.2s var(--ease-cinema) 3.6s forwards;
}

.sun-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

/* Cada raio se desenha individualmente */
.ray {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    opacity: 0;
    filter: drop-shadow(0 0 4px rgba(212, 175, 92, 0.5));
    animation:
        ray-draw 0.8s var(--ease-cinema) forwards,
        ray-glow 4s ease-in-out infinite;
    animation-delay:
        calc(3.8s + var(--i) * 0.08s),
        calc(5.5s + var(--i) * 0.15s);
}

@keyframes ray-draw {
    0% {
        stroke-dashoffset: 100;
        opacity: 0;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes ray-glow {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(212, 175, 92, 0.4)); }
    50% { filter: drop-shadow(0 0 10px rgba(236, 200, 120, 0.7)); }
}

/* Arco do sol nasce depois dos raios */
.sun-arc {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    filter: drop-shadow(0 0 6px rgba(212, 175, 92, 0.5));
    animation: arc-draw 1.4s var(--ease-cinema) 4.6s forwards;
}

@keyframes arc-draw {
    to { stroke-dashoffset: 0; }
}

/* Horizonte aparece por último */
.horizon {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: horizon-draw 1.6s var(--ease-cinema) 5.2s forwards;
}

@keyframes horizon-draw {
    to { stroke-dashoffset: 0; }
}

/* Wordmark AUVORATA — reveal letra por letra */
.wordmark {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.8rem, 9vw, 5.5rem);
    letter-spacing: 0.18em;
    color: var(--color-gold-bright);
    margin-bottom: 2rem;
    line-height: 1;
    padding-left: 0.18em;
    text-shadow: 0 0 30px rgba(212, 175, 92, 0.3);
}

.letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
    animation: letter-rise 1.4s var(--ease-cinema) forwards;
    animation-delay: calc(5.8s + var(--i) * 0.1s);
}

@keyframes letter-rise {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Divisor do hero */
.hero-divider {
    width: 80px;
    height: 1px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(90deg, transparent, var(--color-gold-deep), transparent);
    overflow: hidden;
    opacity: 0;
    animation: fade-in 1.2s var(--ease-cinema) 7s forwards;
}

.hero-divider span {
    display: block;
    width: 30%;
    height: 100%;
    background: var(--color-gold-bright);
    animation: divider-slide 3s ease-in-out infinite 7.4s;
}

@keyframes divider-slide {
    0%, 100% { transform: translateX(-100%); opacity: 0; }
    50% { transform: translateX(330%); opacity: 1; }
}

.hero-caption {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    letter-spacing: 0.3em;
    color: var(--color-text-dim);
    text-transform: lowercase;
    opacity: 0;
    animation: fade-rise 1.4s var(--ease-cinema) 7.2s forwards;
}

@keyframes fade-rise {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Indicador de scroll */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: fade-in 1.4s var(--ease-cinema) 8.2s forwards;
}

.scroll-label {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--color-text-faint);
    text-transform: lowercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, var(--color-gold-deep));
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(180deg, transparent, var(--color-gold-bright));
    animation: scroll-drip 2.5s ease-in-out infinite;
}

@keyframes scroll-drip {
    0% { top: -20px; }
    100% { top: 70px; }
}

/* ================================================
   SEÇÕES — base comum
   ================================================ */
.section-eyebrow {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    color: var(--color-gold-deep);
    text-transform: lowercase;
    margin-bottom: 3rem;
    display: block;
}

/* Sistema de reveal ao scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s var(--ease-cinema),
                transform 1.2s var(--ease-cinema);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) rotateX(-25deg);
    transform-origin: bottom;
    transition: opacity 1s var(--ease-cinema),
                transform 1.2s var(--ease-cinema);
}

.reveal-word.is-visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.reveal-emphasis.is-visible {
    color: var(--color-gold-bright);
    font-style: italic;
}

.reveal-italic {
    font-style: italic;
    color: var(--color-gold);
}

/* ================================================
   MANIFESTO
   ================================================ */
.manifesto {
    padding: 12rem 1.5rem 10rem;
    position: relative;
}

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

.manifesto-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-text {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    line-height: 1.3;
    color: var(--color-text);
    margin-bottom: 5rem;
    letter-spacing: -0.01em;
}

.manifesto-text .reveal-word {
    margin: 0 0.15em;
}

.manifesto-body {
    max-width: 540px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.9;
    color: var(--color-text-dim);
}

.manifesto-body p {
    margin-bottom: 1.5rem;
}

.manifesto-body p:last-child {
    margin-top: 2rem;
    font-size: 1.1em;
}

/* ================================================
   GALERIA ATMOSFÉRICA
   ================================================ */
.gallery {
    padding: 8rem 1.5rem;
    text-align: center;
}

.gallery-eyebrow {
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    cursor: none;
}

@media (hover: none) {
    .gallery-item { cursor: pointer; }
}

.gallery-visual {
    position: absolute;
    inset: 0;
    transform: scale(1.05);
    transition: transform 1.5s var(--ease-cinema);
}

.gallery-item:hover .gallery-visual {
    transform: scale(1.15);
}

/* Ken Burns sutil — zoom contínuo */
.atmosphere {
    animation: ken-burns 20s ease-in-out infinite alternate;
}

@keyframes ken-burns {
    0% { transform: scale(1.05) translate(0, 0); }
    100% { transform: scale(1.18) translate(-2%, -3%); }
}

/* Atmosferas — gradientes ricos (placeholders premium) */
.atmosphere-dawn {
    background:
        radial-gradient(ellipse at 50% 90%, rgba(236, 200, 120, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(212, 175, 92, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(138, 109, 53, 0.5) 0%, transparent 70%),
        linear-gradient(180deg, #1a0f05 0%, #3a2410 40%, #6b4318 70%, #d4af5c 100%);
}

.atmosphere-gold {
    background:
        radial-gradient(circle at 50% 40%, rgba(236, 200, 120, 0.6) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(212, 175, 92, 0.4) 0%, transparent 60%),
        linear-gradient(135deg, #0a0807 0%, #2a1a08 30%, #6b4318 60%, #d4af5c 90%, #ecc878 100%);
}

.atmosphere-horizon {
    background:
        linear-gradient(180deg,
            #050505 0%,
            #1a1208 25%,
            #4a3418 45%,
            #8a6d35 55%,
            #d4af5c 65%,
            #6b4318 80%,
            #1a1208 100%);
}

.atmosphere-ember {
    background:
        radial-gradient(circle at 30% 70%, rgba(236, 150, 80, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(212, 175, 92, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, #050505 0%, #1a0a05 50%, #3a1a08 75%, #6b3a18 100%);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
    display: flex;
    align-items: baseline;
    gap: 1rem;
    text-align: left;
    z-index: 2;
}

.caption-number {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--color-gold);
    letter-spacing: 0.2em;
}

.caption-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    color: var(--color-text);
    letter-spacing: 0.05em;
}

/* Reveal das peças da galeria */
.gallery-item {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.4s var(--ease-cinema),
                transform 1.4s var(--ease-cinema);
}

.gallery-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-1.is-visible { transition-delay: 0s; }
.gallery-item-2.is-visible { transition-delay: 0.15s; }
.gallery-item-3.is-visible { transition-delay: 0.3s; }
.gallery-item-4.is-visible { transition-delay: 0.45s; }

/* ================================================
   CONTATO
   ================================================ */
.contact {
    padding: 12rem 1.5rem 8rem;
    position: relative;
}

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

.contact-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 4rem;
}

.contact-title em {
    color: var(--color-gold-bright);
    font-style: italic;
    font-weight: 400;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-link {
    display: grid;
    grid-template-columns: 140px 1fr;
    align-items: baseline;
    gap: 2rem;
    padding: 1.75rem 1rem;
    text-align: left;
    text-decoration: none;
    color: var(--color-text);
    border-top: 1px solid rgba(212, 175, 92, 0.12);
    transition: all 0.5s var(--ease-cinema);
    position: relative;
    overflow: hidden;
}

.contact-link:last-child {
    border-bottom: 1px solid rgba(212, 175, 92, 0.12);
}

.contact-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 92, 0.06), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s var(--ease-cinema);
}

.contact-link:hover::before {
    transform: translateX(100%);
}

.contact-link:hover {
    padding-left: 1.5rem;
}

.contact-link-label {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.85rem;
    letter-spacing: 0.25em;
    color: var(--color-gold-deep);
    text-transform: lowercase;
    transition: color 0.4s ease;
}

.contact-link:hover .contact-link-label {
    color: var(--color-gold-bright);
}

.contact-link-value {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    color: var(--color-text);
    letter-spacing: 0.02em;
    transition: color 0.4s ease;
    position: relative;
    z-index: 1;
}

.contact-link:hover .contact-link-value {
    color: var(--color-gold-bright);
}

/* ================================================
   RODAPÉ
   ================================================ */
.footer {
    padding: 4rem 1.5rem 3rem;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 92, 0.08);
    margin-top: 4rem;
}

.footer-mark {
    color: var(--color-gold-deep);
    width: 60px;
    margin: 0 auto 1.5rem;
    opacity: 0.6;
}

.footer-svg {
    width: 100%;
    height: auto;
}

.footer-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--color-text-faint);
    text-transform: lowercase;
}

/* ================================================
   ANIMAÇÕES UTILITÁRIAS
   ================================================ */
@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ================================================
   ACESSIBILIDADE — preferências de movimento
   ================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.3s !important;
    }
    .prelude { display: none; }
    body.is-loading { visibility: visible; }
    .reveal, .reveal-word, .gallery-item, .letter,
    .hero-symbol, .hero-divider, .hero-caption, .scroll-hint {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
    .ray { stroke-dashoffset: 0 !important; opacity: 1 !important; }
    .sun-arc, .horizon { stroke-dashoffset: 0 !important; }
}

/* ================================================
   RESPONSIVO
   ================================================ */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 1.25rem;
    }

    .hero-symbol {
        max-width: 280px;
        margin-bottom: 2rem;
    }

    .manifesto {
        padding: 8rem 1.25rem 6rem;
    }

    .manifesto-text {
        margin-bottom: 3rem;
    }

    .gallery {
        padding: 6rem 1.25rem;
    }

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

    .gallery-item {
        aspect-ratio: 5 / 4;
    }

    .contact {
        padding: 8rem 1.25rem 5rem;
    }

    .contact-link {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.5rem 0.5rem;
    }

    .contact-link:hover {
        padding-left: 0.5rem;
    }

    .footer {
        padding: 3rem 1.25rem 2rem;
    }
}

@media (max-width: 480px) {
    .wordmark {
        letter-spacing: 0.12em;
    }

    .scroll-hint {
        bottom: 1.5rem;
    }
}
