:root {
    --deep-navy: #1a233a;
    --prestige-gold: #c5a059;
    --surface: #fbf8fb;
    --outline: #c6c6ce;
}

body {
    background-color: var(--surface);
    color: #1b1b1d;
}

html.js:not(.page-ready):not(.loader-timeout) body {
    overflow: hidden;
}

[hidden] {
    display: none !important;
}

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

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.ambient-shadow {
    box-shadow: 0 32px 64px -12px rgba(26, 35, 58, 0.06);
}

section[id] {
    scroll-margin-top: 8rem;
}

.site-main {
    padding-top: 7.25rem;
}

[data-floating-whatsapp-container] {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    transition:
        opacity 180ms ease,
        transform 180ms ease,
        visibility 0s linear 0s;
}

/* Editorial hero */
.hero-editorial {
    --hero-cream: #f8f4ee;
    --hero-navy: #101e35;
    position: relative;
    isolation: isolate;
    min-height: max(42rem, calc(100svh - 7.25rem));
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 82%, rgba(197, 160, 89, 0.09), transparent 29%),
        var(--hero-cream);
}

.hero-editorial__navy {
    position: absolute;
    inset: 0 0 0 43%;
    z-index: -2;
    background:
        radial-gradient(circle at 68% 43%, rgba(62, 88, 125, 0.46), transparent 39%),
        linear-gradient(132deg, #09172b 0%, var(--hero-navy) 54%, #1e3655 100%);
    clip-path: polygon(21% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-editorial__texture {
    position: absolute;
    bottom: 7%;
    left: 42%;
    z-index: -1;
    width: 13rem;
    height: 11rem;
    background-image: radial-gradient(circle, rgba(197, 160, 89, 0.34) 1px, transparent 1.5px);
    background-size: 11px 11px;
    opacity: 0.46;
    mask-image: linear-gradient(118deg, transparent 4%, #000 48%, transparent 94%);
}

.hero-editorial__curve {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-editorial__curve path {
    fill: none;
    stroke: rgba(210, 168, 88, 0.88);
    stroke-width: 1.45;
    vector-effect: non-scaling-stroke;
}

.hero-editorial__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 52%) minmax(0, 48%);
    width: 100%;
    max-width: 90rem;
    min-height: inherit;
    margin-inline: auto;
}

.hero-editorial__content {
    z-index: 4;
    align-self: center;
    padding: clamp(3rem, 5vw, 5.25rem) clamp(2.25rem, 4.5vw, 4.5rem);
}

.hero-editorial__eyebrow {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin: 0 0 1.6rem;
    color: #a9782f;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    line-height: 1.4;
}

.hero-editorial__eyebrow span {
    width: 3.4rem;
    height: 1px;
    background: rgba(197, 160, 89, 0.9);
}

.hero-editorial__title {
    max-width: 41rem;
    margin: 0;
    color: var(--deep-navy);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(3rem, 4.05vw, 3.75rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.13;
    text-wrap: balance;
}

.hero-editorial__divider {
    display: block;
    width: 2.5rem;
    height: 1px;
    margin-block: 1.65rem 1.3rem;
    background: var(--prestige-gold);
}

.hero-editorial__introduction {
    max-width: 35rem;
    color: #4a4d5e;
    font-size: clamp(1rem, 1.25vw, 1.1rem);
    line-height: 1.62;
}

.hero-editorial__introduction p {
    margin: 0;
}

.hero-editorial__introduction p + p {
    margin-top: 0.15rem;
    color: var(--deep-navy);
}

.hero-editorial__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.65rem;
}

.hero-editorial__button {
    display: inline-flex;
    min-height: 3.5rem;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.9rem 1.45rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    border-radius: 0.28rem;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.hero-editorial__button .material-symbols-outlined {
    color: var(--prestige-gold);
    font-size: 1.25rem;
}

.hero-editorial__button--primary {
    color: #fff;
    background: var(--deep-navy);
    box-shadow: 0 12px 26px -18px rgba(16, 30, 53, 0.9);
}

.hero-editorial__button--secondary {
    color: var(--deep-navy);
    background: rgba(255, 255, 255, 0.55);
    border-color: var(--prestige-gold);
}

.hero-editorial__button:hover {
    transform: translateY(-2px);
}

.hero-editorial__button--primary:hover {
    background: #263955;
    box-shadow: 0 16px 30px -18px rgba(16, 30, 53, 0.95);
}

.hero-editorial__button--secondary:hover {
    background: #fff;
    border-color: #9d7834;
}

.hero-editorial__button:focus-visible {
    outline: 3px solid rgba(197, 160, 89, 0.55);
    outline-offset: 3px;
}

.hero-editorial__credentials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 35rem);
    margin: 1.75rem 0 0;
    padding: 0.82rem 0.9rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.96);
    border-radius: 0.75rem;
    box-shadow: 0 18px 38px -26px rgba(26, 35, 58, 0.58);
    backdrop-filter: blur(8px);
}

.hero-editorial__credential {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 0.62rem;
    padding-inline: 0.7rem;
}

.hero-editorial__credential + .hero-editorial__credential {
    border-left: 1px solid rgba(198, 198, 206, 0.66);
}

.hero-editorial__credential-icon {
    flex: 0 0 auto;
    color: var(--prestige-gold);
    font-size: 2rem;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 32;
}

.hero-editorial__credential-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.hero-editorial__credential-copy strong {
    color: var(--deep-navy);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    line-height: 1.15;
    white-space: nowrap;
}

.hero-editorial__credential-copy small {
    margin-top: 0.15rem;
    color: #686b78;
    font-size: 0.62rem;
    line-height: 1.25;
}

.hero-editorial__visual {
    position: relative;
    z-index: 3;
    min-width: 0;
}

.hero-editorial__visual::before {
    content: none;
}

.hero-editorial__portrait-stage {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: clamp(23rem, 30vw, 27rem);
    aspect-ratio: 0.8;
}

.hero-editorial__portrait-stage::before,
.hero-editorial__portrait-stage::after {
    position: absolute;
    content: '';
    border-radius: 1.65rem;
}

.hero-editorial__portrait-stage::before {
    inset: 1.5rem -0.9rem 0.8rem 1.1rem;
    z-index: -2;
    background: linear-gradient(145deg, #d4b168 0%, #9d7834 100%);
    box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.65);
    transform: rotate(3deg);
}

.hero-editorial__portrait-stage::after {
    inset: 0.15rem 0 0;
    z-index: -1;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.72), transparent 35%),
        linear-gradient(150deg, #f8f1e7 0%, #e8dac7 100%);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-editorial__portrait {
    position: absolute;
    bottom: -0.15rem;
    left: 50%;
    z-index: 2;
    display: block;
    width: 118%;
    max-width: none;
    height: auto;
    pointer-events: none;
    filter: drop-shadow(0 18px 22px rgba(9, 23, 43, 0.24));
    transform: translateX(-50%);
    user-select: none;
}

.hero-editorial__accreditation {
    position: absolute;
    right: -0.9rem;
    bottom: 1.4rem;
    z-index: 4;
    display: flex;
    width: min(15rem, 68%);
    flex-direction: column;
    margin: 0;
    padding: 1rem 1.15rem;
    color: var(--deep-navy);
    background: linear-gradient(135deg, #d4b168 0%, var(--prestige-gold) 72%, #b4893d 100%);
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 0.9rem;
    box-shadow: 0 18px 34px -20px rgba(4, 13, 35, 0.78);
}

.hero-editorial__accreditation span {
    margin-bottom: 0.38rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.3;
}

.hero-editorial__accreditation strong {
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: 1.2rem;
    line-height: 1.16;
}

.hero-editorial__quote {
    position: absolute;
    top: 15%;
    right: clamp(1.25rem, 2vw, 2rem);
    z-index: 4;
    width: min(12.5rem, 31%);
    margin: 0;
    padding: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(197, 160, 89, 0.8);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(1.15rem, 1.8vw, 1.45rem);
    line-height: 1.48;
    text-wrap: balance;
}

.hero-editorial__quote-mark {
    display: block;
    height: 3.15rem;
    color: var(--prestige-gold);
    font-family: Georgia, serif;
    font-size: 5.1rem;
    font-weight: 700;
    line-height: 1;
}

.hero-editorial__quote p {
    margin: 0;
}

.hero-editorial__quote-author {
    display: block;
    margin-top: 0.8rem;
    color: var(--prestige-gold);
    font-family: "Hanken Grotesk", Arial, sans-serif;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.055em;
    line-height: 1.45;
}

/* Hero entrance sequence: the loader clears, then the message builds in layers. */
html.js [data-hero-reveal] {
    transition:
        opacity 680ms ease-out var(--hero-delay, 0ms),
        transform 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--hero-delay, 0ms),
        clip-path 900ms cubic-bezier(0.16, 1, 0.3, 1) var(--hero-delay, 0ms);
}

html.js .hero-editorial__curve path {
    stroke-dasharray: 1;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1100ms cubic-bezier(0.4, 0, 0.2, 1) 180ms;
}

html.js:not(.page-ready):not(.loader-timeout) [data-hero-reveal]:not([data-hero-reveal="background"]):not([data-hero-reveal="texture"]):not([data-hero-reveal="visual"]):not([data-hero-reveal="line"]):not([data-hero-reveal="quote"]) {
    opacity: 0;
    transform: translateY(1.5rem);
}

html.js:not(.page-ready):not(.loader-timeout) [data-hero-reveal="background"] {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}

html.js:not(.page-ready):not(.loader-timeout) [data-hero-reveal="texture"] {
    opacity: 0;
    transform: translate3d(-1.5rem, 1rem, 0) scale(0.92);
}

html.js:not(.page-ready):not(.loader-timeout) [data-hero-reveal="visual"] {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
}

html.js:not(.page-ready):not(.loader-timeout) [data-hero-reveal="line"] {
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
}

html.js:not(.page-ready):not(.loader-timeout) [data-hero-reveal="quote"] {
    opacity: 0;
    transform: translateX(var(--hero-quote-x, 0)) translateY(1.25rem);
}

html.js:not(.page-ready):not(.loader-timeout) .hero-editorial__curve path {
    stroke-dashoffset: 1;
}

html.page-ready [data-hero-reveal="line"] {
    transform: scaleX(1);
}

html.page-ready [data-hero-reveal="quote"] {
    transform: translateX(var(--hero-quote-x, 0));
}

@media (min-width: 1100px) {
    .hero-editorial__portrait-stage {
        --hero-stage-offset-x: 1.25rem;
        --hero-stage-offset-y: 1.25rem;
        top: calc(50% + var(--hero-stage-offset-y));
        bottom: auto;
        left: var(--hero-stage-offset-x);
        transform: translateY(-50%);
    }

    .hero-editorial__quote {
        --hero-quote-x: 0.625rem;
        box-sizing: border-box;
        padding-left: 0.625rem;
    }
}

@media (max-width: 1099px) {
    .hero-editorial {
        min-height: 0;
    }

    .hero-editorial__navy {
        display: none;
    }

    .hero-editorial__inner {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
    }

    .hero-editorial__content {
        width: min(100%, 55rem);
        margin-inline: auto;
        padding: 3.75rem clamp(2rem, 7vw, 5rem) 2.5rem;
    }

    .hero-editorial__title,
    .hero-editorial__introduction {
        max-width: 43rem;
    }

    .hero-editorial__credentials {
        width: min(100%, 39rem);
    }

    .hero-editorial__visual {
        min-height: clamp(34rem, 67vw, 43rem);
        margin-top: 0.5rem;
    }

    .hero-editorial__visual::before {
        position: absolute;
        inset: 0;
        z-index: -1;
        display: block;
        content: '';
        background:
            radial-gradient(circle at 48% 42%, rgba(62, 88, 125, 0.48), transparent 40%),
            linear-gradient(135deg, #09172b 0%, var(--hero-navy) 58%, #1e3655 100%);
        clip-path: polygon(0 11%, 100% 0, 100% 100%, 0 100%);
    }

    .hero-editorial__texture {
        bottom: 3%;
        left: 2%;
    }

    .hero-editorial__curve {
        top: auto;
        bottom: 0;
        height: clamp(34rem, 67vw, 43rem);
    }

    .hero-editorial__portrait-stage {
        left: clamp(2rem, 7vw, 5rem);
        width: clamp(21rem, 48vw, 25rem);
    }

    .hero-editorial__quote {
        top: 19%;
        right: clamp(2rem, 7vw, 5rem);
        width: 12.5rem;
    }
}

@media (max-width: 680px) {
    .hero-editorial__content {
        padding: 2.75rem 1.25rem 1.75rem;
    }

    .hero-editorial__eyebrow {
        gap: 0.75rem;
        margin-bottom: 1.25rem;
        font-size: 0.67rem;
        letter-spacing: 0.13em;
    }

    .hero-editorial__eyebrow span {
        width: 2rem;
    }

    .hero-editorial__title {
        font-size: clamp(2.3rem, 11vw, 3rem);
        line-height: 1.12;
        text-wrap: pretty;
    }

    .hero-editorial__divider {
        margin-block: 1.35rem 1.1rem;
    }

    .hero-editorial__introduction {
        font-size: 1rem;
        line-height: 1.58;
    }

    .hero-editorial__actions {
        flex-direction: column;
        margin-top: 1.35rem;
    }

    .hero-editorial__button {
        width: 100%;
    }

    .hero-editorial__credentials {
        margin-top: 1.4rem;
    }

    .hero-editorial__visual {
        min-height: clamp(40rem, 158vw, 44rem);
        margin-top: 0;
    }

    .hero-editorial__visual::before {
        clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
    }

    .hero-editorial__curve {
        height: clamp(40rem, 158vw, 44rem);
        opacity: 0.72;
    }

    .hero-editorial__portrait-stage {
        left: 50%;
        width: min(21rem, calc(100% - 2.5rem));
        transform: translateX(-50%);
    }

    .hero-editorial__accreditation {
        right: -0.45rem;
        bottom: 0.75rem;
        width: 12.5rem;
        padding: 0.85rem 0.95rem;
    }

    .hero-editorial__accreditation strong {
        font-size: 1.08rem;
    }

    .hero-editorial__quote {
        --hero-quote-x: -50%;
        top: 2.75rem;
        right: auto;
        left: 50%;
        width: min(17.75rem, calc(100% - 2.5rem));
        padding-bottom: 1rem;
        font-size: 1.18rem;
        line-height: 1.42;
        transform: translateX(var(--hero-quote-x));
    }

    .hero-editorial__quote-mark {
        height: 2.45rem;
        font-size: 4rem;
    }

    .hero-editorial__quote-author {
        margin-top: 0.7rem;
        font-size: 0.7rem;
        line-height: 1.35;
    }
}

@media (max-width: 560px) {
    .hero-editorial__credentials {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        padding-block: 0.45rem;
    }

    .hero-editorial__credential {
        justify-content: flex-start;
        min-height: 4rem;
        padding: 0.6rem 0.8rem;
    }

    .hero-editorial__credential + .hero-editorial__credential {
        border-top: 1px solid rgba(198, 198, 206, 0.66);
        border-left: 0;
    }

    .hero-editorial__credential-copy strong {
        font-size: 1.2rem;
    }

    .hero-editorial__credential-copy small {
        font-size: 0.7rem;
    }
}

/* Premium authority-panel hero redesign */
.hero-editorial {
    --hero-cream: #f7f3ed;
    --hero-navy: #0b1f3f;
    background:
        radial-gradient(circle at 13% 84%, rgba(201, 163, 90, 0.1), transparent 30%),
        var(--hero-cream);
}

.hero-editorial__navy {
    inset: 0 0 0 43%;
    background:
        radial-gradient(circle at 58% 38%, rgba(54, 91, 132, 0.5), transparent 38%),
        linear-gradient(135deg, #07162b 0%, var(--hero-navy) 55%, #173b63 100%);
}

.hero-editorial__inner {
    grid-template-columns: minmax(0, 51%) minmax(0, 49%);
}

.hero-editorial__content {
    padding: clamp(3rem, 4.6vw, 5rem) clamp(2.25rem, 4.2vw, 4.25rem);
}

.hero-editorial__title {
    max-width: 38rem;
    color: #0b1f4d;
    font-size: clamp(3rem, 4.35vw, 4.05rem);
    letter-spacing: -0.045em;
    line-height: 1.06;
}

.hero-editorial__introduction p + p {
    margin-top: 0.55rem;
}

.hero-editorial__actions {
    margin-top: 1.45rem;
}

.hero-editorial__button {
    min-height: 3.45rem;
    padding: 0.86rem 1.35rem;
    border-radius: 0.34rem;
}

.hero-editorial__button--primary {
    background: #0b1f4d;
}

.hero-editorial__credentials {
    width: min(100%, 36.5rem);
    margin-top: 1.65rem;
}

.hero-editorial__visual {
    display: grid;
    grid-template-columns: minmax(16rem, 1.08fr) minmax(13rem, 0.82fr);
    gap: clamp(0.6rem, 1.2vw, 1.1rem);
    align-items: center;
    padding: 3.25rem clamp(1.4rem, 2.4vw, 2.25rem) 8.5rem clamp(2.2rem, 3.2vw, 3.25rem);
}

.hero-editorial__portrait-stage {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 2;
    width: 100%;
    max-width: 23.5rem;
    aspect-ratio: 0.79;
    align-self: center;
    justify-self: center;
    overflow: visible;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    isolation: isolate;
}

.hero-editorial__portrait-stage::before {
    content: none;
}

.hero-editorial__portrait-stage::after {
    content: none;
}

.hero-editorial__portrait-backplate {
    position: absolute;
    inset: 1.15rem -0.9rem -0.65rem 1.15rem;
    z-index: 0;
    display: block;
    margin: 0;
    background: linear-gradient(145deg, #d9b66d 0%, #bd8d37 100%);
    border: 1px solid rgba(247, 211, 137, 0.42);
    border-radius: 1.55rem;
    box-shadow: 0 24px 42px -28px rgba(0, 0, 0, 0.82);
    transform: translate(0.7rem, 0.45rem) rotate(1.4deg);
}

.hero-editorial__portrait-frame {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.86), transparent 34%),
        linear-gradient(150deg, #fbf7f0 0%, #e8dac7 100%);
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 1.6rem;
    box-shadow:
        0 28px 58px -32px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(201, 163, 90, 0.18);
}

.hero-editorial__portrait {
    bottom: 0;
    width: 126%;
}

.hero-editorial__identity {
    position: relative;
    z-index: 3;
    align-self: center;
    min-width: 0;
    padding: 1.25rem 0.1rem 4rem;
}

.hero-editorial__identity-prefix {
    display: block;
    margin-bottom: 0.6rem;
    color: #e3b75f;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.045em;
}

.hero-editorial__identity-name {
    margin: 0;
    color: #fffaf1;
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(2.05rem, 3vw, 3.05rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.01;
    text-wrap: balance;
}

.hero-editorial__identity-name span {
    display: block;
    white-space: nowrap;
}

.hero-editorial__identity-rule {
    position: relative;
    display: block;
    width: min(100%, 15rem);
    height: 1px;
    margin-block: 1.25rem 1.15rem;
    background: rgba(222, 178, 91, 0.92);
}

.hero-editorial__identity-rule::after {
    position: absolute;
    top: 50%;
    left: 45%;
    width: 0.42rem;
    height: 0.42rem;
    content: '';
    background: #ddb15b;
    transform: translate(-50%, -50%) rotate(45deg);
}

.hero-editorial__identity-specialty {
    max-width: 15rem;
    margin: 0;
    color: #e5ba66;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.055em;
    line-height: 1.55;
}

.hero-editorial__accreditation {
    position: absolute;
    right: clamp(1.4rem, 3vw, 2.8rem);
    bottom: 2.2rem;
    z-index: 5;
    display: grid;
    grid-template-columns: 4.4rem minmax(0, 1fr);
    gap: 1rem;
    width: min(24rem, calc(100% - 3rem));
    align-items: center;
    margin: 0;
    padding: 1rem 1.2rem;
    color: #fff8e8;
    background:
        radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.09), transparent 28%),
        linear-gradient(135deg, rgba(20, 52, 85, 0.98), rgba(7, 24, 46, 0.98));
    border: 2px solid #d5aa55;
    border-radius: 1.15rem;
    box-shadow: 0 22px 40px -24px rgba(0, 0, 0, 0.9);
}

.hero-editorial__accreditation-seal {
    display: block;
    width: 4.4rem;
    margin: 0;
    filter: drop-shadow(0 8px 9px rgba(0, 0, 0, 0.34));
}

.hero-editorial__accreditation-seal svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.hero-editorial__medal-ribbon {
    fill: #c68e2f;
}

.hero-editorial__medal-disc {
    fill: #ddb35d;
    stroke: #f1d28e;
    stroke-width: 2;
}

.hero-editorial__medal-ring {
    fill: none;
    stroke: rgba(123, 82, 20, 0.58);
    stroke-width: 1.4;
    stroke-dasharray: 2 2;
}

.hero-editorial__medal-check {
    fill: none;
    stroke: #6e4a16;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-editorial__accreditation-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.hero-editorial__accreditation strong {
    color: #f1c66e;
    font-family: "Hanken Grotesk", Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.32;
}

.hero-editorial__accreditation .hero-editorial__accreditation-level {
    display: block;
    margin: 0.52rem 0 0;
    padding-top: 0.48rem;
    color: #fff7e4;
    border-top: 1px solid rgba(213, 170, 85, 0.62);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.3;
}

.hero-editorial__accreditation .hero-editorial__accreditation-stars {
    margin: 0.25rem 0 0;
    color: #e8bb62;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    line-height: 1;
}

@media (min-width: 1100px) {
    .hero-editorial__visual {
        grid-template-rows: minmax(0, auto);
        align-content: center;
        align-items: center;
        column-gap: 1.25rem;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero-editorial__portrait-stage {
        aspect-ratio: 2 / 3;
        grid-column: 1;
        grid-row: 1;
        align-self: center;
    }

    .hero-editorial__portrait-backplate {
        right: -0.35rem;
        bottom: 0;
        transform: translate(0.25rem, 0) rotate(1.4deg);
    }

    .hero-editorial__portrait {
        width: 145%;
    }

    .hero-editorial__identity {
        grid-column: 2;
        grid-row: 1;
        align-self: start;
        padding: 0 0.1rem;
        padding-top: 0;
    }

    .hero-editorial__identity-prefix {
        margin-bottom: 0.25rem;
    }

    .hero-editorial__accreditation {
        position: relative;
        right: auto;
        bottom: auto;
        grid-column: 1 / -1;
        grid-row: 1;
        width: min(21.25rem, calc(100% - 10.5rem));
        align-self: end;
        justify-self: start;
        margin-left: clamp(9.5rem, 11vw, 10.5rem);
        margin-bottom: 0.75rem;
    }
}

@media (min-width: 1100px) and (max-width: 1500px) {
    .hero-editorial__curve {
        transform: translateX(5rem);
    }
}

@media (max-width: 1099px) {
    .hero-editorial__inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-editorial__content {
        padding-bottom: 2.75rem;
    }

    .hero-editorial__visual {
        grid-template-columns: minmax(18rem, 1.05fr) minmax(14rem, 0.8fr);
        min-height: 39rem;
        margin-top: 0;
        padding: 4.5rem clamp(2rem, 7vw, 5rem) 8.5rem;
    }

    .hero-editorial__visual::before {
        display: block;
        background:
            radial-gradient(circle at 48% 42%, rgba(62, 88, 125, 0.5), transparent 40%),
            linear-gradient(135deg, #07162b 0%, var(--hero-navy) 58%, #173b63 100%);
        clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 100%);
    }

    .hero-editorial__portrait-stage {
        left: auto;
        width: 100%;
        max-width: 22rem;
        transform: none;
    }

    .hero-editorial__identity {
        padding-bottom: 3rem;
    }

    .hero-editorial__accreditation {
        right: clamp(2rem, 7vw, 5rem);
        bottom: 2.3rem;
    }
}

@media (max-width: 680px) {
    .hero-editorial__content {
        padding: 2.75rem 1.25rem 2rem;
    }

    .hero-editorial__eyebrow {
        gap: 0.7rem;
        font-size: 0.65rem;
        letter-spacing: 0.115em;
    }

    .hero-editorial__eyebrow span {
        width: 1.8rem;
    }

    .hero-editorial__title {
        font-size: clamp(2.3rem, 11.4vw, 3.05rem);
        line-height: 1.06;
    }

    .hero-editorial__credentials {
        grid-template-columns: minmax(0, 1fr);
        margin-top: 1.35rem;
        padding-block: 0.4rem;
    }

    .hero-editorial__credential {
        justify-content: flex-start;
        min-height: 3.8rem;
        padding: 0.55rem 0.8rem;
    }

    .hero-editorial__credential + .hero-editorial__credential {
        border-top: 1px solid rgba(198, 198, 206, 0.66);
        border-left: 0;
    }

    .hero-editorial__credential-copy strong,
    .hero-editorial [data-counter] {
        font-size: 1.18rem;
    }

    .hero-editorial__visual {
        display: flex;
        min-height: 0;
        flex-direction: column;
        gap: 0;
        padding: 4.5rem 1.25rem 2rem;
    }

    .hero-editorial__visual::before {
        clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
    }

    .hero-editorial__portrait-stage {
        left: auto;
        width: min(20.5rem, calc(100% - 1.25rem));
        max-width: none;
        aspect-ratio: 0.82;
        flex: 0 0 auto;
        transform: none;
    }

    .hero-editorial__portrait-backplate {
        inset: 1rem -0.65rem -0.45rem 1rem;
        transform: translate(0.45rem, 0.25rem) rotate(1.2deg);
    }

    .hero-editorial__identity {
        width: min(100%, 22rem);
        padding: 1.75rem 0.5rem 1.5rem;
        text-align: center;
    }

    .hero-editorial__identity-name {
        font-size: clamp(2rem, 10vw, 2.65rem);
    }

    .hero-editorial__identity-rule {
        margin: 1rem auto;
    }

    .hero-editorial__identity-specialty {
        max-width: 19rem;
        margin-inline: auto;
        font-size: 0.76rem;
    }

    .hero-editorial__accreditation {
        position: relative;
        right: auto;
        bottom: auto;
        grid-template-columns: 3.8rem minmax(0, 1fr);
        width: min(100%, 22rem);
        padding: 0.9rem 1rem;
    }

    .hero-editorial__accreditation-seal {
        width: 3.8rem;
    }

    .hero-editorial__accreditation strong {
        font-size: 0.92rem;
    }
}

@media (max-width: 380px) {
    .hero-editorial__content,
    .hero-editorial__visual {
        padding-inline: 1rem;
    }

    .hero-editorial__accreditation {
        grid-template-columns: 3.25rem minmax(0, 1fr);
        gap: 0.8rem;
    }

    .hero-editorial__accreditation-seal {
        width: 3.25rem;
    }
}

/* Contact topbar */
.contact-topbar {
    height: 2.25rem;
    color: #fff;
    background-color: var(--deep-navy);
}

.contact-topbar__inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    height: 100%;
    padding-inline: 1.5rem;
    margin-inline: auto;
}

.contact-topbar__message {
    font-size: 0.6875rem;
    font-weight: 700;
    color: #e9c176;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-topbar__links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-left: auto;
}

.contact-topbar__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.88);
    transition: color 180ms ease;
}

.contact-topbar__links a:hover,
.contact-topbar__links a:focus-visible {
    color: #e9c176;
}

.contact-topbar__links .material-symbols-outlined {
    font-size: 0.95rem;
}

@media (min-width: 768px) {
    .contact-topbar__inner {
        padding-inline: 4rem;
    }
}

@media (max-width: 767px) {
    .contact-topbar__message {
        display: none;
    }

    .contact-topbar__links {
        justify-content: center;
        width: 100%;
        gap: 1rem;
        margin-left: 0;
    }

    .contact-topbar__links a {
        font-size: 0.6875rem;
    }
}

/* General page loader */
.page-loader {
    display: none;
}

html.js .page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, rgba(197, 160, 89, 0.12), transparent 34%),
        var(--deep-navy);
    opacity: 1;
    visibility: visible;
    transition: opacity 350ms ease, visibility 350ms ease;
}

html.js .page-loader.is-hidden,
html.loader-timeout .page-loader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader__spinner {
    position: relative;
    display: grid;
    width: 148px;
    height: 148px;
    place-items: center;
}

.page-loader__ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-top-color: var(--prestige-gold);
    border-right-color: var(--prestige-gold);
    border-radius: 50%;
    animation: loader-spin 1.15s linear infinite;
}

.page-loader__brand {
    width: 112px;
    height: 112px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.28));
    animation: loader-pulse 1.5s ease-in-out infinite;
}

@keyframes loader-spin {
    to { transform: rotate(360deg); }
}

@keyframes loader-pulse {
    0%, 100% { opacity: 0.82; transform: scale(0.96); }
    50% { opacity: 1; transform: scale(1); }
}

/* Navigation */
.site-nav-link {
    position: relative;
    color: #4a4d5e;
    transition: color 180ms ease;
}

.site-nav-link::after {
    position: absolute;
    right: 0;
    bottom: -0.65rem;
    left: 0;
    height: 2px;
    content: '';
    background: var(--prestige-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.site-nav-link:hover,
.site-nav-link:focus-visible,
.site-nav-link.is-active,
.site-nav-link[aria-current='location'] {
    color: #9d7834;
}

.site-nav-link.is-active::after,
.site-nav-link[aria-current='location']::after {
    transform: scaleX(1);
}

.mobile-menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--deep-navy);
    background: #fff;
    border: 1px solid rgba(197, 160, 89, 0.65);
    border-radius: 0.35rem;
    transition: color 180ms ease, background-color 180ms ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible,
.mobile-menu-toggle[aria-expanded='true'] {
    color: #fff;
    background: var(--deep-navy);
}

.mobile-menu-toggle:focus-visible,
.site-nav-link:focus-visible,
.mobile-nav-cta:focus-visible {
    outline: 3px solid rgba(197, 160, 89, 0.45);
    outline-offset: 3px;
}

.mobile-nav-panel {
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
    background: rgba(251, 248, 251, 0.98);
    border-top: 1px solid rgba(198, 198, 206, 0.65);
    box-shadow: 0 18px 30px -22px rgba(26, 35, 58, 0.65);
    animation: mobile-menu-enter 180ms ease-out both;
}

.mobile-nav-link {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 0.65rem 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-left: 3px solid transparent;
    border-radius: 0.25rem;
}

.mobile-nav-link::after {
    display: none;
}

.mobile-nav-link.is-active,
.mobile-nav-link[aria-current='location'] {
    color: var(--deep-navy);
    background: rgba(197, 160, 89, 0.13);
    border-left-color: var(--prestige-gold);
}

.mobile-nav-cta {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: #fff;
    background: var(--deep-navy);
    border: 1px solid var(--deep-navy);
    border-radius: 0.25rem;
}

@keyframes mobile-menu-enter {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Counters */
[data-counter] {
    font-variant-numeric: tabular-nums;
}

/* Reusable viewport reveals for headings, cards and key content blocks. */
html.js [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 2rem, 0);
    transition:
        opacity 680ms ease-out var(--reveal-delay, 0ms),
        transform 720ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
        box-shadow 200ms ease;
    will-change: opacity, transform;
}

html.js [data-reveal="left"] {
    transform: translate3d(-2.25rem, 0, 0);
}

html.js [data-reveal="right"] {
    transform: translate3d(2.25rem, 0, 0);
}

html.js [data-reveal="scale"] {
    transform: translate3d(0, 1rem, 0) scale(0.94);
}

html.js [data-reveal].is-visible,
html.loader-timeout [data-reveal] {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    will-change: auto;
}

/* Methodology */
.methodology {
    position: relative;
    overflow: hidden;
    padding-block: clamp(3.75rem, 5vw, 5.25rem);
    background:
        radial-gradient(circle at 8% 18%, rgba(197, 160, 89, 0.1), transparent 24rem),
        linear-gradient(180deg, #f8f4ed 0%, #f3eee5 100%);
}

.methodology::before {
    position: absolute;
    top: 4rem;
    right: -3rem;
    width: 15rem;
    height: 15rem;
    content: '';
    background-image: radial-gradient(circle, rgba(197, 160, 89, 0.3) 1px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.42;
    pointer-events: none;
    mask-image: linear-gradient(135deg, #000, transparent 72%);
}

.methodology__container {
    position: relative;
    z-index: 1;
    width: min(100%, 90rem);
    min-width: 0;
    padding-inline: clamp(1.25rem, 5vw, 4rem);
    margin-inline: auto;
}

.methodology__header {
    width: min(100%, 76rem);
    margin-inline: auto;
    text-align: center;
}

.methodology__eyebrow {
    margin: 0 0 1rem;
    color: #9d7834;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.5;
}

.methodology__title {
    margin: 0;
    color: var(--deep-navy);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.18;
    text-wrap: balance;
}

.methodology__subtitle {
    width: min(100%, 43rem);
    margin: 1.15rem auto 0;
    color: #5f6270;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.65;
    text-wrap: pretty;
}

.methodology__steps {
    --methodology-gap: clamp(1rem, 2vw, 1.5rem);
    position: relative;
    display: grid;
    gap: var(--methodology-gap);
    min-width: 0;
    padding: 0;
    margin: clamp(2.25rem, 3.4vw, 3rem) 0 0;
    list-style: none;
    isolation: isolate;
}

.methodology__steps::before {
    position: absolute;
    top: 1.625rem;
    right: 11.5%;
    left: 11.5%;
    z-index: -1;
    height: 1px;
    content: '';
    background: linear-gradient(90deg, transparent, var(--prestige-gold) 7%, var(--prestige-gold) 93%, transparent);
}

.methodology__step {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.methodology__marker {
    position: relative;
    z-index: 2;
    display: grid;
    width: 3.25rem;
    height: 3.25rem;
    flex: 0 0 auto;
    place-items: center;
    margin-inline: auto;
    color: var(--prestige-gold);
    background: var(--deep-navy);
    border: 2px solid var(--prestige-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 3px #f6f1e9, 0 0.65rem 1.4rem rgba(26, 35, 58, 0.16);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.methodology__card {
    position: relative;
    z-index: 1;
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1.2rem;
    padding: clamp(1.4rem, 2.4vw, 2rem) clamp(1.15rem, 2vw, 1.65rem) clamp(1.75rem, 2.8vw, 2.25rem);
    overflow: hidden;
    text-align: left;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 0.45rem;
    box-shadow: 0 1rem 2.6rem -1.8rem rgba(26, 35, 58, 0.38);
}

.methodology__card::after {
    position: absolute;
    bottom: 0;
    left: clamp(1.15rem, 2vw, 1.65rem);
    width: 2.8rem;
    height: 0.25rem;
    content: '';
    background: var(--deep-navy);
    border-radius: 0.25rem 0.25rem 0 0;
}

.methodology__icon {
    display: grid;
    width: 4.25rem;
    height: 4.25rem;
    flex: 0 0 auto;
    place-items: center;
    color: #9d7834;
    background: #f5ecdc;
    border: 1px solid rgba(197, 160, 89, 0.32);
    border-radius: 50%;
}

.methodology__icon .material-symbols-outlined {
    font-size: 2rem;
    font-variation-settings: 'FILL' 0, 'wght' 350, 'GRAD' 0, 'opsz' 32;
}

.methodology__card-title {
    max-width: 100%;
    margin: 1.2rem 0 0;
    color: var(--deep-navy);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(1.1rem, 1.7vw, 1.35rem);
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.methodology__divider {
    width: 2.3rem;
    height: 1px;
    margin-block: 1rem;
    background: var(--prestige-gold);
}

.methodology__card p {
    margin: 0;
    color: #5f6270;
    font-size: 0.93rem;
    line-height: 1.62;
    text-wrap: pretty;
}

.methodology__cta {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-width: 0;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 1.75rem);
    margin-top: clamp(1.75rem, 2.7vw, 2.4rem);
    padding: clamp(1.25rem, 2.5vw, 1.8rem);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(197, 160, 89, 0.34);
    border-top: 3px solid var(--prestige-gold);
    border-radius: 0.45rem;
    box-shadow: 0 1.25rem 3rem -2rem rgba(26, 35, 58, 0.42);
}

.methodology__cta::after {
    position: absolute;
    right: -3.5rem;
    bottom: -4.25rem;
    width: 11rem;
    height: 11rem;
    content: '';
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 50%;
    pointer-events: none;
}

.methodology__cta-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 4.25rem;
    height: 4.25rem;
    flex: 0 0 auto;
    place-items: center;
    color: #fff;
    background: var(--deep-navy);
    border: 3px solid #f5ecdc;
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--prestige-gold);
}

.methodology__cta-icon svg {
    width: 2rem;
    height: 2rem;
    fill: currentColor;
}

.methodology__cta-copy {
    min-width: 0;
}

.methodology__cta-copy h3 {
    margin: 0;
    color: var(--deep-navy);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    font-weight: 700;
    line-height: 1.35;
    text-wrap: balance;
}

.methodology__cta-copy p {
    margin: 0.35rem 0 0;
    color: #626571;
    font-size: 0.95rem;
    line-height: 1.5;
}

.methodology__cta-button {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-width: 0;
    min-height: 3.3rem;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.85rem 1.2rem;
    color: #fff;
    background: var(--deep-navy);
    border: 1px solid var(--deep-navy);
    border-radius: 0.3rem;
    font-size: 0.87rem;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.methodology__cta-button .material-symbols-outlined {
    flex: 0 0 auto;
    color: var(--prestige-gold);
    font-size: 1.25rem;
}

.methodology__cta-button:hover {
    color: var(--deep-navy);
    background: var(--prestige-gold);
    border-color: var(--prestige-gold);
    box-shadow: 0 0.8rem 1.5rem -1rem rgba(26, 35, 58, 0.72);
}

.methodology__cta-button:hover .material-symbols-outlined {
    color: var(--deep-navy);
}

.methodology__cta-button:focus-visible {
    outline: 3px solid rgba(197, 160, 89, 0.58);
    outline-offset: 3px;
}

@media (min-width: 1100px) {
    .methodology__steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-auto-rows: 1fr;
    }
}

@media (min-width: 700px) and (max-width: 1099px) {
    .methodology__steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 1fr;
        row-gap: clamp(2rem, 5vw, 3rem);
    }

    .methodology__steps::before {
        display: none;
    }

    .methodology__step:nth-child(odd)::before {
        position: absolute;
        top: 1.625rem;
        left: 50%;
        z-index: 0;
        width: calc(100% + var(--methodology-gap));
        height: 1px;
        content: '';
        background: var(--prestige-gold);
    }

    .methodology__marker,
    .methodology__card {
        z-index: 1;
    }

    .methodology__cta {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .methodology__cta-button {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 699px) {
    .methodology {
        padding-block: 4rem;
    }

    .methodology__container {
        padding-inline: clamp(1rem, 5vw, 1.5rem);
    }

    .methodology__header {
        text-align: left;
    }

    .methodology__title,
    .methodology__subtitle {
        text-wrap: pretty;
    }

    .methodology__steps {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.35rem;
        margin-top: 2.5rem;
    }

    .methodology__steps::before {
        display: none;
    }

    .methodology__step {
        display: grid;
        grid-template-columns: 3.25rem minmax(0, 1fr);
        align-items: start;
        gap: 1rem;
    }

    .methodology__step:not(:last-child)::after {
        position: absolute;
        top: 3.25rem;
        bottom: -2.98rem;
        left: 1.6rem;
        z-index: 0;
        width: 1px;
        content: '';
        background: var(--prestige-gold);
    }

    .methodology__marker {
        grid-column: 1;
        margin: 0;
    }

    .methodology__card {
        grid-column: 2;
        width: 100%;
        margin-top: 0;
        padding: 1.35rem 1.15rem 1.65rem;
        align-items: flex-start;
        text-align: left;
    }

    .methodology__card::after {
        left: 1.15rem;
        transform: none;
    }

    .methodology__icon {
        width: 3.8rem;
        height: 3.8rem;
    }

    .methodology__divider {
        margin-block: 0.85rem;
    }

    .methodology__cta {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
        padding: 1.5rem 1.15rem;
        text-align: center;
    }

    .methodology__cta-copy,
    .methodology__cta-button {
        width: 100%;
    }
}

/* Professional timeline */
.experience {
    position: relative;
    overflow: hidden;
    padding-block: clamp(5rem, 8vw, 7.5rem);
    background:
        radial-gradient(circle at 14% 36%, rgba(197, 160, 89, 0.08), transparent 25rem),
        radial-gradient(circle at 88% 58%, rgba(26, 35, 58, 0.055), transparent 24rem),
        linear-gradient(180deg, #fbf8fb 0%, #f8f5f7 100%);
}

.experience::before,
.experience::after {
    position: absolute;
    width: 18rem;
    height: 18rem;
    content: '';
    border: 1px solid rgba(197, 160, 89, 0.13);
    border-radius: 50%;
    pointer-events: none;
}

.experience::before {
    top: 8rem;
    left: -12rem;
}

.experience::after {
    right: -11rem;
    bottom: 7rem;
}

.experience__shell {
    position: relative;
    z-index: 1;
    width: min(100%, 74rem);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 4rem);
}

.experience__header {
    max-width: 52rem;
    margin-inline: auto;
    text-align: center;
}

.experience__eyebrow {
    margin: 0;
    color: #a9782f;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    line-height: 1.4;
}

.experience__ornament {
    position: relative;
    display: block;
    width: 5.5rem;
    height: 1px;
    margin: 0.9rem auto 1rem;
    background: var(--prestige-gold);
}

.experience__ornament::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.52rem;
    height: 0.52rem;
    content: '';
    background: var(--prestige-gold);
    border: 3px solid #fbf8fb;
    transform: translate(-50%, -50%) rotate(45deg);
}

.experience__title {
    margin: 0;
    color: var(--deep-navy);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(2.35rem, 4.2vw, 3.45rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.13;
    text-wrap: balance;
}

.experience__lead {
    max-width: 44rem;
    margin: 1rem auto 0;
    color: #565a6a;
    font-size: clamp(1rem, 1.5vw, 1.13rem);
    line-height: 1.62;
    text-wrap: balance;
}

.experience__timeline {
    position: relative;
    margin: 2.4rem 0 0;
    padding: 0;
    list-style: none;
}

.experience__timeline::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    content: '';
    background: linear-gradient(180deg, rgba(198, 198, 206, 0.28), rgba(166, 134, 70, 0.62), rgba(198, 198, 206, 0.62));
    transform: translateX(-50%);
}

.experience__item {
    position: relative;
    display: grid;
    min-height: 9.2rem;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) 5.5rem minmax(0, 1fr);
}

.experience__item::after {
    position: absolute;
    top: 50%;
    z-index: 0;
    width: 3.75rem;
    height: 1px;
    content: '';
    background: linear-gradient(90deg, rgba(166, 134, 70, 0.72), rgba(198, 198, 206, 0.7));
}

.experience__item--right::after {
    left: 50%;
}

.experience__item--left::after {
    right: 50%;
}

.experience__marker {
    z-index: 2;
    display: grid;
    width: 4.25rem;
    height: 4.25rem;
    color: #b4883c;
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid rgba(197, 160, 89, 0.34);
    border-radius: 50%;
    box-shadow: 0 12px 28px -18px rgba(26, 35, 58, 0.55), 0 0 0 5px rgba(255, 255, 255, 0.72);
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    place-items: center;
    transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.experience__marker .material-symbols-outlined {
    font-size: 1.85rem;
    line-height: 1;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 32;
}

.experience__card {
    position: relative;
    width: 100%;
    min-height: 8rem;
    padding: 1.4rem 1.7rem;
    background: rgba(255, 255, 255, 0.91);
    border: 1px solid rgba(198, 198, 206, 0.52);
    border-radius: 0.85rem;
    box-shadow: 0 18px 42px -30px rgba(26, 35, 58, 0.42);
    backdrop-filter: blur(8px);
    transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.experience__item--right .experience__card {
    margin-left: 1rem;
    border-right: 3px solid rgba(197, 160, 89, 0.92);
    grid-column: 3;
}

.experience__item--left .experience__card {
    margin-right: 1rem;
    border-left: 3px solid rgba(197, 160, 89, 0.92);
    grid-column: 1;
    text-align: right;
}

.experience__card::before {
    position: absolute;
    top: 50%;
    width: 0.68rem;
    height: 0.68rem;
    content: '';
    background: var(--prestige-gold);
    border: 2px solid #fbf8fb;
    border-radius: 50%;
    transform: translateY(-50%);
}

.experience__item--right .experience__card::before {
    left: -1.42rem;
}

.experience__item--left .experience__card::before {
    right: -1.42rem;
}

.experience__period {
    margin: 0 0 0.42rem;
    color: #a9782f !important;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.045em;
    line-height: 1.35;
}

.experience__card h3 {
    margin: 0;
    color: var(--deep-navy);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.24;
}

.experience__card > p:last-child {
    margin: 0.55rem 0 0;
    color: #555968;
    font-size: 0.95rem;
    line-height: 1.5;
}

.experience__item:hover .experience__marker {
    color: #fff;
    background: var(--prestige-gold);
    border-color: var(--prestige-gold);
    transform: scale(1.04);
}

.experience__item:hover .experience__card {
    border-color: rgba(197, 160, 89, 0.68);
    box-shadow: 0 22px 48px -28px rgba(26, 35, 58, 0.52);
    transform: translateY(-2px);
}

.experience__item--featured {
    min-height: 12.5rem;
}

.experience__marker--featured {
    width: 5rem;
    height: 5rem;
    color: #fff;
    background: linear-gradient(145deg, #0a1830, #183a63);
    border-color: var(--prestige-gold);
    box-shadow: 0 16px 34px -18px rgba(4, 13, 35, 0.85), 0 0 0 5px rgba(197, 160, 89, 0.13);
}

.experience__marker--featured .material-symbols-outlined {
    font-size: 2.35rem;
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 40;
}

.experience__card--featured {
    overflow: hidden;
    min-height: 10.75rem;
    padding: 1.55rem 2.1rem;
    color: #fff;
    background:
        radial-gradient(circle at 88% 14%, rgba(77, 112, 155, 0.42), transparent 34%),
        linear-gradient(145deg, #08162d 0%, #102a4a 58%, #17375d 100%);
    border: 1px solid var(--prestige-gold) !important;
    box-shadow: 0 24px 48px -24px rgba(4, 13, 35, 0.76), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-align: left !important;
}

.experience__card--featured::before {
    background: var(--prestige-gold);
    border-color: #0c203b;
}

.experience__card--featured h3 {
    position: relative;
    padding-bottom: 0.8rem;
    color: #fff;
    font-size: clamp(1.45rem, 2.5vw, 1.85rem);
}

.experience__card--featured h3::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: min(100%, 19rem);
    height: 1px;
    content: '';
    background: linear-gradient(90deg, var(--prestige-gold), rgba(197, 160, 89, 0.08));
}

.experience__card--featured > p:last-of-type {
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.88);
}

.experience__featured-ribbon {
    position: absolute;
    top: -1px;
    right: 1.15rem;
    display: grid;
    width: 2.7rem;
    height: 3.4rem;
    color: #fff;
    background: linear-gradient(180deg, #d9b461, #b98a36);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
    place-items: center;
}

.experience__featured-ribbon .material-symbols-outlined {
    margin-top: -0.5rem;
    font-size: 1.2rem;
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 24;
}

.experience__status {
    display: flex;
    width: fit-content;
    max-width: 100%;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.85rem;
    padding: 0.48rem 0.65rem;
    color: rgba(255, 255, 255, 0.78);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0.38rem;
    font-size: 0.72rem;
    line-height: 1.35;
}

.experience__status .material-symbols-outlined {
    color: var(--prestige-gold);
    font-size: 1rem;
    font-variation-settings: 'FILL' 1, 'wght' 600, 'GRAD' 0, 'opsz' 20;
}

.experience__status strong {
    color: #e6c16d;
}

.experience__status-divider {
    width: 1px;
    height: 1rem;
    background: rgba(255, 255, 255, 0.35);
}

.experience__summary {
    display: grid;
    margin: 2.3rem 0 0;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(198, 198, 206, 0.52);
    border-radius: 1rem;
    box-shadow: 0 20px 44px -34px rgba(26, 35, 58, 0.48);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
    backdrop-filter: blur(8px);
}

.experience__summary li {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 4.7rem;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 0.65rem 1rem;
}

.experience__summary li + li::before {
    position: absolute;
    top: 20%;
    bottom: 20%;
    left: 0;
    width: 1px;
    content: '';
    background: rgba(198, 198, 206, 0.7);
}

.experience__summary > li > .material-symbols-outlined {
    flex: 0 0 auto;
    color: var(--prestige-gold);
    font-size: 2.35rem;
    font-variation-settings: 'FILL' 0, 'wght' 350, 'GRAD' 0, 'opsz' 40;
}

.experience__summary li > span:last-child {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.experience__summary strong {
    color: var(--deep-navy);
    font-family: "Libre Caslon Text", Georgia, serif;
    font-size: clamp(1.2rem, 2.2vw, 1.65rem);
    line-height: 1.15;
}

.experience__summary small {
    margin-top: 0.15rem;
    color: #5b5f6d;
    font-size: 0.72rem;
    line-height: 1.3;
}

@media (max-width: 899px) {
    .experience__shell {
        padding-inline: 2rem;
    }

    .experience__item {
        grid-template-columns: minmax(0, 1fr) 4.75rem minmax(0, 1fr);
    }

    .experience__card {
        padding: 1.2rem 1.3rem;
    }

    .experience__card--featured {
        padding: 1.45rem 1.5rem;
    }

    .experience__summary li {
        gap: 0.6rem;
        padding-inline: 0.65rem;
    }

    .experience__summary > li > .material-symbols-outlined {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .experience {
        padding-block: 4.5rem;
    }

    .experience__shell {
        padding-inline: 1.25rem;
    }

    .experience__timeline {
        margin-top: 2.25rem;
    }

    .experience__timeline::before {
        left: 1.75rem;
        transform: none;
    }

    .experience__item,
    .experience__item--featured {
        min-height: 0;
        align-items: start;
        grid-template-columns: 3.5rem minmax(0, 1fr);
        margin-bottom: 1.4rem;
    }

    .experience__item:last-child {
        margin-bottom: 0;
    }

    .experience__item::after,
    .experience__item--left::after,
    .experience__item--right::after {
        top: 2.7rem;
        right: auto;
        left: 1.75rem;
        width: 2.5rem;
    }

    .experience__marker,
    .experience__marker--featured {
        width: 3.35rem;
        height: 3.35rem;
        margin-top: 1rem;
        grid-column: 1;
        grid-row: 1;
    }

    .experience__marker--featured {
        width: 3.65rem;
        height: 3.65rem;
    }

    .experience__marker .material-symbols-outlined {
        font-size: 1.45rem;
    }

    .experience__marker--featured .material-symbols-outlined {
        font-size: 1.75rem;
    }

    .experience__card,
    .experience__item--left .experience__card,
    .experience__item--right .experience__card {
        min-height: 0;
        margin: 0 0 0 0.85rem;
        padding: 1.15rem 1.2rem;
        border: 1px solid rgba(198, 198, 206, 0.52);
        border-left: 3px solid var(--prestige-gold);
        grid-column: 2;
        text-align: center;
    }

    .experience__card::before {
        display: none;
    }

    .experience__card--featured {
        padding: 1.35rem 1.25rem !important;
        border: 1px solid var(--prestige-gold) !important;
        text-align: center !important;
    }

    .experience__card--featured h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .experience__featured-ribbon {
        right: 0.8rem;
        width: 2.35rem;
        height: 3rem;
    }

    .experience__status {
        justify-content: center;
        margin-inline: auto;
    }

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

    .experience__summary li:nth-child(3)::before {
        display: none;
    }

    .experience__summary li:nth-child(n + 3)::after {
        position: absolute;
        top: 0;
        right: 12%;
        left: 12%;
        height: 1px;
        content: '';
        background: rgba(198, 198, 206, 0.62);
    }
}

@media (max-width: 520px) {
    .experience__title {
        font-size: clamp(2.1rem, 10vw, 2.7rem);
    }

    .experience__lead {
        font-size: 0.98rem;
    }

    .experience__summary {
        grid-template-columns: minmax(0, 1fr);
    }

    .experience__summary li {
        justify-content: flex-start;
        padding-inline: 1.25rem;
    }

    .experience__summary li + li::before,
    .experience__summary li:nth-child(3)::before {
        top: 0;
        right: 12%;
        bottom: auto;
        left: 12%;
        display: block;
        width: auto;
        height: 1px;
    }

    .experience__summary li:nth-child(n + 3)::after {
        display: none;
    }

    .experience__status {
        flex-direction: column;
        gap: 0.25rem;
    }

    .experience__status-divider {
        display: none;
    }
}

/* Featured credential */
.credentials-feature {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    background: var(--deep-navy);
    border: 1px solid rgba(197, 160, 89, 0.22);
    border-radius: 0.5rem;
}

.credentials-feature__visual {
    position: relative;
    isolation: isolate;
    display: grid;
    min-width: 0;
    min-height: clamp(13.5rem, 58vw, 15rem);
    overflow: hidden;
    place-items: center;
    background: var(--deep-navy);
    border-bottom: 1px solid rgba(197, 160, 89, 0.24);
}

.credentials-feature__photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 40%;
    opacity: 0.14;
    filter: grayscale(72%) saturate(62%) brightness(56%) contrast(108%);
    transform: scale(1.07);
    transform-origin: center;
    pointer-events: none;
    user-select: none;
}

.credentials-feature__visual::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: '';
    background:
        radial-gradient(circle at 50% 44%, rgba(197, 160, 89, 0.07), transparent 34%),
        linear-gradient(145deg, rgba(4, 13, 35, 0.5) 0%, rgba(4, 13, 35, 0.72) 58%, rgba(4, 13, 35, 0.96) 100%);
    pointer-events: none;
}

.credentials-feature__halo {
    position: absolute;
    z-index: 2;
    width: clamp(8.5rem, 32vw, 10.5rem);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.2), rgba(197, 160, 89, 0.04) 48%, transparent 72%);
    border-radius: 50%;
    filter: blur(0.35rem);
    pointer-events: none;
}

.credentials-feature__icon {
    position: relative;
    z-index: 2;
    color: var(--prestige-gold);
    font-size: 5.2rem;
    line-height: 1;
    filter: drop-shadow(0 0.75rem 1.2rem rgba(0, 0, 0, 0.4));
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

.credentials-feature__content {
    min-width: 0;
    flex: 1 1 50%;
    background:
        radial-gradient(circle at 100% 0, rgba(197, 160, 89, 0.08), transparent 18rem),
        var(--deep-navy);
}

@media (min-width: 700px) and (max-width: 1023px) {
    .credentials-feature__visual {
        min-height: 18rem;
    }

    .credentials-feature__photo {
        opacity: 0.18;
    }

    .credentials-feature__halo {
        width: 12rem;
    }

    .credentials-feature__icon {
        font-size: 6rem;
    }
}

@media (min-width: 1024px) {
    .credentials-feature {
        flex-direction: row;
    }

    .credentials-feature__visual {
        min-height: 24rem;
        flex: 1 1 50%;
        border-right: 1px solid rgba(197, 160, 89, 0.24);
        border-bottom: 0;
    }

    .credentials-feature__photo {
        opacity: 0.23;
    }

    .credentials-feature__halo {
        width: 14rem;
    }

    .credentials-feature__icon {
        font-size: 7.5rem;
    }
}

@media (max-width: 699px) {
    .credentials-feature__photo {
        opacity: 0.12;
    }

    .credentials-feature__icon {
        font-size: clamp(5rem, 21vw, 5.25rem);
    }
}

/* Accessible certificate viewer */
body.certificate-modal-open {
    overflow: hidden;
}

.certificate-modal[hidden] {
    display: none;
}

.certificate-modal {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:
        max(clamp(0.75rem, 3vw, 2rem), env(safe-area-inset-top))
        max(clamp(0.75rem, 3vw, 2rem), env(safe-area-inset-right))
        max(clamp(0.75rem, 3vw, 2rem), env(safe-area-inset-bottom))
        max(clamp(0.75rem, 3vw, 2rem), env(safe-area-inset-left));
    background: rgba(4, 13, 35, 0.86);
}

.certificate-modal__panel {
    display: flex;
    width: min(100%, 76rem);
    min-width: 0;
    height: min(56rem, calc(100dvh - clamp(1.5rem, 6vw, 4rem)));
    max-height: calc(100dvh - clamp(1.5rem, 6vw, 4rem));
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(197, 160, 89, 0.55);
    border-radius: 0.5rem;
    box-shadow: 0 1.5rem 4rem rgba(4, 13, 35, 0.38);
}

.certificate-modal__header {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    color: #fff;
    background: var(--deep-navy);
    border-bottom: 2px solid var(--prestige-gold);
}

.certificate-modal__title {
    min-width: 0;
    margin: 0;
    font-family: "Hanken Grotesk", Arial, sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.25;
    text-wrap: balance;
}

.certificate-modal__close {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
    min-height: 2.75rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: var(--prestige-gold);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(197, 160, 89, 0.72);
    border-radius: 0.375rem;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 120ms ease;
}

.certificate-modal__close svg {
    width: 1.25rem;
    height: 1.25rem;
}

.certificate-modal__close:hover,
.certificate-modal__close:focus-visible {
    color: var(--deep-navy);
    background: var(--prestige-gold);
    border-color: var(--prestige-gold);
}

.certificate-modal__close:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: 3px;
}

.certificate-modal__close:active {
    transform: scale(0.96);
}

.certificate-modal__body {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
    overflow: auto;
    overscroll-behavior: contain;
    padding: clamp(0.5rem, 2vw, 1.25rem);
    background: #eae7ea;
}

.certificate-modal__viewport {
    display: grid;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    place-items: center;
}

.certificate-modal__image {
    display: block;
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background: transparent;
}

@media (max-width: 480px) {
    .certificate-modal__panel {
        height: auto;
    }

    .certificate-modal__header {
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .certificate-modal__body {
        flex: 0 1 auto;
        justify-content: center;
        overflow: hidden;
        padding: 0.5rem;
    }

    .certificate-modal__viewport {
        width: min(100%, calc((100dvh - 7rem) * 1119 / 788));
        height: auto;
        aspect-ratio: 1119 / 788;
    }
}

html.js [data-timeline-item] {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 620ms ease var(--reveal-delay, 0ms),
        transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
}

html.js [data-timeline-item].is-visible,
html.loader-timeout [data-timeline-item] {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

@media (max-width: 680px) {
    #indicadores {
        padding-block: 1.5rem;
    }

    #indicadores > div {
        column-gap: 1rem;
        row-gap: 1.5rem;
        padding-inline: 1.25rem;
    }

    #indicadores [data-reveal] {
        gap: 0.35rem;
    }

    #indicadores [data-counter] {
        font-size: clamp(2rem, 9vw, 2.4rem);
        line-height: 1.05;
        white-space: nowrap;
    }

    #indicadores [data-counter] + div {
        font-size: 0.82rem;
        line-height: 1.35;
    }

    #certificaciones h2,
    #certificaciones .grid > div {
        text-align: center;
    }

    #certificaciones .grid > div {
        align-items: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }

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

    .page-loader__ring,
    .page-loader__brand {
        animation: none !important;
    }

    html.js [data-timeline-item] {
        opacity: 1;
        transform: none;
    }

    html.js [data-hero-reveal],
    html.js [data-reveal] {
        opacity: 1 !important;
        clip-path: none !important;
        transform: none !important;
        will-change: auto;
    }

    html.js .hero-editorial__quote[data-hero-reveal] {
        transform: translateX(var(--hero-quote-x, 0)) !important;
    }

    html.js .hero-editorial__curve path {
        stroke-dashoffset: 0 !important;
    }

    [data-floating-whatsapp-container] {
        transition: none !important;
    }
}
