:root {
    --bg: #f7f8fa;
    --panel: #ffffff;
    --text: #000000;
    --muted: #414752;
    --line: #d7dce3;
    --line-soft: #eceff3;
    --ink: #141721;
    --plum: #2d2330;
    --plum-solid: #332735;
    --accent: #8b1e5a;
    --surface: #ffffff;
    --surface-soft: #f2f4f7;
    --radius: 6px;
    --shadow: 0 18px 45px rgba(20, 23, 33, .14);
    --shadow-soft: 0 8px 22px rgba(20, 23, 33, .08);
    --product-detail-page-gap: clamp(40px, 4vw, 52px);
    --blueprint-light: url("../../img/blueprint-light.svg");
    --blueprint-dark: url("../../img/blueprint-dark.svg");
    --hero-blueprint-background:
        var(--blueprint-dark),
        radial-gradient(circle at 82% 24%, rgba(139, 30, 90, .5), transparent 32%),
        linear-gradient(135deg, #17131b 0%, #352234 62%, #241824 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    outline: none;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    min-height: 100%;
    background: #ffffff;
    color: var(--text);
    font: 400 16px / 1.5 Arial, "Helvetica Neue", Helvetica, sans-serif;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        var(--blueprint-light),
        linear-gradient(180deg, #ffffff 0, #fbfcfd 58%, #f5f6f8 100%);
}

a {
    color: #2d2d2d;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
dt,
dd,
strong,
span,
a,
button,
.button {
    min-width: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-lead,
.button,
button {
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
}

a:hover {
    color: var(--accent);
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    right: 20px;
    bottom: 20px;
    left: 20px;
    z-index: 1200;
    pointer-events: none;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__inner {
    width: min(920px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 18px 16px 20px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background:
        var(--blueprint-dark),
        linear-gradient(135deg, rgba(51, 39, 53, .98), rgba(20, 23, 33, .98));
    color: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 48px rgba(20, 23, 33, .28);
    pointer-events: auto;
}

.cookie-banner p {
    max-width: 680px;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    line-height: 1.45;
}

.cookie-banner a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.cookie-banner__accept {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 11px 18px;
    border: 0;
    border-radius: 6px;
    background: #ffffff;
    color: var(--plum);
    font-weight: 700;
}

.cookie-banner__accept:hover,
.cookie-banner__accept:focus-visible {
    background: var(--accent);
    color: #ffffff;
}

.catalog-edit-notice-inline {
    border-bottom: 1px solid rgba(139, 30, 90, .18);
    background: #f6edf2;
    color: var(--ink);
}

.catalog-edit-notice-inline__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.catalog-edit-notice-inline svg {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.catalog-edit-notice-inline p {
    font-size: 15px;
    line-height: 1.45;
}

.catalog-edit-notice-inline strong {
    color: var(--accent);
}

@media (max-width: 520px) {
    .catalog-edit-notice-inline__inner {
        align-items: flex-start;
        gap: 10px;
        min-height: 0;
        padding-top: 13px;
        padding-bottom: 13px;
    }

    .catalog-edit-notice-inline svg {
        width: 22px;
        height: 22px;
        margin-top: 1px;
    }

    .catalog-edit-notice-inline p {
        font-size: 14px;
    }
}

nav.topbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 999;
    background: rgba(32, 29, 42, .94);
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

nav.topbar a {
    color: #ffffff;
}

nav.topbar ul {
    list-style: none;
    text-align: center;
}

#cm-menu-bar {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 0;
    white-space: nowrap;
}

#cm-menu-flag {
    position: absolute;
    visibility: hidden;
}

#cm-menu-logo {
    width: 67px;
    height: 62px;
    display: block;
    margin: 15px 0;
}

#cm-menu-phone {
    font-size: 150%;
}

#cm-menu-switch {
    position: relative;
    width: 2em;
    height: 2em;
    cursor: pointer;
}

#cm-menu-switch::after,
#cm-menu-switch::before {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: transform .18s ease;
    transform-origin: 50%;
}

#cm-menu-switch::before {
    content: url("../../img/expand.svg");
}

#cm-menu-switch::after {
    content: url("../../img/collapse.svg");
    transform: scale(0);
}

#cm-menu-flag:checked + #cm-menu-bar #cm-menu-switch::before {
    transform: scale(0);
}

#cm-menu-flag:checked + #cm-menu-bar #cm-menu-switch::after {
    transform: scale(1);
}

#cm-menu-bar .menu {
    font-weight: 700;
}

#cm-menu-bar .menu a,
#cm-menu-bar .menu-label {
    display: block;
}

#cm-menu-bar .menu-label {
    color: #ffffff;
}

#cm-menu-bar .menu li {
    line-height: 2;
}

#cm-menu-bar .menu .wpml-ls-flag {
    width: 1.125em;
    height: .75em;
}

@media (min-width: 1200px) {
    #cm-menu-phone::before {
        content: "\2706";
        margin-right: .3em;
        font-size: 120%;
        vertical-align: top;
    }
}

@media (min-width: 950px) {
    #cm-menu-switch {
        display: none;
    }

    #cm-menu-bar .menu {
        display: flex;
        justify-content: space-between;
    }

    #cm-menu-bar .menu .menu-item-has-children {
        cursor: default;
    }

    #cm-menu-bar .menu > li {
        transform-origin: 50% 0;
    }

    #cm-menu-bar .menu li {
        position: relative;
        margin: 0 .65em;
        transition: color .18s ease;
    }

    #cm-menu-bar .menu li:hover {
        transform: none;
    }

    #cm-menu-bar .menu a:hover {
        color: rgba(255, 255, 255, .76);
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        padding-bottom: 4px;
        border: 1px solid rgba(0, 0, 0, .6);
        border-top-width: 4px;
        border-radius: 0 0 4px 4px;
        background: rgba(255, 255, 255, .9);
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%);
        transition: opacity .2s, visibility .2s;
    }

    :hover > .sub-menu {
        opacity: 1;
        visibility: visible;
    }

    #cm-menu-bar .sub-menu a {
        padding: 2px;
        color: #000000;
        font-size: 90%;
    }
}

@media (min-width: 950px) and (max-width: 1199px) {
    #cm-menu-bar .menu {
        font-size: 14px;
    }

    #cm-menu-bar .menu li {
        margin-inline: .45em;
    }

    #cm-menu-phone {
        font-size: 18px;
    }
}

@media (max-width: 949px) {
    #cm-menu-flag:checked + * .menu-main-container {
        display: block;
    }

    #cm-menu-bar {
        position: relative;
        min-height: 92px;
    }

    #cm-menu-phone {
        font-size: clamp(21px, 6vw, 25px);
    }

    #cm-menu-logo {
        margin: 15px 0;
    }

    #cm-menu-bar .menu a,
    #cm-menu-bar .menu-label {
        min-height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-top: 1px solid rgba(255, 255, 255, .1);
        line-height: 1.2;
        text-transform: uppercase;
    }

    .menu-item-has-children > .menu-label {
        position: relative;
        padding-inline: 42px;
        cursor: pointer;
    }

    .menu-item-has-children > .menu-label::after {
        content: "+";
        position: absolute;
        top: 0;
        right: 18px;
        font-size: 22px;
        line-height: 2.1;
    }

    .menu-item-has-children.is-open > .menu-label::after {
        content: "−";
    }

    .menu-main-container {
        position: fixed;
        top: 92px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000;
        height: calc(100dvh - 92px);
        display: none;
        overflow-y: auto;
        padding: 10px 0 24px;
        background: #201d2a;
        box-shadow: 0 22px 44px rgba(0, 0, 0, .26);
    }

    #cm-menu-bar .menu {
        width: min(100% - 48px, 420px);
        margin: 0 auto;
    }

    .sub-menu {
        display: none;
        padding-bottom: .5em;
    }

    .menu-item-has-children.is-open > .sub-menu {
        display: block;
    }

    #cm-menu-bar .sub-menu a {
        color: #ffffff;
        text-transform: none !important;
    }
}

main {
    flex: 1;
    padding-bottom: 80px;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 150px 120px 110px 120px;
    color: #ffffff;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-blueprint-background);
    clip-path: none;
}

.hero::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -150px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 50%;
    pointer-events: none;
}

.site-hero {
    position: relative;
    overflow: hidden;
    padding: 118px 0 12vw;
    color: #ffffff;
    text-align: center;
}

.site-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-blueprint-background);
    clip-path: none;
}

.site-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -150px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 50%;
    pointer-events: none;
}

.site-hero .container {
    position: relative;
    z-index: 1;
}

.site-hero h1,
.section-title {
    font: 400 clamp(40px, 6vw, 61px) / 1.08 "Lora", "Georgia", serif;
}

.site-hero h1 {
    margin: 0 auto;
}

.hero-points {
    max-width: 450px;
    margin: 32px auto;
    padding: 0 20px;
    text-align: left;
    list-style-position: outside;
}

.hero-points li {
    margin: 8px 0 0 20px;
    font-size: 17px;
    line-height: 1.45;
}

.hero-front-image {
    position: relative;
    z-index: 1;
    display: block;
    width: min(1200px, 100%);
    aspect-ratio: 1200 / 768;
    height: auto;
    margin: 0 auto;
}

@media (min-width: 950px) {
    .site-hero h1,
    .site-hero .hero-points {
        display: none;
    }
}

@media (max-width: 949px) {
    .hero-front-image {
        display: none;
    }
}

.hero-lead {
    max-width: 780px;
    margin: 26px auto 0;
    color: rgba(255, 255, 255, .86);
    font-size: 22px;
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.button-on-dark {
    color: #ffffff;
}

.button-on-dark:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: var(--plum-solid);
}

.home-purple-panel {
    position: relative;
    margin: 26px 0 18px;
    padding: 70px 20px 90px 20px;
    overflow: hidden;
    color: #ffffff;
}

.home-purple-panel::before,
.home-purple-panel::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
}

.home-purple-panel::before {
    top: 0;
    bottom: 0;
    background:
        var(--blueprint-dark),
        linear-gradient(135deg, #342333 0, #241f2b 54%, #171922 100%);
    clip-path: none;
}

.home-purple-panel::after {
    content: none;
}

.home-purple-panel .container {
    position: relative;
    z-index: 1;
}

.home-purple-panel .home-statement {
    max-width: 980px;
    margin-bottom: 34px;
}

.home-purple-panel .home-statement h2 {
    max-width: 880px;
    color: #ffffff;
}

.home-purple-panel .home-statement p {
    max-width: 760px;
    color: #ffffff;
    color: rgba(255, 255, 255, .84);
}

.home-purple-panel .home-pillars {
    margin-bottom: 0;
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(2px);
}

.home-purple-panel .home-pillars div {
    border-color: rgba(255, 255, 255, .2);
}

.home-purple-panel .home-pillars strong {
    color: #ffffff;
}

.home-purple-panel .home-pillars span {
    color: rgba(255, 255, 255, .76);
}

.home-founder-quote {
    padding-bottom: 18px;
}

.home-trust {
    padding-top: 36px;
}

.home-trust-grid {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: 34px;
    align-items: stretch;
}

.home-trust figure,
.home-trust-list {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.home-trust figure {
    margin: 0;
    padding: 28px;
    text-align: center;
}

.home-trust blockquote {
    margin: 18px 0;
    color: #000000;
    font: 400 23px / 1.35 "Lora", "Georgia", serif;
}

.home-trust figcaption strong,
.home-trust figcaption span {
    display: block;
}

.home-trust figcaption span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
}

.home-trust .section-title {
    margin-bottom: 18px;
}

.home-trust-list {
    display: grid;
}

.home-trust-list div {
    display: grid;
    grid-template-columns: minmax(180px, .44fr) minmax(0, 1fr);
    gap: 18px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--line-soft);
}

.home-trust-list div:last-child {
    border-bottom: 0;
}

.home-trust-list strong {
    color: #000000;
}

.home-trust-list span {
    color: var(--muted);
}

.home-heritage {
    padding-top: 54px;
}

.home-heritage-grid {
    display: grid;
    grid-template-columns: minmax(230px, 380px) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 64px);
    align-items: start;
}

.home-heritage figure {
    position: sticky;
    top: 92px;
    margin: 0;
}

.home-heritage img {
    width: 100%;
    display: block;
}

.home-heritage-copy h2 {
    margin: 0 0 22px;
    color: #000000;
    font: 400 clamp(34px, 5vw, 54px) / 1.08 "Lora", "Georgia", serif;
}

.home-heritage-copy h3 {
    margin: 28px 0 12px;
    color: #000000;
    font: 400 clamp(25px, 3vw, 34px) / 1.12 "Lora", "Georgia", serif;
}

.home-heritage-copy p,
.home-heritage-copy li {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.58;
}

.home-heritage-copy p {
    margin: 0 0 16px;
}

.home-heritage-copy ul {
    display: grid;
    gap: 7px;
    margin: 0 0 18px;
    padding-left: 22px;
}

.home-process {
    padding-top: 36px;
}

.home-process .section-title {
    margin-bottom: 24px;
}

.home-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-process-grid div {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.home-process-grid span {
    display: block;
    margin-bottom: 18px;
    color: var(--accent);
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
}

.home-process-grid h3 {
    margin-bottom: 8px;
    color: #000000;
    font-size: 20px;
}

.home-process-grid p {
    margin: 0;
    color: var(--muted);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin: 0 auto;
    color: inherit;
    font: 400 clamp(36px, 6vw, 61px) / 1.08 "Lora", "Georgia", serif;
}

.hero.news-detail-hero h1 {
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

.hero.legal-policy-hero h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
}

.hero p,
.hero-subtitle {
    max-width: 760px;
    margin: 28px auto 0;
    color: rgba(255, 255, 255, .82);
    font: 400 20px / 1.45 Arial, "Helvetica Neue", Helvetica, sans-serif;
    text-transform: none;
    letter-spacing: normal;
}

.site-copy {
    position: relative;
    font-size: 17px;
}

.site-copy h3 {
    margin-top: 28px;
    font-size: 24px;
}

.site-copy ul {
    margin: 0 0 24px 20px;
}

.site-copy li {
    margin-bottom: 8px;
}

.site-copy-image {
    float: right;
    width: min(360px, 42%);
    margin: 0 0 24px 28px;
}

.about-winch {
    width: min(400px, 44%);
}

.about-small-figure {
    float: right;
    width: 120px;
    margin: 0 0 20px 24px;
}

.section-white {
    background: #ffffff;
}

.about-split,
.about-cert-row,
.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.about-split img {
    width: 100%;
    display: block;
}

.about-cert-row {
    margin: 24px 0;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
}

.about-cert-row img {
    width: 100%;
    display: block;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.about-world-section {
    overflow: hidden;
    background:
        var(--blueprint-light),
        radial-gradient(circle at 84% 0, rgba(139, 30, 90, .08), transparent 30%),
        linear-gradient(180deg, #ffffff 0, #fbfcfd 72%, #f4f6f9 100%);
}

.about-world-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 48px;
    align-items: end;
    margin-bottom: 34px;
}

.about-world-head h2 {
    max-width: 760px;
    font: 400 clamp(34px, 4.5vw, 58px) / 1.08 "Lora", Georgia, serif;
}

.about-world-head > p {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
}

.about-world-head > p strong {
    flex: 0 0 auto;
    color: var(--accent);
    font-size: 64px;
    line-height: 1;
    white-space: nowrap;
}

.about-world-head > p span {
    min-width: 0;
    color: #584f58;
    line-height: 1.35;
}

.about-world-layout {
    display: block;
}

.about-world-map {
    position: relative;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1744 / 780;
    overflow: hidden;
    border: 1px solid rgba(53, 34, 52, .15);
    border-radius: 12px;
    background: #ffffff var(--world-map-image) center / contain no-repeat;
    box-shadow: var(--shadow-soft);
}

.about-world-map [data-world-point] {
    position: absolute;
    top: var(--y);
    left: var(--x);
    width: 23.4px;
    height: 23.4px;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    background: transparent;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.about-world-map [data-world-point]::before,
.about-world-map [data-world-point] span {
    content: "";
    position: absolute;
    inset: 5.85px;
    display: block;
    border-radius: 50%;
    background: var(--accent);
}

.about-world-map [data-world-point]::before {
    animation: world-pulse 2.2s infinite;
}

.about-world-map [data-world-point].is-active span,
.about-world-map [data-world-point]:hover span,
.about-world-map [data-world-point]:focus-visible span {
    background: #241724;
    transform: scale(1.35);
}

.about-world-tooltip {
    position: absolute;
    left: 24px;
    bottom: 22px;
    min-width: 210px;
    padding: 12px 16px;
    border-radius: 5px;
    background: #2f2130;
    color: #ffffff;
    font-weight: 700;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

.about-world-tooltip.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-world-regions {
    display: grid;
    gap: 8px;
}

.about-world-regions button {
    padding: 12px 14px;
    border: 1px solid rgba(53, 34, 52, .16);
    border-radius: 5px;
    background: #ffffff;
    color: #352234;
    text-align: left;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.about-world-regions button:hover,
.about-world-regions button.is-active {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

@keyframes world-pulse {
    0% { opacity: .65; transform: scale(1); }
    75%, 100% { opacity: 0; transform: scale(2.5); }
}

.about-hero { text-align: center; }
.about-hero h1 { margin-right: auto; margin-left: auto; font-size: clamp(46px, 7vw, 61px); }
.about-hero .hero-subtitle { margin-top: 24px; }
.about-world-first { padding-top: 76px; }
.about-intro-section, .about-process-section {
    position: relative;
    overflow: hidden;
    background:
        var(--blueprint-dark),
        radial-gradient(circle at 18% 22%, rgba(139, 30, 90, .48), transparent 36%),
        radial-gradient(circle at 84% 70%, rgba(33, 47, 72, .52), transparent 42%),
        radial-gradient(farthest-corner at 50% 22%, #4a2d47 0, #352234 34%, #201d2a 100%);
    color: #fff;
}

.about-intro-section::before,
.about-process-section::before,
.about-intro-section::after,
.about-process-section::after {
    content: none;
}

.about-intro-section::before,
.about-process-section::before {
    content: none;
}

.about-intro-section::after,
.about-process-section::after {
    content: none;
}

.about-intro-section > .container,
.about-process-section > .container {
    position: relative;
    z-index: 1;
}
.about-intro-grid, .about-story-grid, .about-safety-grid, .about-cta { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(42px, 7vw, 92px); align-items: center; }
.about-intro-copy h2, .about-story-copy h2, .about-section-head h2, .about-safety-grid h2, .about-cta h2 { margin-bottom: 24px; font: 400 clamp(32px, 4vw, 52px) / 1.1 "Lora", Georgia, serif; }
.about-intro-copy p, .about-story-copy p, .about-safety-grid p, .about-cta p { margin-bottom: 18px; font-size: 18px; }
.about-intro-grid > img { width: 100%; max-height: 430px; object-fit: contain; }
.about-facts { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 58px; border-top: 1px solid rgba(255,255,255,.18); }
.about-facts div { padding: 30px 24px 6px 0; }
.about-facts strong, .about-facts span { display: block; }
.about-facts strong { margin-bottom: 8px; color: #fff; font: 400 clamp(30px, 4vw, 48px) / 1 "Lora", Georgia, serif; }
.about-facts span { color: rgba(255,255,255,.68); line-height: 1.35; }
.about-story-section, .about-safety-section, .about-cta-section { padding-top: 82px; padding-bottom: 82px; }
.about-story-section,
.about-light-flow {
    background:
        var(--blueprint-light),
        radial-gradient(circle at 84% 0, rgba(139, 30, 90, .08), transparent 30%),
        linear-gradient(180deg, #ffffff 0, #fbfcfd 72%, #f4f6f9 100%);
}
.about-story-image img { width: 100%; display: block; }
.about-story-image span {
    display: block;
    padding: 14px 18px;
    background:
        var(--blueprint-dark),
        radial-gradient(farthest-corner at top, var(--plum) 25%, var(--ink));
    color: rgba(255,255,255,.75);
    font-size: 14px;
}
.about-section-head { max-width: 800px; margin-bottom: 42px; }
.about-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.2); }
.about-process-grid article { padding: 28px 26px 12px 0; }
.about-process-grid article > span { color: #d34d91; font-weight: 700; }
.about-process-grid h3 { margin: 22px 0 12px; font-size: 21px; }
.about-process-grid p { color: rgba(255,255,255,.68); }
.about-safety-grid { grid-template-columns: minmax(0, 1fr) minmax(220px, 320px); }
.about-safety-grid ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; margin: 28px 0 0; list-style: none; }
.about-safety-grid li { position: relative; padding-left: 20px; }
.about-safety-grid li::before { content: ""; position: absolute; top: .65em; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.about-certificate { display: block; padding: 16px; background: #fff; box-shadow: var(--shadow-soft); }
.about-certificate img { width: 100%; max-height: 360px; display: block; object-fit: contain; }
.about-certificate span { display: block; padding-top: 12px; color: var(--accent); text-align: center; font-weight: 700; }
.about-safety-section,
.about-cta-section { background: transparent; }
.about-cta { grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); }
.about-cta .button { margin-top: 10px; }

.cm-reviews-band {
    position: relative;
    margin: 40px 0;
    padding: 150px 0;
    color: #ffffff;
}

.cm-reviews-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        var(--blueprint-dark),
        radial-gradient(circle at 18% 22%, rgba(139, 30, 90, .48), transparent 36%),
        radial-gradient(farthest-corner, var(--plum) 25%, var(--ink));
    clip-path: none;
}

.cm-reviews-band::after {
    content: none;
}

.cm-reviews-band .container {
    position: relative;
    z-index: 1;
}

.cm-reviews-band figure {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
}

.quote-author {
    text-align: center;
}

.quote-portrait {
    width: 170px;
    height: 170px;
    display: block;
    margin: 0 auto 16px;
    border: 2px solid rgba(255, 255, 255, .58);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}

.cm-reviews-band blockquote {
    max-width: 860px;
    margin: 0;
    font: 400 24px / 1.45 "Lora", "Georgia", serif;
}

.quote-author strong {
    display: block;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.25;
}

.quote-author span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    line-height: 1.35;
}

.how-section .section-title {
    margin-bottom: 118px;
}

.how-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 0 18px;
    counter-reset: h3-counter;
}

.how-grid > div {
    position: relative;
    width: 350px;
    height: 95px;
    margin-bottom: 5em;
    counter-increment: h3-counter;
}

.how-grid > div::before {
    content: "0" counter(h3-counter);
    position: absolute;
    top: -100px;
    left: 0;
    color: var(--accent);
    font-size: 135px;
    line-height: 1;
    font-weight: 700;
}

.how-grid > div::after {
    content: "";
    position: absolute;
    inset: 0 0 0 90px;
    z-index: 0;
    border: 1px solid var(--line-soft);
    border-radius: 4px;
    background: rgba(255, 255, 255, .85);
    box-shadow: 0 4px 5px #cccccc;
}

.how-grid h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 0 90px;
    padding: 4px 8px 0;
    font-size: 16px;
    line-height: 1.2;
}

.how-grid p {
    position: relative;
    z-index: 1;
    margin: 0 0 0 90px;
    padding: 0 8px 4px;
    font-size: 14px;
    line-height: 1.35;
}

.home-cats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.home-cat {
    min-height: 210px;
    display: flex;
    align-items: flex-end;
    padding: 110px 20px 20px;
    border: 1px solid #000000;
    border-radius: var(--radius);
    background-position: center;
    background-size: cover;
    box-shadow: 0 0 15px -2px #000000;
    color: #ffffff;
    font: 400 30px / 1.1 "Lora", "Georgia", serif;
    transition: transform .3s;
}

.home-cat:hover {
    color: #ffffff;
    transform: scale(1.03);
}

.cat-winch { background-image: linear-gradient(to top, #000000, transparent 180px), url("../../img/home/winch.jpg"); }
.cat-rigging { background-image: linear-gradient(to top, #000000, transparent 180px), url("../../img/home/rigging.jpg"); }
.cat-protection { background-image: linear-gradient(to top, #000000, transparent 180px), url("../../img/home/protection.jpg"); }
.cat-aerial { background-image: linear-gradient(to top, #000000, transparent 180px), url("../../img/home/aerial.jpg"); }
.cat-pulley { background-image: linear-gradient(to top, #000000, transparent 180px), url("../../img/home/pulley.jpg"); }
.cat-swivel { background-image: linear-gradient(to top, #000000, transparent 180px), url("../../img/home/swivel.jpg"); }

.contact-grid,
.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.contact-info {
    font-size: 18px;
}

.contact-fast-section {
    padding-bottom: 18px;
}

.contact-fast-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.contact-card,
.contact-location-card,
.contact-cta {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.contact-card {
    min-height: 100%;
    padding: 26px;
}

.contact-card > span {
    display: block;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 22px;
    line-height: 1.2;
}

.contact-card p,
.contact-location-card p,
.contact-brief-grid p,
.contact-note p,
.contact-cta p {
    color: var(--muted);
}

.contact-social-links {
    margin-top: 0;
}

.contact-social-links a,
.contact-social-links img {
    width: 48px;
    height: 48px;
}

.contact-location-section,
.contact-note-section {
    padding-top: 34px;
}

.contact-location-grid,
.contact-brief-grid,
.contact-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: 28px;
    align-items: stretch;
}

.contact-location-card,
.contact-cta {
    padding: 34px;
}

.contact-location-card h2,
.contact-cta h2 {
    margin: 0 0 18px;
    font-size: clamp(28px, 3.8vw, 42px);
    line-height: 1.08;
}

.contact-location-card h2 {
    font-size: 32px;
    padding-top: 15px;
}

.contact-map,
.contact-map iframe {
    min-height: 460px;
}

.contact-brief-section {
    margin-top: 26px;
    margin-bottom: 0;
	padding: 100px 0px 115px 0px;
}

.contact-brief-grid {
    display: block;
}

.contact-brief-grid > div {
    max-width: 880px;
    margin-bottom: 30px;
}

.contact-brief-grid h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
}

.contact-brief-grid p {
    max-width: 760px;
    color: rgba(255, 255, 255, .82);
    font-size: 19px;
    line-height: 1.55;
}

.contact-checklist {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-checklist li {
    position: relative;
    min-height: 100%;
    padding: 68px 18px 20px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .06));
    color: rgba(255, 255, 255, .88);
    font-size: 15px;
    line-height: 1.42;
    backdrop-filter: blur(2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
}

.contact-checklist li::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 18px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
}

.contact-checklist li::after {
    content: "";
    position: absolute;
    top: 24px;
    left: 42px;
    right: 18px;
    height: 1px;
    background: rgba(255, 255, 255, .2);
}

.contact-note {
    max-width: 1080px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text);
    box-shadow: none;
}

.contact-note h2 {
    max-width: 780px;
    margin: 0 0 22px;
    color: #000000;
    font-size: clamp(32px, 4.4vw, 52px);
    line-height: 1.04;
}

.contact-note p {
    max-width: 940px;
    margin: 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.55;
}

.contact-cta-section {
    padding-bottom: 70px;
}

.contact-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
}

.contact-cta .actions {
    justify-content: flex-end;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.social-links a {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    transition: transform .2s;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.social-links img {
    width: 64px;
    height: 64px;
    display: block;
    margin-bottom: 20px;
    object-fit: contain;
}

.map-frame {
    min-height: 400px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
    border: 0;
}

.map-frame [hidden] {
    display: none;
}

.map-consent-placeholder {
    min-height: inherit;
    display: grid;
    place-content: center;
    gap: 10px;
    padding: 32px;
    background: rgba(255, 255, 255, .9);
    color: var(--text);
    text-align: center;
}

.map-consent-placeholder strong {
    font: 400 28px / 1.2 "Lora", "Georgia", serif;
}

.map-consent-placeholder p {
    max-width: 520px;
    color: var(--muted);
}

.delivery-image {
    width: min(100%, 1024px);
    display: block;
    margin: 24px auto;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.section {
    padding: 64px 0 34px;
}

.section-compact {
    padding: 20px 0 0;
}

.product-detail-section {
    padding: calc(92px + var(--product-detail-page-gap)) 0 var(--product-detail-page-gap);
}

main:has(.product-detail-section) {
    padding-bottom: 0;
}

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: none;
    padding: 24px;
}

.form-consent {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.form-consent a {
    color: var(--accent);
    font-weight: 700;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.muted {
    color: var(--muted);
}

.price {
    margin: 12px 0 20px;
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.rent-price-note {
    margin: 0 0 4px;
    color: var(--accent);
    font-weight: 700;
}

.rent-price-note strong {
    color: #000000;
}

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 22px;
    border: 1px solid var(--plum-solid);
    border-radius: var(--radius);
    background: var(--plum-solid);
    color: #ffffff;
    font: 700 15px / 1.2 "Roboto", "Helvetica", sans-serif;
    text-align: center;
    text-decoration: none;
    overflow-wrap: anywhere;
    white-space: normal;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, opacity .2s;
}

.button:hover,
button:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

.button-light {
    background: transparent;
    color: var(--accent);
    border-color: currentColor;
}

.button-light:hover {
    background: var(--accent);
    color: #ffffff;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.message-area:empty {
    display: none;
}

[aria-busy="true"] {
    pointer-events: none;
    opacity: .72;
}

.advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 32px;
    counter-reset: advantage-counter;
}

.testimonials {
    display: grid;
    gap: 24px;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 186px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding: 24px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--shadow-soft);
}

.testimonial-card img {
    width: 186px;
    height: 245px;
    display: block;
    object-fit: cover;
}

.testimonial-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card strong {
    margin-top: 16px;
    font-size: 18px;
}

.testimonial-card span {
    color: var(--muted);
}

.testimonial-card-text {
    grid-template-columns: 1fr;
    padding-left: 234px;
}

.advantage-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    padding: 22px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 4px 5px #cccccc;
    counter-increment: advantage-counter;
}

.advantage-card::before {
    content: "0" counter(advantage-counter);
    position: absolute;
    right: 14px;
    bottom: -12px;
    color: var(--accent);
    font-size: 96px;
    line-height: .95;
    font-weight: 700;
    opacity: .24;
}

.advantage-number {
    display: none;
}

.advantage-card h3 {
    position: relative;
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.2;
}

.advantage-card .muted {
    position: relative;
}

.cart-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    border-color: #cccccc;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.category-filter a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .9);
    color: var(--text);
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

.category-filter a:hover,
.category-filter a.is-active {
    border-color: var(--plum-solid);
    background: var(--plum-solid);
    color: #ffffff;
}

.equipment-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    padding: 0 0 34px;
    transition: transform .25s, box-shadow .25s;
}

.equipment-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

@media (min-width: 950px) and (hover: hover) and (pointer: fine) {
    .equipment-card {
        cursor: pointer;
    }

    .equipment-card .actions .button {
        opacity: 0;
        transform: translateY(8px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .equipment-card .actions .button:not(.equipment-card-details) {
        position: relative;
        z-index: 2;
        pointer-events: none;
    }

    .equipment-card:hover .actions .button,
    .equipment-card:focus-within .actions .button {
        opacity: 1;
        transform: translateY(0);
    }

    .equipment-card:hover .actions .button:not(.equipment-card-details),
    .equipment-card:focus-within .actions .button:not(.equipment-card-details) {
        pointer-events: auto;
    }

.equipment-card:focus-within {
        box-shadow: var(--shadow);
    }
}

.equipment-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 28px;
    background: #eeeeee;
    border-top: 1px solid #dddddd;
}

.equipment-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f4f4f4;
}

.equipment-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.equipment-image--placeholder {
    object-fit: cover;
}

.product-media img.equipment-image--placeholder,
.recommendation-image img.equipment-image--placeholder {
    padding: 0;
    object-fit: cover;
}

.equipment-image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, .35);
    font-weight: 700;
    text-transform: uppercase;
}

.equipment-content {
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px 18px 18px;
}

.equipment-content h2,
.equipment-content h3,
h3 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.25;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.equipment-content .category-pill {
    margin-bottom: 10px;
}

.equipment-content .muted {
    margin-bottom: 10px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.equipment-content .price {
    margin-top: auto;
    margin-bottom: 8px;
    overflow-wrap: anywhere;
}

.equipment-content .actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.equipment-content .actions .button {
    width: 100%;
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
}

.equipment-content .actions .button:only-child {
    grid-column: 1 / -1;
}

.recommendations {
    margin-top: 34px;
}

.recommendations h2 {
    margin: 0 0 18px;
    font: 400 28px / 1.2 "Lora", "Georgia", serif;
}

.recommendation-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.recommendation-card {
    overflow: hidden;
    padding: 0;
}

.recommendation-image {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    background: #eeeeee;
    color: rgba(0, 0, 0, .35);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.recommendation-image img {
    width: 100%;
    height: 100%;
    display: block;
    padding: 8px;
    object-fit: contain;
    object-position: center;
}

.recommendation-content {
    padding: 12px;
}

.recommendation-content .category-pill {
    margin-bottom: 8px;
    padding: 3px 7px;
    font-size: 11px;
}

.recommendation-content h3 {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.2;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.recommendation-content .price {
    margin: 0 0 10px;
    font-size: 16px;
}

.recommendation-content .button {
    width: 100%;
    min-height: 36px;
    padding: 8px 10px;
    font-size: 12px;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.article-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
}

.article-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--surface-soft);
}

.article-card-image img,
.article-card-image video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.article-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
}

.article-card h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
}

.article-card h2 a {
    color: inherit;
}

.article-card .button {
    margin-top: auto;
}

.article-layout {
    max-width: 920px;
}

.article-cover {
    display: block;
    width: 100%;
    max-height: 520px;
    margin-bottom: 34px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
}

.news-detail-media {
    width: 100%;
    aspect-ratio: 9 / 16;
    max-height: none;
    margin-right: auto;
    margin-left: auto;
    object-fit: contain;
    background: #0b0b0d;
}

.news-detail-video-frame {
    position: relative;
    width: 100%;
    margin-bottom: 34px;
}

.news-detail-video-frame .news-detail-media {
    margin-bottom: 0;
}

.news-detail-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 104px;
    height: 104px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, .9);
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(20, 23, 33, .38);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.news-detail-play:hover {
    background: #6f1748;
    box-shadow: 0 20px 48px rgba(20, 23, 33, .45);
    transform: translate(-50%, -50%) scale(1.06);
}

.news-detail-play:active {
    transform: translate(-50%, -50%) scale(.98);
}

.news-detail-play:focus-visible {
    outline: 3px solid rgba(139, 30, 90, .4);
    outline-offset: 4px;
}

.news-detail-play-icon {
    width: 0;
    height: 0;
    margin-left: 8px;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 25px solid currentColor;
}

.news-detail-video-frame.is-playing .news-detail-play,
.news-detail-video-frame.has-started .news-detail-play,
.news-detail-video-frame.has-error .news-detail-play {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.news-detail-layout {
    display: grid;
    grid-template-columns: minmax(300px, 440px) minmax(0, 1fr);
    gap: clamp(36px, 6vw, 84px);
    align-items: start;
}

.news-detail-media-column {
    min-width: 0;
}

.news-detail-copy {
    min-width: 0;
    padding-top: 12px;
}

@media (max-width: 760px) {
    .hero.legal-policy-hero h1 {
        font-size: clamp(28px, 8.4vw, 36px);
        line-height: 1.12;
    }
}

@media (max-width: 760px) {
    .news-detail-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .news-detail-media-column {
        width: min(100%, 460px);
        margin: 0 auto;
    }

    .news-detail-copy {
        padding-top: 0;
    }

    .news-detail-play {
        width: 84px;
        height: 84px;
    }

    .news-detail-play-icon {
        margin-left: 6px;
        border-top-width: 13px;
        border-bottom-width: 13px;
        border-left-width: 21px;
    }
}

.article-body {
    color: var(--text);
    font-size: 19px;
    line-height: 1.75;
}

.article-body p {
    margin: 0 0 22px;
}

.article-body h2 {
    margin: 38px 0 16px;
    color: #000000;
    font: 400 34px / 1.2 "Lora", "Georgia", serif;
}

.article-body h3 {
    margin: 30px 0 12px;
    color: #000000;
    font-size: 24px;
    line-height: 1.3;
}

.article-body ul,
.article-body ol {
    margin: 0 0 24px 24px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body blockquote {
    margin: 30px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--accent);
    background: #f7f4f6;
    font-size: 21px;
    line-height: 1.55;
}

.article-body figure {
    margin: 32px 0;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.article-body figcaption {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

.article-body hr {
    margin: 34px 0;
    border: 0;
    border-top: 1px solid var(--line);
}

.article-body table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
}

.article-body th,
.article-body td {
    padding: 12px;
    border: 1px solid var(--line);
    text-align: left;
}

.article-body .article-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin: 32px 0;
}

.article-body .article-note {
    margin: 28px 0;
    padding: 18px 22px;
    border: 1px solid #ead7e2;
    border-radius: var(--radius);
    background: #fbf7fa;
}

/* Shared site footer */
.footer {
    position: relative;
    margin-top: auto;
    padding-top: clamp(64px, 6vw, 96px);
    overflow: hidden;
    color: #ffffff;
    font-size: 14px;
    background: #201d2a;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        var(--blueprint-dark),
        radial-gradient(circle at 18% 18%, rgba(139, 30, 90, .34), transparent 36%),
        radial-gradient(circle at 78% 82%, rgba(33, 47, 72, .38), transparent 42%),
        radial-gradient(farthest-corner at bottom, var(--plum) 25%, var(--ink));
    clip-path: none;
    z-index: 0;
}

.footer::after {
    content: none;
}

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    gap: clamp(28px, 5vw, 68px);
    padding-bottom: 26px;
}

.footer p,
.footer a,
.footer h2,
.footer strong,
.footer span {
    color: #ffffff;
}

.footer-brand strong,
.footer-brand span,
.footer-brand p {
    display: block;
}

.footer-brand strong {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.25;
}

.footer-brand span {
    max-width: 300px;
    color: rgba(255, 255, 255, .74);
    line-height: 1.45;
}

.footer-brand p,
.footer-links p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .74);
}

.footer-links {
    display: grid;
    grid-template-columns: minmax(180px, 1.15fr) minmax(140px, .8fr) minmax(140px, .75fr) minmax(160px, .9fr);
    gap: clamp(20px, 3vw, 34px);
}

.footer-links h2 {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .52);
    font: 700 12px / 1.2 Arial, "Helvetica Neue", Helvetica, sans-serif;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.footer a:hover {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    padding-top: 18px;
    padding-bottom: 28px;
    border-top: 1px solid rgba(255, 255, 255, .16);
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

@media (max-width: 949px) {
    .footer-grid,
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        gap: 28px;
    }

    .footer-links {
        gap: 22px;
    }
}
