/* =========================================================
THE FACE DOCTRESS
FEMININE LUXURY BEAUTY DESIGN
BLACK / CHAMPAGNE GOLD / BLUSH / CREAM
========================================================= */

/* =========================================================
COLOR PALETTE
========================================================= */

:root {
    --black: #050505;
    --black-soft: #111111;
    --black-card: #151515;

    --gold: #D4AF37;
    --gold-soft: #C9A86A;

    --blush: #E8B4B8;
    --blush-soft: #F2D2D4;

    --cream: #FFF9F5;
    --cream-soft: #F7E7E8;

    --white: #FFFFFF;

    --border-gold: rgba(212, 175, 55, 0.28);
    --border-blush: rgba(232, 180, 184, 0.25);

    --shadow-gold: rgba(212, 175, 55, 0.18);
    --shadow-blush: rgba(232, 180, 184, 0.16);
}


/* =========================================================
RESET
========================================================= */

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


/* =========================================================
HTML
========================================================= */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}


/* =========================================================
BODY
========================================================= */

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}


/* =========================================================
GENERAL
========================================================= */

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

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

main {
    overflow: hidden;
}

.section-space {
    padding: 110px 24px;
}

em {
    font-family: 'Italiana', serif;
    font-style: normal;
    color: var(--blush);
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
}


/* =========================================================
HEADER
========================================================= */

header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(5, 5, 5, 0.88);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.header-scrolled {
    background: rgba(5, 5, 5, 0.97);
    border-bottom-color: var(--border-gold);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}


/* =========================================================
NAVIGATION
========================================================= */

nav {
    max-width: 1300px;
    margin: auto;
    padding: 20px 30px;

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


/* =========================================================
LOGO
========================================================= */

.logo {
    text-decoration: none;
    font-family: 'Cinzel', serif;
    color: var(--cream);
    font-size: 21px;
    letter-spacing: 4px;
    font-weight: 500;

    display: flex;
    flex-direction: column;

    line-height: 1.15;
}

.logo span {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 7px;
}


/* =========================================================
NAVIGATION LINKS
========================================================= */

nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

nav ul a {
    text-decoration: none;
    color: var(--cream);
    font-size: 14px;
    position: relative;
    transition: color 0.3s ease;
}

nav ul a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: linear-gradient(
        90deg,
        var(--gold),
        var(--blush)
    );

    transition: width 0.3s ease;
}

nav ul a:hover {
    color: var(--blush-soft);
}

nav ul a:hover::after {
    width: 100%;
}


/* =========================================================
MOBILE MENU
========================================================= */

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: var(--gold);
    font-size: 28px;
    cursor: pointer;
}


/* =========================================================
HERO
========================================================= */

.hero {
    min-height: calc(100vh - 80px);

    display: flex;
    align-items: center;

    padding: 90px 24px 110px;

    position: relative;

    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(232, 180, 184, 0.10),
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(212, 175, 55, 0.08),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #050505,
            #0B0909 50%,
            #050505
        );
}

.hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(232, 180, 184, 0.08);

    border-radius: 50%;

    top: -180px;
    right: -140px;
}

.hero-content {
    width: 100%;
    max-width: 1250px;
    margin: auto;

    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    align-items: center;

    gap: 85px;
}


/* =========================================================
HERO IMAGE
========================================================= */

.hero-image {
    position: relative;
}

.hero-image-frame {
    position: relative;

    border-radius: 45% 45% 12px 12px;

    overflow: hidden;

    border: 1px solid var(--border-gold);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        0 0 45px var(--shadow-blush);
}

.hero-image-frame::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5, 5, 5, 0.25),
            transparent 45%
        );

    pointer-events: none;
}


/* =========================================================
HERO PHOTO FIX
========================================================= */

.hero-image img {
    width: 100%;

    height: auto;

    aspect-ratio: 4 / 5;

    object-fit: cover;

    object-position: center top;

    transition: transform 0.9s ease;
}

.hero-image:hover img {
    transform: scale(1.025);
}

.image-accent {
    display: block;

    margin-top: 18px;

    text-align: center;

    font-size: 10px;

    letter-spacing: 4px;

    color: var(--gold-soft);
}


/* =========================================================
HERO TEXT
========================================================= */

.overlay {
    max-width: 650px;
}

.hero h1 {
    font-family: 'Cinzel', serif;

    font-size: clamp(48px, 6vw, 82px);

    font-weight: 400;

    line-height: 1.04;

    color: var(--cream);

    margin-bottom: 28px;
}

.hero h1 em {
    display: block;
    font-size: 1.05em;
}

.hero p {
    color: rgba(255, 249, 245, 0.82);

    font-size: 17px;

    max-width: 570px;

    margin-bottom: 16px;
}

.hero-actions {
    margin-top: 35px;

    display: flex;

    align-items: center;

    gap: 28px;

    flex-wrap: wrap;
}


/* =========================================================
BUTTONS
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 32px;

    border-radius: 999px;

    border: 1px solid transparent;

    text-decoration: none;

    font-size: 13px;

    letter-spacing: 1.5px;

    font-weight: 600;

    color: #080808;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            var(--blush)
        );

    box-shadow:
        0 12px 30px rgba(212, 175, 55, 0.14);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        filter 0.35s ease;
}

.btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 38px rgba(232, 180, 184, 0.23);

    filter: brightness(1.07);
}

.text-link {
    text-decoration: none;

    color: var(--blush-soft);

    font-size: 14px;

    border-bottom:
        1px solid rgba(232, 180, 184, 0.4);

    padding-bottom: 5px;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.text-link:hover {
    color: var(--gold);

    border-color: var(--gold);
}


/* =========================================================
BEAUTY STRIP
========================================================= */

.beauty-strip {
    padding: 22px 20px;

    border-top:
        1px solid var(--border-blush);

    border-bottom:
        1px solid var(--border-blush);

    background:
        linear-gradient(
            90deg,
            rgba(232, 180, 184, 0.08),
            rgba(212, 175, 55, 0.05),
            rgba(232, 180, 184, 0.08)
        );

    overflow: hidden;
}

.beauty-strip-inner {
    max-width: 1200px;

    margin: auto;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 30px;

    flex-wrap: wrap;

    font-size: 11px;

    letter-spacing: 3px;

    color: var(--cream-soft);
}

.strip-symbol {
    color: var(--blush);

    font-size: 19px;
}


/* =========================================================
SECTION INTRO
========================================================= */

.section-intro {
    max-width: 760px;

    margin: 0 auto 65px;

    text-align: center;
}

.section-intro h2 {
    font-family: 'Cinzel', serif;

    font-size:
        clamp(38px, 5vw, 58px);

    font-weight: 400;

    color: var(--cream);

    line-height: 1.15;

    margin-bottom: 18px;
}

.section-intro p {
    color:
        rgba(255, 249, 245, 0.68);

    max-width: 610px;

    margin: auto;
}


/* =========================================================
SERVICES
========================================================= */

.services {
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(232, 180, 184, 0.07),
            transparent 30%
        ),
        var(--black);
}

.services-grid {
    max-width: 1120px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 28px;
}

.service-card {
    position: relative;

    padding: 42px 38px;

    border:
        1px solid var(--border-gold);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );

    border-radius: 18px;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    width: 140px;

    height: 140px;

    border-radius: 50%;

    background:
        rgba(232, 180, 184, 0.07);

    top: -70px;

    right: -70px;
}

.service-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(232, 180, 184, 0.55);

    box-shadow:
        0 25px 55px rgba(0, 0, 0, 0.35),
        0 0 30px var(--shadow-blush);
}

.service-number {
    display: block;

    font-family:
        'Italiana', serif;

    font-size: 34px;

    color: var(--blush);

    margin-bottom: 36px;
}

.service-label {
    font-size: 10px;

    letter-spacing: 2.4px;

    color: var(--gold-soft);

    display: block;

    margin-bottom: 12px;
}

.service-card h3 {
    font-family:
        'Cinzel', serif;

    font-size: 29px;

    font-weight: 400;

    color: var(--cream);

    margin-bottom: 20px;
}

.service-card p {
    color:
        rgba(255, 249, 245, 0.72);

    margin-bottom: 13px;
}

.service-price {
    margin-top: 32px;

    font-family:
        'Italiana', serif;

    font-size: 42px;

    color: var(--gold);
}

.services-book {
    margin-top: 50px;

    text-align: center;
}


/* =========================================================
GALLERY
========================================================= */

.gallery {
    background: #0A0909;
}

.gallery-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: 8px;

    min-height: 430px;

    background: #111;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
    transform:
        translateY(30px);
}

.gallery-item img {
    width: 100%;

    height: 100%;

    min-height: 430px;

    object-fit: cover;

    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.gallery-item::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5, 5, 5, 0.28),
            transparent 45%
        );

    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.055);

    filter: brightness(1.04);
}


/* =========================================================
BEAUTY STATEMENT
========================================================= */

.beauty-statement {
    padding: 125px 24px;

    text-align: center;

    position: relative;

    background:
        linear-gradient(
            135deg,
            rgba(232, 180, 184, 0.10),
            rgba(212, 175, 55, 0.04),
            rgba(232, 180, 184, 0.06)
        );
}

.beauty-statement-content {
    max-width: 900px;

    margin: auto;
}

.statement-mark {
    display: block;

    color: var(--blush);

    font-size: 32px;

    margin-bottom: 15px;
}

.beauty-statement p {
    text-transform: uppercase;

    font-size: 11px;

    letter-spacing: 4px;

    color: var(--gold-soft);

    margin-bottom: 16px;
}

.beauty-statement h2 {
    font-family:
        'Cinzel', serif;

    font-size:
        clamp(40px, 6vw, 70px);

    font-weight: 400;

    line-height: 1.15;
}


/* =========================================================
HOURS
========================================================= */

.hours {
    background: var(--black);
}

.hours-box {
    max-width: 760px;

    margin: auto;

    padding: 15px 38px;

    border:
        1px solid var(--border-blush);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.015)
        );
}

.hours-row {
    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 19px 0;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.065);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    color: var(--cream);

    font-weight: 500;
}

.hours-row span:last-child {
    color: var(--gold);
}


/* =========================================================
BOOKING
========================================================= */

.booking {
    background:
        radial-gradient(
            circle at center,
            rgba(232, 180, 184, 0.09),
            transparent 52%
        ),
        #080707;
}

.booking-box {
    max-width: 850px;

    margin: auto;

    padding: 70px 50px;

    text-align: center;

    border:
        1px solid rgba(212, 175, 55, 0.26);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.045),
            rgba(255, 255, 255, 0.018)
        );

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.30);
}

.booking-box h2 {
    font-family:
        'Cinzel', serif;

    font-size:
        clamp(38px, 5vw, 56px);

    font-weight: 400;

    margin-bottom: 25px;
}

.booking-box p {
    max-width: 620px;

    margin: 0 auto 16px;

    color:
        rgba(255, 249, 245, 0.72);
}

.booking-lead {
    font-size: 18px;
}

.booking-lead strong {
    color: var(--blush-soft);
}

.booking-box .btn {
    margin-top: 25px;
}


/* =========================================================
POLICIES
========================================================= */

.policies {
    background: var(--black);
}

.policy-grid {
    max-width: 1180px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.policy-card {
    position: relative;

    padding: 32px 28px;

    text-align: left;

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.025);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.policy-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(232, 180, 184, 0.38);

    background:
        rgba(232, 180, 184, 0.035);
}

.policy-number {
    display: block;

    color: var(--gold);

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 20px;
}

.policy-card h3 {
    font-family:
        'Cinzel', serif;

    font-size: 21px;

    font-weight: 400;

    color: var(--cream);

    margin-bottom: 14px;
}

.policy-card p {
    color:
        rgba(255, 249, 245, 0.66);

    font-size: 14px;

    margin-bottom: 10px;
}

.policy-card a {
    color: var(--blush);
}


/* =========================================================
CONTACT
========================================================= */

.contact {
    background:
        linear-gradient(
            180deg,
            #050505,
            #0B0909
        );
}

.contact-box {
    max-width: 950px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;
}

.contact-item {
    text-decoration: none;

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 28px;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.025);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.contact-item:hover {
    transform:
        translateY(-5px);

    border-color:
        var(--border-blush);

    background:
        rgba(232, 180, 184, 0.04);
}

.contact-icon {
    flex: 0 0 48px;

    width: 48px;

    height: 48px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            rgba(212, 175, 55, 0.14),
            rgba(232, 180, 184, 0.15)
        );

    color: var(--blush);

    font-size: 20px;
}

.contact-item small {
    display: block;

    color: var(--gold-soft);

    font-size: 9px;

    letter-spacing: 2.2px;

    margin-bottom: 5px;
}

.contact-item strong {
    color: var(--cream);

    font-size: 15px;

    font-weight: 500;
}


/* =========================================================
FOOTER
========================================================= */

footer {
    padding:
        100px 24px 30px;

    text-align: center;

    border-top:
        1px solid var(--border-gold);

    background:
        radial-gradient(
            circle at center top,
            rgba(232, 180, 184, 0.08),
            transparent 45%
        ),
        #050505;
}

.footer-glam {
    max-width: 760px;

    margin: auto;
}

.footer-eyebrow {
    display: block;

    color: var(--gold);

    font-size: 10px;

    letter-spacing: 4px;

    margin-bottom: 20px;
}

.footer-glam h2 {
    font-family:
        'Cinzel', serif;

    font-size:
        clamp(38px, 5vw, 58px);

    font-weight: 400;

    margin-bottom: 22px;
}

.footer-glam p {
    color:
        rgba(255, 249, 245, 0.7);

    margin: 0 auto 22px;

    max-width: 600px;
}

.footer-signature {
    display: block;

    font-family:
        'Italiana', serif;

    font-size: 28px;

    color: var(--blush);

    margin-bottom: 30px;
}

.footer-book {
    margin-top: 5px;
}

.footer-bottom {
    margin-top: 70px;

    padding-top: 25px;

    border-top:
        1px solid rgba(255, 255, 255, 0.05);

    font-size: 12px;

    color:
        rgba(255, 255, 255, 0.45);
}


/* =========================================================
SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(42px);

    transition:
        opacity 0.85s ease,
        transform 0.85s ease;
}

.reveal-left {
    transform:
        translateX(-45px);
}

.reveal-right {
    transform:
        translateX(45px);
}

.reveal.active {
    opacity: 1;

    transform:
        translate(0, 0);
}


/* =========================================================
RESPONSIVE - SMALL DESKTOP
========================================================= */

@media (max-width: 1000px) {

    nav ul {
        gap: 18px;
    }

    .hero-content {
        grid-template-columns:
            1fr 1fr;

        gap: 45px;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;

        object-fit: cover;
        object-position: center top;
    }

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


/* =========================================================
TABLET / MOBILE
========================================================= */

@media (max-width: 820px) {

    /* HEADER */

    nav {
        padding:
            16px 20px;

        position: relative;
    }


    /* LOGO */

    .logo {
        font-size: 18px;
    }

    .logo span {
        font-size: 12px;

        letter-spacing: 5px;
    }


    /* HAMBURGER */

    .menu-toggle {
        display: block;

        z-index: 1001;
    }


    /* MOBILE NAVIGATION */

    nav ul {
        display: none;

        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        padding:
            10px 0 18px;

        flex-direction: column;

        gap: 0;

        text-align: center;

        background:
            rgba(5, 5, 5, 0.98);

        border-bottom:
            1px solid var(--border-gold);

        box-shadow:
            0 20px 35px rgba(0, 0, 0, 0.35);
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        width: 100%;
    }

    nav ul a {
        display: block;

        padding:
            13px 20px;

        font-size: 15px;
    }

    nav ul a::after {
        display: none;
    }


    /* HERO */

    .hero {
        padding-top: 55px;
    }

    .hero-content {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .hero-image {
        max-width: 520px;

        width: 100%;

        margin: auto;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;

        object-fit: cover;
        object-position: center top;
    }

    .overlay {
        text-align: center;

        margin: auto;
    }

    .hero p {
        margin-left: auto;

        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }


    /* SERVICES */

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


    /* GALLERY */

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

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(5) {
        transform: none;
    }


    /* POLICIES */

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


    /* CONTACT */

    .contact-box {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
MOBILE
========================================================= */

@media (max-width: 600px) {

    .section-space {
        padding:
            85px 18px;
    }


    /* HERO */

    .hero {
        padding:
            45px 18px 80px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-image {
        width: 100%;

        max-width: 430px;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;

        object-fit: cover;
        object-position: center top;
    }

    .image-accent {
        font-size: 8px;

        letter-spacing: 2.5px;
    }

    .hero-actions {
        flex-direction: column;

        gap: 18px;
    }

    .btn {
        width: 100%;

        max-width: 320px;
    }


    /* BEAUTY STRIP */

    .beauty-strip-inner {
        gap: 13px;

        font-size: 9px;

        letter-spacing: 1.8px;
    }


    /* SECTION INTRO */

    .section-intro {
        margin-bottom: 45px;
    }


    /* SERVICES */

    .service-card {
        padding:
            32px 24px;
    }

    .service-card h3 {
        font-size: 25px;
    }


    /* GALLERY */

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

    .gallery-item,
    .gallery-item img {
        min-height: 480px;
    }


    /* HOURS */

    .hours-box {
        padding:
            10px 20px;
    }

    .hours-row {
        padding:
            17px 0;

        font-size: 14px;
    }


    /* BOOKING */

    .booking-box {
        padding:
            50px 24px;
    }


    /* POLICIES */

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


    /* CONTACT */

    .contact-item {
        padding:
            23px 20px;
    }


    /* FOOTER */

    footer {
        padding:
            80px 18px 28px;
    }

    .footer-signature {
        font-size: 24px;
    }
}


/* =========================================================
EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .logo {
        font-size: 16px;

        letter-spacing: 2px;
    }

    .logo span {
        font-size: 10px;

        letter-spacing: 4px;
    }

    .menu-toggle {
        font-size: 25px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;

        object-fit: cover;
        object-position: center top;
    }

    .hours-row {
        gap: 20px;
    }

    .contact-icon {
        flex-basis: 42px;

        width: 42px;

        height: 42px;
    }

    .contact-item strong {
        font-size: 13px;
    }
}


/* =========================================================
ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration:
            0.01ms !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right {
        opacity: 1;

        transform: none;
    }
}
