/* =========================================================
   CÓDIGO TRAQUINA — COMPLETE STYLESHEET
   Desktop, Tablet and Smartphone
   ========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap");


/* =========================================================
   VARIABLES
   ========================================================= */

:root {
    --gold: #c7963f;
    --gold-light: #e0ba70;
    --brown: #25180f;
    --brown-soft: #493222;
    --anthracite: #181817;
    --ivory: #f5f1e9;
    --warm-white: #fbf9f4;
    --grey: #6d6a64;
    --line: rgba(37, 24, 15, 0.16);
    --white-line: rgba(255, 255, 255, 0.22);

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Inter", Arial, sans-serif;

    --container: 1280px;
    --header-height: 92px;
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: var(--warm-white);
    color: var(--anthracite);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3 {
    font-family: var(--serif);
    font-weight: 500;
    line-height: 1.08;
}

h1 {
    max-width: 1050px;
    font-size: clamp(3rem, 6vw, 6.5rem);
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    letter-spacing: -0.025em;
}

h3 {
    font-size: clamp(1.75rem, 2.3vw, 2.5rem);
}

p {
    color: var(--grey);
}

.eyebrow {
    margin-bottom: 28px;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    line-height: 1.4;
    text-transform: uppercase;
}

.large-copy {
    font-size: clamp(1.15rem, 1.6vw, 1.4rem);
    line-height: 1.8;
}


/* =========================================================
   GLOBAL LAYOUT
   ========================================================= */

.section {
    padding: 150px 7%;
}

.section-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
}

.section-container.narrow {
    max-width: 1050px;
}

.centered {
    text-align: center;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.75fr);
    gap: 10%;
    align-items: start;
}


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

.site-header {
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    min-height: var(--header-height);
    padding: 0 4%;
    color: white;
    border-bottom: 1px solid var(--white-line);
    background:
        linear-gradient(
            180deg,
            rgba(15, 9, 5, 0.72) 0%,
            rgba(15, 9, 5, 0.25) 70%,
            transparent 100%
        );
    transition:
        background 350ms ease,
        min-height 350ms ease,
        box-shadow 350ms ease;
}

.site-header.scrolled {
    position: fixed;
    min-height: 72px;
    background: rgba(24, 16, 11, 0.94);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.brand {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    white-space: nowrap;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 42px);
    padding: 0 35px;
}

.desktop-nav a {
    position: relative;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 350ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
}

.language-selector button {
    opacity: 0.58;
}

.language-selector .active-language,
.language-selector button:hover {
    color: var(--gold-light);
    opacity: 1;
}

.menu-button {
    display: none;
    width: 34px;
    height: 34px;
}

.menu-button span {
    display: block;
    width: 27px;
    height: 1px;
    margin: 7px auto;
    background: white;
    transition: transform 300ms ease;
}


/* =========================================================
   HERO — DESKTOP
   ========================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: #160c07;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-color: #160c07;
    background-image:
        linear-gradient(
            180deg,
            rgba(18, 10, 5, 0.08) 0%,
            transparent 25%,
            transparent 70%,
            rgba(18, 10, 5, 0.22) 100%
        ),
        url("../images/hero-codigo-traquina.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.015);
    animation: heroReveal 1.8s ease forwards;
}

@keyframes heroReveal {
    from {
        opacity: 0;
        transform: scale(1.04);
    }

    to {
        opacity: 1;
        transform: scale(1.015);
    }
}

.discover-link {
    position: absolute;
    z-index: 2;
    bottom: 26px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.21em;
    text-align: center;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.discover-arrow {
    margin-top: 7px;
    color: var(--gold-light);
    font-size: 1.2rem;
    animation: arrowMovement 1.8s ease-in-out infinite;
}

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

    50% {
        transform: translateY(7px);
    }
}


/* =========================================================
   FOUNDING STATEMENT
   ========================================================= */

.founding-statement {
    background: var(--warm-white);
}

.founding-statement h1 {
    margin-bottom: 75px;
    color: var(--brown);
}

.statement-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
    max-width: 920px;
    margin-left: auto;
}

.statement-copy p {
    font-size: 1.08rem;
}

.signature-line {
    margin-top: 95px;
    padding-top: 30px;
    color: var(--brown);
    border-top: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-style: italic;
    text-align: right;
}


/* =========================================================
   CORE EXPERTISE
   ========================================================= */

.expertise-section {
    color: white;
    background: var(--brown);
}

.expertise-section h2 {
    max-width: 750px;
    margin-bottom: 85px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--white-line);
}

.expertise-card {
    position: relative;
    min-height: 500px;
    padding: 48px 38px;
    border-right: 1px solid var(--white-line);
    transition:
        background 350ms ease,
        transform 350ms ease;
}

.expertise-card:first-child {
    border-left: 1px solid var(--white-line);
}

.expertise-card:hover {
    background: rgba(255, 255, 255, 0.055);
    transform: translateY(-8px);
}

.card-number {
    display: block;
    margin-bottom: 100px;
    color: var(--gold-light);
    font-size: 0.75rem;
    letter-spacing: 0.18em;
}

.expertise-card h3 {
    min-height: 100px;
    margin-bottom: 30px;
}

.expertise-card p {
    color: rgba(255, 255, 255, 0.68);
}

.expertise-card .keywords {
    margin-top: 35px;
    color: var(--gold-light);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    line-height: 1.8;
    text-transform: uppercase;
}


/* =========================================================
   INSTITUTIONAL SIGNATURE
   ========================================================= */

.impact-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 88vh;
    padding: 150px 7%;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(
            circle at 78% 35%,
            rgba(199, 150, 63, 0.28),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #18130f 0%,
            #312014 55%,
            #120d09 100%
        );
}

.impact-section::before {
    position: absolute;
    top: -40%;
    right: -12%;
    width: 750px;
    height: 750px;
    content: "";
    border: 1px solid rgba(224, 186, 112, 0.22);
    border-radius: 50%;
}

.impact-section::after {
    position: absolute;
    right: 8%;
    bottom: -48%;
    width: 600px;
    height: 600px;
    content: "";
    border: 1px solid rgba(224, 186, 112, 0.13);
    border-radius: 50%;
}

.impact-content {
    position: relative;
    z-index: 2;
}

.impact-content h2 {
    max-width: 1050px;
    margin-bottom: 55px;
    font-size: clamp(3.5rem, 6.6vw, 7.5rem);
}

.impact-content > p:last-child {
    max-width: 700px;
    margin-left: auto;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.25rem;
}


/* =========================================================
   STRATEGIC SECTORS
   ========================================================= */

.sectors-section {
    background: var(--ivory);
}

.section-introduction {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 10%;
    align-items: end;
    margin-bottom: 90px;
}

.section-introduction > p {
    padding-bottom: 10px;
    font-size: 1.08rem;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.sector-card {
    min-height: 330px;
    padding: 38px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition:
        color 350ms ease,
        background 350ms ease;
}

.sector-card:hover {
    color: white;
    background: var(--brown);
}

.sector-card > span {
    display: block;
    margin-bottom: 70px;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
}

.sector-card h3 {
    margin-bottom: 25px;
}

.sector-card p {
    font-size: 0.92rem;
    transition: color 350ms ease;
}

.sector-card:hover p {
    color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   METHODOLOGY
   ========================================================= */

.methodology-section {
    color: white;
    background: var(--anthracite);
}

.methodology-section h2 {
    max-width: 850px;
    margin-bottom: 90px;
}

.methodology-list {
    border-top: 1px solid var(--white-line);
}

.methodology-list article {
    display: grid;
    grid-template-columns: 90px 0.45fr 1fr;
    gap: 30px;
    align-items: center;
    padding: 38px 15px;
    border-bottom: 1px solid var(--white-line);
    transition: padding 300ms ease;
}

.methodology-list article:hover {
    padding-right: 30px;
    padding-left: 30px;
}

.methodology-list span {
    color: var(--gold-light);
    font-size: 0.72rem;
    letter-spacing: 0.17em;
}

.methodology-list h3 {
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.methodology-list p {
    color: rgba(255, 255, 255, 0.62);
}

.methodology-signature {
    margin-top: 75px;
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-style: italic;
    text-align: center;
}


/* =========================================================
   CAPITAL & STRATEGY
   ========================================================= */

.capital-section {
    background: var(--warm-white);
}

.capital-section h2 {
    color: var(--brown);
}

.capital-section .large-copy p {
    margin-bottom: 28px;
}

.capital-section .large-copy p:first-child {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1.25;
}


/* =========================================================
   GLOBAL REACH
   ========================================================= */

.global-section {
    position: relative;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(
            circle at center,
            rgba(199, 150, 63, 0.2),
            transparent 38%
        ),
        #20150e;
}

.global-section::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(82vw, 1000px);
    aspect-ratio: 2 / 1;
    content: "";
    border: 1px solid rgba(224, 186, 112, 0.16);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.global-section .section-container {
    position: relative;
    z-index: 2;
}

.global-section h2 {
    margin-bottom: 45px;
}

.global-section .large-copy {
    max-width: 850px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
}

.regions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 44px;
    margin-top: 80px;
}

.regions span {
    color: var(--gold-light);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}


/* =========================================================
   VALUES
   ========================================================= */

.values-section {
    background: var(--ivory);
}

.values-section h2 {
    max-width: 800px;
    margin-bottom: 85px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.values-grid article {
    min-height: 285px;
    padding: 40px 30px;
    border-right: 1px solid var(--line);
}

.values-grid article:first-child {
    border-left: 1px solid var(--line);
}

.values-grid h3 {
    margin-bottom: 35px;
    color: var(--brown);
}

.values-grid p {
    font-size: 0.92rem;
}

.values-signature {
    margin-top: 75px;
    color: var(--brown);
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 4rem);
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.values-signature span {
    color: var(--gold);
}


/* =========================================================
   CONTACT AND LEGAL NOTICE
   ========================================================= */

.contact-section {
    display: flex;
    align-items: center;
    min-height: 88vh;
    padding: 160px 7%;
    color: white;
    background:
        linear-gradient(
            135deg,
            rgba(199, 150, 63, 0.14),
            transparent 45%
        ),
        var(--anthracite);
}

.contact-section .section-container {
    width: 100%;
}

.contact-section h1,
.contact-section h2 {
    max-width: none;
    margin-bottom: 45px;
    color: white;
}

.contact-section p:not(.eyebrow) {
    max-width: 770px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.67);
    font-size: 1.12rem;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    margin-top: 55px;
    padding: 0 38px;
    color: white;
    border: 1px solid var(--gold);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-align: center;
    text-transform: uppercase;
    transition:
        color 300ms ease,
        background 300ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
    color: var(--brown);
    background: var(--gold-light);
}


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

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
    padding: 65px 5%;
    color: white;
    border-top: 1px solid var(--white-line);
    background: #11100f;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-brand strong {
    font-family: var(--serif);
    font-size: 1.45rem;
    letter-spacing: 0.12em;
}

.footer-brand span,
.site-footer p,
.footer-links a {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--gold-light);
}

.site-footer > p {
    grid-column: 1 / -1;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 800ms ease,
        transform 800ms ease;
}

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


/* =========================================================
   TABLET AND MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 1100px) {

    .site-header {
        grid-template-columns: 1fr auto;
    }

    .desktop-nav,
    .language-selector {
        display: none;
    }

    .menu-button {
        position: relative;
        z-index: 101;
        display: block;
    }

    .desktop-nav.mobile-open {
        position: fixed;
        z-index: 99;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 100px 30px 50px;
        background: rgba(24, 16, 11, 0.98);
    }

    .desktop-nav.mobile-open a {
        color: white;
        font-family: var(--serif);
        font-size: clamp(1.6rem, 5vw, 2.6rem);
        font-weight: 400;
        letter-spacing: 0.04em;
        text-align: center;
        text-transform: none;
        white-space: normal;
    }

    .menu-button.active span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .menu-button.active span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }

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

    .expertise-card {
        min-height: auto;
        border-bottom: 1px solid var(--white-line);
        border-left: 1px solid var(--white-line);
    }

    .card-number {
        margin-bottom: 45px;
    }

    .expertise-card h3 {
        min-height: auto;
    }

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

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

    .values-grid article {
        border-bottom: 1px solid var(--line);
    }
}


/* =========================================================
   SMARTPHONES
   ========================================================= */

@media (max-width: 700px) {

    :root {
        --header-height: 72px;
    }

    .section {
        padding: 95px 24px;
    }

    .section-container,
    .section-container.narrow {
        width: 100%;
        max-width: 100%;
    }

    .site-header {
        min-height: var(--header-height);
        padding: 0 22px;
        background: rgba(20, 12, 8, 0.82);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .site-header.scrolled {
        min-height: var(--header-height);
        background: rgba(20, 12, 8, 0.96);
    }

    .brand {
        max-width: calc(100vw - 100px);
        overflow: hidden;
        font-size: 1rem;
        letter-spacing: 0.09em;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .menu-button {
        width: 42px;
        height: 42px;
    }

    .menu-button span {
        width: 25px;
    }

    .desktop-nav.mobile-open {
        gap: 24px;
        padding: 110px 24px 50px;
    }

    .desktop-nav.mobile-open a {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
        background: #160c07;
    }

    .hero-background {
        inset: 0;
        background-color: #160c07;
        background-image:
            linear-gradient(
                180deg,
                rgba(18, 10, 5, 0.1) 0%,
                transparent 25%,
                transparent 72%,
                rgba(18, 10, 5, 0.2) 100%
            ),
            url("../images/hero-codigo-traquina-mobile.png");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        transform: none;
    }

    .discover-link {
        bottom: 20px;
        width: calc(100% - 48px);
        color: white;
        font-size: 0.61rem;
        letter-spacing: 0.18em;
        text-align: center;
    }

    .discover-arrow {
        margin-top: 8px;
    }

    .founding-statement h1 {
        margin-bottom: 50px;
        font-size: clamp(2.7rem, 12vw, 4.2rem);
    }

    .statement-copy {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .statement-copy p {
        font-size: 1rem;
    }

    .signature-line {
        margin-top: 60px;
        font-size: 2rem;
        text-align: left;
    }

    .expertise-section h2,
    .values-section h2,
    .methodology-section h2 {
        margin-bottom: 55px;
    }

    .expertise-card {
        padding: 36px 28px;
    }

    .impact-section {
        min-height: 78vh;
        padding: 100px 24px;
    }

    .impact-section::before {
        top: -10%;
        right: -75%;
        width: 520px;
        height: 520px;
    }

    .impact-section::after {
        right: -80%;
        bottom: -20%;
        width: 470px;
        height: 470px;
    }

    .impact-content h2 {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .impact-content > p:last-child {
        margin-left: 0;
        font-size: 1.05rem;
    }

    .section-introduction,
    .split-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .section-introduction {
        margin-bottom: 55px;
    }

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

    .sector-card {
        min-height: auto;
        padding: 34px 28px;
    }

    .sector-card > span {
        margin-bottom: 40px;
    }

    .methodology-list article {
        grid-template-columns: 48px 1fr;
        gap: 18px;
    }

    .methodology-list article p {
        grid-column: 2;
    }

    .methodology-list article:hover {
        padding-right: 15px;
        padding-left: 15px;
    }

    .methodology-signature {
        font-size: 1.85rem;
    }

    .capital-section .large-copy p:first-child {
        font-size: 1.75rem;
    }

    .global-section::before {
        width: 145vw;
    }

    .regions {
        gap: 16px 25px;
        margin-top: 55px;
    }

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

    .values-grid article {
        min-height: auto;
        border-left: 1px solid var(--line);
    }

    .values-signature {
        font-size: 2rem;
        line-height: 1.45;
    }

    .contact-section {
        min-height: 100svh;
        padding: 130px 24px 100px;
    }

    .contact-section h1,
    .contact-section h2 {
        font-size: clamp(3rem, 13vw, 4.5rem);
    }

    .contact-section p:not(.eyebrow) {
        font-size: 1rem;
        line-height: 1.75;
    }

    .primary-button {
        width: 100%;
        min-height: 58px;
        padding: 15px 20px;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 24px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 18px 25px;
    }

    .site-footer > p {
        grid-column: 1;
    }
}


/* =========================================================
   VERY SMALL SMARTPHONES
   ========================================================= */

@media (max-width: 380px) {

    .site-header {
        padding-right: 16px;
        padding-left: 16px;
    }

    .brand {
        max-width: calc(100vw - 82px);
        font-size: 0.88rem;
        letter-spacing: 0.07em;
    }

    .section {
        padding-right: 20px;
        padding-left: 20px;
    }

    .contact-section {
        padding-right: 20px;
        padding-left: 20px;
    }

    .discover-link {
        font-size: 0.56rem;
        letter-spacing: 0.14em;
    }
}


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

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 5px;
}

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}