.sdmx-home {
    --sdmx-ink: #22151c;
    --sdmx-muted: #665a60;
    --sdmx-soft: #f7f4f0;
    --sdmx-paper: #ffffff;
    --sdmx-charcoal: #151112;
    --sdmx-wine: #3a071d;
    --sdmx-wine-soft: #5b1534;
    --sdmx-gold: #d3a84c;
    --sdmx-gold-dark: #9b7028;
    --sdmx-line: rgba(34, 21, 28, 0.14);
    color: var(--sdmx-ink);
    background: var(--sdmx-paper);
    font-family: inherit;
}

.sdmx-home *,
.sdmx-home *::before,
.sdmx-home *::after {
    box-sizing: border-box;
}

.sdmx-home a {
    color: var(--sdmx-wine-soft);
    text-decoration: none;
}

.sdmx-home a:hover {
    text-decoration: underline;
}

.sdmx-shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.sdmx-section {
    padding: clamp(54px, 7vw, 88px) 0;
}

.sdmx-section--soft {
    background: var(--sdmx-soft);
}

.sdmx-section--dark {
    background: linear-gradient(135deg, var(--sdmx-charcoal), var(--sdmx-wine));
    color: #fff;
}

.sdmx-heading {
    max-width: 780px;
    margin: 0 auto 32px;
    text-align: center;
}

.sdmx-heading h2,
.sdmx-copy h2,
.sdmx-card h3,
.sdmx-profile h3,
.sdmx-article h3 {
    color: inherit;
    line-height: 1.12;
    letter-spacing: 0;
}

.sdmx-heading h2,
.sdmx-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(1.85rem, 3.2vw, 2.75rem);
}

.sdmx-heading p,
.sdmx-copy p {
    margin: 0;
    color: var(--sdmx-muted);
    font-size: clamp(1rem, 1.5vw, 1.11rem);
    line-height: 1.75;
}

.sdmx-section--dark .sdmx-heading p,
.sdmx-section--dark .sdmx-copy p {
    color: rgba(255, 255, 255, 0.78);
}

.sdmx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border-radius: 6px;
    background: var(--sdmx-gold);
    color: #21140b;
    font-weight: 700;
    line-height: 1.1;
    box-shadow: 0 12px 24px rgba(18, 12, 6, 0.16);
}

.sdmx-btn:hover {
    background: #e1b95e;
    color: #21140b;
    text-decoration: none;
}

.sdmx-topbar {
    position: relative;
    z-index: 2;
    background: #1a1215;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sdmx-topbar__inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sdmx-logo {
    color: #fff;
    font-size: clamp(1.16rem, 2vw, 1.55rem);
    font-weight: 800;
    white-space: nowrap;
}

.sdmx-logo span {
    color: var(--sdmx-gold);
}

.sdmx-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.94rem;
}

.sdmx-nav a {
    color: rgba(255, 255, 255, 0.82);
}

.sdmx-nav a:hover {
    color: #fff;
}

.sdmx-nav .sdmx-nav__button {
    color: #21140b;
    background: var(--sdmx-gold);
    padding: 9px 14px;
    border-radius: 5px;
    font-weight: 700;
}

.sdmx-hero {
    min-height: clamp(560px, 70vh, 760px);
    display: grid;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(14, 11, 12, 0.86), rgba(14, 11, 12, 0.56) 46%, rgba(14, 11, 12, 0.22)),
        url('hero.jpg') center/cover no-repeat;
    color: #fff;
}

.sdmx-hero__content {
    max-width: 690px;
    padding: clamp(72px, 9vw, 118px) 0;
}

.sdmx-hero h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.25rem, 5.6vw, 5rem);
    line-height: 0.98;
    letter-spacing: 0;
}

.sdmx-hero p {
    max-width: 610px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(1.03rem, 1.75vw, 1.28rem);
    line-height: 1.7;
}

.sdmx-hero__notes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.95rem;
}

.sdmx-hero__notes span {
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.08);
}

.sdmx-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sdmx-card {
    min-height: 100%;
    padding: 26px;
    border: 1px solid var(--sdmx-line);
    border-radius: 8px;
    background: var(--sdmx-paper);
    box-shadow: 0 14px 34px rgba(34, 21, 28, 0.06);
}

.sdmx-card__number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(211, 168, 76, 0.2);
    color: var(--sdmx-gold-dark);
    font-weight: 800;
}

.sdmx-card h3 {
    margin: 0 0 10px;
    font-size: 1.24rem;
}

.sdmx-card p,
.sdmx-card li,
.sdmx-profile p,
.sdmx-article p {
    color: var(--sdmx-muted);
    line-height: 1.68;
}

.sdmx-card p {
    margin: 0;
}

.sdmx-grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 62px);
    align-items: center;
}

.sdmx-grid-2 + .sdmx-grid-2 {
    margin-top: clamp(52px, 7vw, 82px);
}

.sdmx-copy ul {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.sdmx-copy li {
    position: relative;
    padding-left: 30px;
    color: var(--sdmx-muted);
    line-height: 1.65;
}

.sdmx-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 12px;
    height: 12px;
    border: 3px solid var(--sdmx-gold);
    border-radius: 50%;
}

.sdmx-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #ddd;
    box-shadow: 0 20px 44px rgba(34, 21, 28, 0.13);
}

.sdmx-image img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.sdmx-split-band {
    background: linear-gradient(90deg, #fff 0 50%, var(--sdmx-soft) 50% 100%);
}

.sdmx-profiles {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.sdmx-profile {
    overflow: hidden;
    border: 1px solid var(--sdmx-line);
    border-radius: 8px;
    background: var(--sdmx-paper);
    box-shadow: 0 12px 30px rgba(34, 21, 28, 0.06);
}

.sdmx-profile img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.sdmx-profile__body {
    padding: 18px;
}

.sdmx-profile h3 {
    margin: 0 0 7px;
    font-size: 1.05rem;
}

.sdmx-profile p {
    margin: 0;
    font-size: 0.95rem;
}

.sdmx-safety {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
}

.sdmx-safety-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.sdmx-safety-list .sdmx-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.sdmx-safety-list h3 {
    color: #fff;
}

.sdmx-safety-list p {
    color: rgba(255, 255, 255, 0.72);
}

.sdmx-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.sdmx-article {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--sdmx-line);
    border-radius: 8px;
    background: var(--sdmx-paper);
}

.sdmx-article img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.sdmx-article__body {
    padding: 20px;
}

.sdmx-article h3 {
    margin: 0 0 10px;
    font-size: 1.12rem;
}

.sdmx-article p {
    margin: 0 0 14px;
}

.sdmx-final {
    padding: clamp(54px, 7vw, 82px) 0;
    background: var(--sdmx-wine);
    color: #fff;
    text-align: center;
}

.sdmx-final h2 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(1.9rem, 3.7vw, 3.1rem);
    letter-spacing: 0;
}

.sdmx-final p {
    max-width: 720px;
    margin: 0 auto 26px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

@media (max-width: 980px) {
    .sdmx-nav {
        display: none;
    }

    .sdmx-steps,
    .sdmx-articles {
        grid-template-columns: 1fr;
    }

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

    .sdmx-grid-2,
    .sdmx-safety {
        grid-template-columns: 1fr;
    }

    .sdmx-grid-2--reverse .sdmx-copy {
        order: -1;
    }

    .sdmx-split-band {
        background: var(--sdmx-paper);
    }
}

@media (max-width: 640px) {
    .sdmx-shell {
        width: min(100% - 24px, 1120px);
    }

    .sdmx-topbar__inner {
        min-height: 62px;
    }

    .sdmx-hero {
        min-height: auto;
        background-position: 58% center;
    }

    .sdmx-hero__content {
        padding: 72px 0;
    }

    .sdmx-hero__notes {
        display: none;
    }

    .sdmx-card,
    .sdmx-profile__body,
    .sdmx-article__body {
        padding: 20px;
    }

    .sdmx-image img {
        min-height: 280px;
    }

    .sdmx-profiles,
    .sdmx-safety-list {
        grid-template-columns: 1fr;
    }

    .sdmx-profile img {
        height: 260px;
    }
}
