:root {
    --content-max: 1125px;
    --ink: #000;
    --body-copy: #252525;
    --footer: #202020;
    --font-size-body: clamp(11px, 0.8671875vw, 17px);
    --font-size-title: clamp(18px, 1.4140625vw, 27px);
    --font-size-nav: clamp(10px, 0.7578125vw, 15px);
    --font-size-small: clamp(11px, 0.8671875vw, 17px);
    --line-height-body: clamp(15px, 1.1953125vw, 23px);
    --line-height-title: 1.2;
    --line-height-nav: 1.2;
    --line-height-small: 1.5;
    --font-sans:
            'Century Gothic', 'Segoe UI', 'Helvetica Neue', Arial,
            sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

[id] {
    scroll-margin-top: clamp(80px, 6.25vw, 160px);
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: #fff;
    font-family: var(--font-sans);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    letter-spacing: 0;
}

button,
input,
select,
textarea {
    font: inherit;
    letter-spacing: 0;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

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

html, body, div, ul, li, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, form, input, textarea, th, td, select {
    margin: 0;
    padding: 0;
}

body > section,
.site-header,
.site-footer {
    width: 100vw;
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.content-x {
    width: calc(100% - 32px);
    max-width: var(--content-max);
    margin-inline: auto;
}

@media (min-width: 1280px) {
    .content-x {
        width: var(--content-max);
    }
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: clamp(80px, 6.25vw, 160px);
    background: #fff;
}

.site-header__inner {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 2560px;
    height: 100%;
    margin-inline: auto;
    padding-inline: clamp(24px, 13.0859375vw, 335px)
    clamp(24px, 12.890625vw, 330px);
    align-items: center;
    justify-content: space-between;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 1.5625vw, 40px);
    font-size: var(--font-size-nav);
    font-weight: 700;
    line-height: var(--line-height-nav);
}

.site-nav__item {
    position: relative;
}

.site-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: clamp(4px, 0.3125vw, 8px);
    padding-block: 12px;
    transition: opacity 180ms ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
    opacity: 0.58;
}

.site-nav__link:focus-visible,
.site-language:focus-visible {
    outline: 0;
    text-decoration: underline;
    text-underline-offset: clamp(3px, 0.234375vw, 6px);
}

.site-nav__link.is-active {
    opacity: 1;
}

.site-arrow {
    scale: 0.8;
    position: relative;
    display: inline-block;
    width: clamp(8px, 0.5078125vw, 13px);
    height: clamp(5px, 0.3125vw, 8px);
    margin: 0;
    flex: 0 0 auto;
    transform: none;
    transform-origin: center;
    transition: transform 180ms ease;
}

.site-arrow::before,
.site-arrow::after {
    position: absolute;
    top: -1px;
    width: 79.2%;
    height: 1px;
    background: currentColor;
    content: '';
}

.site-arrow::before {
    left: 0;
    transform: rotate(51deg);
    transform-origin: left center;
}

.site-arrow::after {
    right: 0;
    transform: rotate(-51deg);
    transform-origin: right center;
}

[aria-expanded='true'] > .site-arrow {
    transform: rotate(180deg);
}

.site-header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(82px, 6.3671875vw, 163px);
    transform: translate(-50%, -50%);
}

.site-header__logo img {
    width: 100%;
    height: auto;
}

.site-header__tools {
    display: flex;
    align-items: center;
    gap: clamp(24px, 1.875vw, 48px);
}

.site-search {
    display: flex;
    width: clamp(99px, 7.734375vw, 198px);
    height: clamp(16px, 1.25vw, 32px);
    padding: 0 clamp(8px, 0.625vw, 16px);
    align-items: center;
    gap: clamp(4px, 0.3125vw, 8px);
    border: 1px solid #000;
    border-radius: 999px;
    background: transparent;
    cursor: text;
}

.site-search__input {
    min-width: 0;
    height: 100%;
    flex: 1;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #000;
    font-size: var(--font-size-small);
    line-height: var(--line-height-small);
}

.site-search__input::-webkit-search-cancel-button {
    display: none;
}

.site-search__submit {
    display: flex;
    width: clamp(16px, 1.25vw, 32px);
    height: 100%;
    flex: 0 0 auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.site-search__submit img {
    width: clamp(11px, 0.8203125vw, 21px);
    height: clamp(11px, 0.8203125vw, 21px);
}

.site-search:focus-within {
    border-color: #000;
}

.site-language {
    display: inline-flex;
    padding: 8px 0;
    align-items: center;
    gap: clamp(4px, 0.3125vw, 8px);
    border: 0;
    background: transparent;
    font-size: var(--font-size-nav);
    font-weight: 700;
    line-height: var(--line-height-nav);
    cursor: pointer;
}

.site-mega-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 10;
    height: clamp(265px, 16.40625vw, 420px);
    border-top: 1px solid #d9d9d9;
    background: #fff;
}

.site-mega-menu[hidden] {
    display: none;
}

.site-mega-menu__panel {
    position: absolute;
    top: clamp(54px, 3.359375vw, 86px);
    display: grid;
    gap: clamp(40px, 2.5vw, 64px);
    font-size: var(--font-size-nav);
    font-weight: 500;
    line-height: var(--line-height-nav);
}

.site-mega-menu__panel[hidden] {
    display: none;
}

.site-mega-menu__panel--rd {
    left: clamp(255px, 28.28125vw, 724px);
}

.site-mega-menu__panel--language {
    right: clamp(24px, 12.890625vw, 330px);
    min-width: clamp(90px, 7.03125vw, 180px);
}

.site-mega-menu__panel a {
    transition: opacity 180ms ease;
}

.site-mega-menu__panel a:hover,
.site-mega-menu__panel a:focus-visible {
    opacity: 0.55;
}

.site-menu-toggle,
.site-mobile-menu {
    display: none;
}

/* Footer */
.site-footer {
    min-height: clamp(163px, 12.734375vw, 245px);
    background: var(--footer);
    color: #fff;
}

.site-footer__inner {
    padding: clamp(49px, 3.828125vw, 74px) 0 clamp(43px, 3.359375vw, 65px);
}

.site-footer__top,
.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer__logo {
    width: clamp(184px, 15.625vw, 400px);
    height: clamp(12px, 0.9375vw, 24px);
    object-fit: contain;
    object-position: left center;
}

.site-footer__nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 1.25vw, 32px);
    font-size: var(--font-size-nav);
    line-height: var(--line-height-nav);
}

.site-footer__nav a {
    transition: opacity 180ms ease;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
    opacity: 0.65;
}

.site-footer__rule {
    height: 1px;
    margin-top: clamp(20px, 1.5625vw, 30px);
    background: rgba(255, 255, 255, 0.82);
}

.site-footer__bottom {
    margin-top: clamp(21px, 1.640625vw, 32px);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-small);
    line-height: var(--line-height-small);
}

.site-back-top {
    position: fixed;
    right: clamp(16px, 1.5625vw, 40px);
    bottom: clamp(16px, 1.5625vw, 40px);
    z-index: 950;
    width: 29px;
    height: 29px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition:
            opacity 180ms ease,
            visibility 180ms ease,
            transform 180ms ease;
}

.site-back-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.site-back-top img {
    width: 100%;
    height: 100%;
}

.site-back-top:focus-visible {
    outline: 1px solid #000;
    outline-offset: 4px;
}

/* Shared controls */
.banner-dot {
    width: clamp(4px, 0.3125vw, 8px);
    height: clamp(4px, 0.3125vw, 8px);
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: #828282;
    cursor: pointer;
}

.banner-dot.is-active {
    width: clamp(16px, 1.25vw, 32px);
    border-radius: 4px;
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transform: translateY(-4px);
    transition:
            max-height 320ms ease,
            padding-bottom 320ms ease,
            opacity 220ms ease,
            transform 320ms ease;
}

.accordion-item.is-open .accordion-panel {
    display: block;
    max-height: 240px;
    padding-bottom: clamp(16px, 1.25vw, 32px);
    opacity: 1;
    transform: translateY(0);
}

.accordion-icon-v {
    opacity: 1;
    transition: opacity 220ms ease;
}

.accordion-icon {
    position: relative;
    display: block;
    flex: 0 0 auto;
}

.accordion-icon-h,
.accordion-icon-v {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    background: #000;
    transform: translate(-50%, -50%);
}

.accordion-icon-h {
    width: 100%;
    height: 1px;
}

.accordion-icon-v {
    width: 1px;
    height: 100%;
}

.accordion-item.is-open .accordion-icon-v {
    opacity: 0;
}

/* Home */
.home-hero {
    position: relative;
    height: clamp(585px, 45.703125vw, 1170px);
    overflow: hidden;
    background: #cdcdcd;
}

.home-hero__slides,
.home-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero__image {
    max-width: none;
    object-fit: cover;
    opacity: 0;
    transition: opacity 700ms ease;
}

.home-hero__image.is-active {
    opacity: 1;
}

.home-hero__dots {
    position: absolute;
    bottom: clamp(41px, 3.203125vw, 62px);
    left: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: clamp(9px, 0.703125vw, 14px);
    transform: translateX(-50%);
}

.home-about {
    padding-block: clamp(55px, 4.296875vw, 110px) 0;
}

.home-about__inner {
    position: relative;
    display: block;
    height: clamp(325px, 25.3515625vw, 649px);
}

.home-about__copy {
    position: absolute;
    top: clamp(71px, 5.5078125vw, 141px);
    left: 0;
    z-index: 2;
}

.home-about__title {
    margin: 0;
    font-size: var(--font-size-title);
    font-weight: 700;
    line-height: var(--line-height-title);
}

.home-about__rule {
    width: clamp(25px, 1.953125vw, 50px);
    height: clamp(3px, 0.234375vw, 6px);
    margin-top: clamp(20px, 1.5625vw, 40px);
    background: #000;
}

.home-about__body {
    width: clamp(412px, 32.1484375vw, 823px);
    max-width: none;
    margin-top: clamp(26px, 1.9921875vw, 51px);
    color: var(--body-copy);
    font-size: var(--font-size-body);
    font-weight: 500;
    line-height: var(--line-height-body);
}

.home-about__body p {
    margin: 0;
}

.home-about__body p + p {
    margin-top: clamp(16px, 1.25vw, 32px);
}

.home-about__lead {
    font-weight: 700;
}

.home-about__image {
    position: absolute;
    top: 0;
    left: clamp(355px, 27.6953125vw, 709px);
    width: clamp(584px, 45.625vw, 1168px);
    height: clamp(325px, 25.3515625vw, 649px);
    max-width: none;
    object-fit: cover;
}

.home-about__more {
    top: clamp(6px, 0.46875vw, 12px);
    right: auto;
    left: clamp(830px, 64.84375vw, 1660px);
    width: clamp(20px, 1.5234375vw, 39px);
    height: clamp(20px, 1.5234375vw, 39px);
}

.home-about__more img {
    width: 100%;
    height: 100%;
}

.home-products {
    padding-top: clamp(98px, 7.65625vw, 147px);
    padding-bottom: clamp(100px, 9.375vw, 180px);
}

.home-products__title {
    display: block;
    width: 100%;
    margin: 0;
    font-size: var(--font-size-title);
    font-weight: 700;
    line-height: clamp(17px, 1.328125vw, 26px);
    text-align: center;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: clamp(4px, 0.3125vw, 8px);
}

.home-products__grid {
    display: grid;
    margin-top: clamp(51px, 3.984375vw, 77px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: clamp(35px, 2.734375vw, 53px);
}

@media (min-width: 901px) {
    .home-products__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.home-product {
    position: relative;
    width: clamp(244px, 19.0234375vw, 487px);
    height: clamp(399px, 31.1328125vw, 612px);
    text-align: center;
}

.home-product__image {
    width: clamp(244px, 19.0234375vw, 487px);
    height: clamp(275px, 21.484375vw, 550px);
    object-fit: cover;
}

.home-product__copy {
    position: absolute;
    width: 100%;
    max-width: none;
    top: clamp(304px, 23.7109375vw, 607px);
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    color: #000;
    font-size: var(--font-size-small);
    font-weight: 500;
    line-height: var(--line-height-small);
    text-align: center;
    white-space: normal;
}

.home-product__line {
    display: block;
    width: 100%;
    line-height: var(--line-height-small);
    text-align: center;
}

.home-product__name {
    font-size: var(--font-size-body);
    font-weight: 700;
    line-height: var(--line-height-body);
    white-space: normal;
}

.home-product__description {
    overflow: hidden;
}

.home-product__description,
.home-product__line:last-child {
    font-size: 12px;
}

.home-product__line:last-child {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.home-product__button,
.home-products__view-all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: var(--font-size-small);
    font-weight: 500;
    line-height: var(--line-height-small);
    transition:
            background-color 180ms ease,
            color 180ms ease;
}

.home-product__button:hover,
.home-product__button:focus-visible,
.home-products__view-all-link:hover,
.home-products__view-all-link:focus-visible {
    border: 1px solid #303030;
    background-color: #fff;
    color: #303030;
}

.home-product__button {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: clamp(28px, 2.1484375vw, 41px);
    margin: 0;
}

.home-products__view-all {
    display: flex;
    margin-top: clamp(70px, 5.4296875vw, 139px);
    justify-content: center;
}

.home-products__view-all-link {
    width: clamp(176px, 13.7109375vw, 263px);
    height: clamp(27px, 2.109375vw, 41px);
    padding: 0;
    border: 0;
    cursor: pointer;
}

.home-products__view-all[hidden] {
    display: none;
}

@media (min-width: 1280px) {
    .home-about__body {
        width: 617px;
    }

    .home-about__image {
        left: 532px;
    }

    .home-product {
        width: 100%;
        height: 612px;
    }

    .home-product__image {
        width: 100%;
        height: 413px;
    }

    .home-product__copy {
        top: 455px;
    }

    .home-product__name {
        font-size: 17px;
        line-height: 23px;
    }

    .home-product__button {
        height: 41px;
    }
}

/* Product detail */
.product-detail {
    min-height: clamp(673px, 52.5390625vw, 1345px);
    /* margin-bottom: clamp(253px, 19.765625vw, 506px); */
    padding-block: clamp(38px, 2.9296875vw, 75px) clamp(53px, 4.1015625vw, 105px);
    background: #f2f2f2;
}

.product-layout {
    display: grid;
    width: min(74.21875vw, 1900px);
    max-width: 1900px;
    margin-inline: auto;
    padding: 0;
    grid-template-columns: clamp(470px, 36.71875vw, 940px) clamp(
      361px,
      28.203125vw,
      722px
    );
    gap: clamp(119px, 9.296875vw, 238px);
}

.product-richhtml {
    width: min(74.21875vw, 1900px);
    max-width: 1900px;
    margin-inline: auto;
    padding: 0;
    padding-block: clamp(38px, 2.9296875vw, 75px) clamp(53px, 4.1015625vw, 105px);
    text-align: center;
}

.product-richhtml img {
    margin-inline: auto;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(2, clamp(230px, 17.96875vw, 460px));
    gap: clamp(13px, 0.9765625vw, 25px) clamp(10px, 0.78125vw, 20px);
}

.product-gallery__image {
    width: clamp(230px, 17.96875vw, 460px);
    height: clamp(285px, 22.265625vw, 570px);
    object-fit: cover;
}

.product-info {
    padding-top: clamp(75px, 5.8203125vw, 149px);
}

.product-info__title {
    margin: 0;
    color: #0f0f0f;
    font-size: clamp(18px, 1.4140625vw, 36px);
    font-weight: 550;
    line-height: clamp(17px, 1.2890625vw, 33px);
}

.product-info__size {
    margin: clamp(24px, 1.8359375vw, 47px) 0 0;
    font-size: clamp(11px, 0.8671875vw, 22px);
    font-weight: 550;
    line-height: clamp(11px, 0.8203125vw, 21px);
}

.product-info__description {
    width: clamp(359px, 28.0078125vw, 717px);
    margin-top: clamp(28px, 2.1875vw, 56px);
    color: #000;
    font-size: clamp(10px, 0.7578125vw, 19px);
    line-height: clamp(14px, 1.0859375vw, 28px);
}

.product-info__description p {
    margin: 0;
}

.product-info__description p + p {
    margin-top: clamp(16px, 1.25vw, 32px);
}

.product-info__description strong {
    font-weight: 500;
}

.product-accordion {
    width: clamp(361px, 28.203125vw, 722px);
    margin-top: clamp(50px, 3.90625vw, 100px);
    border-top: 1px solid rgba(23, 23, 23, 0.7);
}

.product-accordion .accordion-item {
    border-bottom: 1px solid rgba(23, 23, 23, 0.7);
}

.product-accordion__trigger {
    display: flex;
    width: 100%;
    height: clamp(29px, 2.2265625vw, 57px);
    padding: 0 clamp(5px, 0.390625vw, 10px);
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: transparent;
    font-size: clamp(11px, 0.8671875vw, 22px);
    line-height: 1;
    text-align: left;
    cursor: pointer;
}

.product-accordion__trigger > span:last-child {
    width: clamp(9px, 0.703125vw, 18px);
    height: clamp(9px, 0.703125vw, 18px);
}

.product-accordion__panel {
    padding-inline: clamp(5px, 0.390625vw, 10px);
    color: var(--body-copy);
    font-size: clamp(10px, 0.7578125vw, 19px);
    line-height: clamp(14px, 1.0859375vw, 28px);
}

/* Brand story */
.story-hero {
    position: relative;
    height: clamp(585px, 45.703125vw, 1170px);
    overflow: hidden;
    background: #000;
}

.story-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.story-hero__brand {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-hero__logo {
    width: clamp(446px, 34.84375vw, 892px);
    height: clamp(26px, 2.03125vw, 52px);
    max-width: none;
    object-fit: contain;
}

.story-content {
    position: relative;
    height: clamp(585px, 45.703125vw, 1170px);
    overflow: hidden;
    background: #f7f7f7;
}

.story-content__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    opacity: 0.4;
}

.story-content__inner {
    position: relative;
    height: 100%;
    padding-block: clamp(143px, 11.171875vw, 286px) 0;
}

.story-content__heading {
    display: block;
}

.story-content__title {
    margin: 0;
    font-size: clamp(18px, 1.4140625vw, 36px);
    font-weight: 700;
    line-height: clamp(14px, 1.0546875vw, 27px);
}

.story-content__symbol {
    position: absolute;
    top: clamp(122px, 9.53125vw, 244px);
    left: clamp(693px, 54.1015625vw, 1385px);
    width: clamp(55px, 4.296875vw, 110px);
    height: clamp(56px, 4.3359375vw, 111px);
    max-width: none;
    object-fit: contain;
}

.story-content__copy {
    width: clamp(749px, 58.4765625vw, 1497px);
    max-width: none;
    margin-top: clamp(68px, 5.3125vw, 136px);
    color: #000;
    font-size: clamp(11px, 0.8671875vw, 22px);
    line-height: clamp(15px, 1.1953125vw, 31px);
    text-align: justify;
}

.story-content__copy p {
    margin: 0;
}

.story-content__copy p + p {
    margin-top: clamp(20px, 1.5625vw, 40px);
}

/* R&D */
.rd-hero {
    position: relative;
    height: clamp(483px, 37.734375vw, 966px);
    overflow: hidden;
    background: #f3f3f3;
}

.rd-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: right center;
}

.rd-hero__inner {
    position: relative;
    display: block;
    height: 100%;
    padding: clamp(153px, 11.9140625vw, 305px) 0 0;
}

.rd-hero__title,
.rd-section-title {
    margin: 0;
    font-size: clamp(28px, 2.171875vw, 56px);
    font-weight: 500;
    line-height: clamp(35px, 2.7109375vw, 69px);
}

.rd-section-title {
    font-weight: 700;
}

.rd-hero__title {
    width: clamp(261px, 20.3515625vw, 521px);
    max-width: none;
}

.rd-hero__rule {
    width: clamp(25px, 1.953125vw, 50px);
    height: clamp(3px, 0.234375vw, 6px);
    margin-top: clamp(26px, 2.03125vw, 52px);
    background: #000;
}

.rd-hero__links {
    display: grid;
    gap: clamp(3px, 0.234375vw, 6px);
    margin: clamp(26px, 2.03125vw, 52px) -8px 0;
    padding: 0;
    font-size: clamp(18px, 1.4140625vw, 36px);
    font-weight: 700;
    line-height: clamp(25px, 1.953125vw, 50px);
    list-style: none;
}

.rd-hero__links a {
    transition: opacity 180ms ease;
}

.rd-hero__links a:hover,
.rd-hero__links a:focus-visible {
    opacity: 0.55;
}

.rd-philosophy {
    padding-top: clamp(120px, 9.375vw, 240px);
}

.rd-section-marker {
    width: clamp(15px, 1.171875vw, 30px);
    height: clamp(15px, 1.171875vw, 30px);
    margin-top: clamp(26px, 2.015625vw, 52px);
}

.rd-golden-card {
    display: grid;
    width: 100%;
    height: clamp(196px, 15.3125vw, 392px);
    margin-top: clamp(29px, 2.265625vw, 44px);
    padding: clamp(26px, 2.03125vw, 52px) clamp(40px, 3.125vw, 80px);
    align-items: center;
    grid-template-columns: 1fr clamp(215px, 16.796875vw, 430px);
    gap: clamp(40px, 3.125vw, 80px);
    background: #f2f2f2;
}

.rd-golden-card__title,
.rd-innovation__title,
.rd-joint__title,
.rd-technologies__title {
    margin: 0;
    font-size: clamp(18px, 1.4140625vw, 36px);
    font-weight: 500;
    line-height: clamp(25px, 1.953125vw, 50px);
}

.rd-golden-card__title,
.rd-innovation__title,
.rd-joint__title,
.rd-technologies__title {
    font-weight: 700;
}

.rd-golden-card__title--outside {
    margin-top: clamp(39px, 3.046875vw, 59px);
}

.rd-golden-card__copy {
    width: clamp(426px, 33.28125vw, 852px);
    text-align: justify;
    max-width: none;
    margin-top: clamp(24px, 1.875vw, 48px);
    color: var(--body-copy);
    font-size: clamp(11px, 0.8671875vw, 22px);
    line-height: clamp(15px, 1.1953125vw, 31px);
}

.rd-golden-card__image {
    width: clamp(215px, 16.796875vw, 430px);
    height: clamp(153px, 11.953125vw, 306px);
    max-width: none;
    object-fit: contain;
}

.rd-principles {
    padding-top: clamp(42px, 3.2421875vw, 83px);
}

.rd-core-grid {
    display: grid;
    grid-template-columns: repeat(2, clamp(370px, 28.92578125vw, 741px));
    gap: clamp(10px, 0.78125vw, 20px);
}

.rd-core-grid > div {
    display: flex;
    flex-direction: column;
}

.rd-core-grid__title,
.rd-essentials__title {
    margin: 0;
    font-size: clamp(25px, 1.953125vw, 50px);
    font-weight: 700;
    line-height: clamp(25px, 1.953125vw, 50px);
}

.rd-core-grid__subtitle {
    flex: 1 1 auto;
    min-height: clamp(26px, 2.03125vw, 52px);
    margin: clamp(12px, 0.8984375vw, 18px) 0 0;
    color: var(--body-copy);
    font-size: clamp(11px, 0.8671875vw, 22px);
    line-height: clamp(15px, 1.1953125vw, 31px);
}

.rd-section-index {
    font-style: italic;
}

.rd-core-grid__image {
    width: clamp(370px, 28.9453125vw, 741px);
    height: clamp(214px, 16.71875vw, 428px);
    margin-top: clamp(34px, 2.65625vw, 51px);
    max-width: none;
    object-fit: cover;
}

.rd-essentials {
    margin-top: clamp(42px, 3.28125vw, 84px);
}

.rd-essentials__rule {
    height: 1px;
    margin-top: clamp(33px, 2.5390625vw, 65px);
    background: #000;
}

.rd-essentials__grid {
    display: grid;
    margin-top: clamp(40px, 3.125vw, 80px);
    grid-template-columns: repeat(3, clamp(207px, 16.328125vw, 418px));
    justify-content: space-between;
    gap: 0;
}

.rd-essentials__grid h4 {
    min-height: clamp(30px, 2.3046875vw, 59px);
    margin: 0;
    color: var(--body-copy);
    font-size: clamp(14px, 1.0859375vw, 28px);
    font-weight: 550;
    line-height: clamp(15px, 1.1953125vw, 31px);
}

.rd-essentials__grid > div:nth-child(1) h4 {
    max-width: clamp(157px, 12.265625vw, 314px);
}
.rd-essentials__grid > div:nth-child(2) h4 {
    max-width: clamp(199px, 15.546875vw, 398px);
}
.rd-essentials__grid > div:nth-child(3) h4 {
    max-width: clamp(194px, 15.15625vw, 388px);
}

.rd-essentials__grid .essentials {
    margin-top: clamp(36px, 2.8125vw, 54px);
    color: var(--body-copy);
    font-size: clamp(11px, 0.8671875vw, 22px);
    font-weight: 500;
    line-height: clamp(15px, 1.1953125vw, 31px);
}

.rd-essentials__grid .essentials p {
    margin: 0;
}

.rd-essentials__grid .essentials p + p {
    margin-top: clamp(14px, 1.09375vw, 28px);
}

.rd-essentials__grid .essentials strong {
    display: block;
    margin-bottom: clamp(4px, 0.3125vw, 8px);
}

.rd-innovation {
    padding-top: clamp(90px, 7.03125vw, 135px);
}

.rd-innovation__title {
    margin-top: clamp(40px, 3.0859375vw, 79px);
}

.rd-innovation__image-wrap {
    position: relative;
    width: 100%;
    height: clamp(387px, 30.234375vw, 774px);
    margin-top: clamp(29px, 2.265625vw, 58px);
    overflow: hidden;
}

.rd-innovation__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.rd-innovation__overlay {
    position: absolute;
    top: clamp(107px, 8.3203125vw, 213px);
    left: clamp(48px, 3.7109375vw, 95px);
    width: clamp(246px, 19.21875vw, 492px);
    height: clamp(159px, 12.3828125vw, 317px);
    max-width: none;
    object-fit: contain;
}

.rd-joint {
    padding-top: clamp(77px, 5.9765625vw, 153px);
}

.rd-joint__inner {
    display: grid;
    align-items: start;
    grid-template-columns: clamp(276px, 21.5625vw, 552px) clamp(
      426px,
      33.28125vw,
      852px
    );
    gap: clamp(50px, 3.90625vw, 100px);
}

.rd-joint__title {
    margin-top: clamp(5px, 0.390625vw, 10px);
}

.rd-joint__inner h4 {
    width: clamp(267px, 20.859375vw, 534px);
    max-width: none;
    margin: clamp(28px, 2.1875vw, 42px) 0 0;
    color: var(--body-copy);
    font-size: clamp(14px, 1.0859375vw, 28px);
    font-weight: 550;
    line-height: clamp(15px, 1.1953125vw, 31px);
}

.rd-joint__inner > div > div {
    width: clamp(276px, 21.5625vw, 552px);
    max-width: none;
    margin-top: clamp(37px, 2.890625vw, 56px);
    color: var(--body-copy);
    font-size: clamp(11px, 0.8671875vw, 22px);
    line-height: clamp(15px, 1.1953125vw, 31px);
}

.rd-joint__image {
    width: clamp(426px, 33.28125vw, 852px);
    height: clamp(266px, 20.78125vw, 532px);
    max-width: none;
    object-fit: cover;
}

.rd-technologies {
    padding-top: clamp(100px, 7.8125vw, 150px);
}

.rd-technologies__grid {
    display: flex;
    width: 166.666667%;
    margin-top: 0;
    flex-wrap: nowrap;
    gap: 0;
    transform: translateX(0);
    transition: transform 420ms ease;
}

.rd-technologies__carousel {
    position: relative;
    margin-top: clamp(63px, 4.921875vw, 126px);
    padding-inline: clamp(26px, 2.03125vw, 52px);
    overflow: hidden;
}

.rd-technologies__viewport {
    width: 100%;
    overflow: hidden;
}

.rd-technologies__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    width: clamp(23px, 1.796875vw, 46px);
    height: clamp(23px, 1.796875vw, 46px);
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    background: #000;
    cursor: pointer;
    transform: translateY(-50%);
}

.rd-technologies__nav img {
    width: clamp(5px, 0.390625vw, 10px);
    height: clamp(10px, 0.78125vw, 20px);
    object-fit: contain;
}

.rd-technologies__nav--prev {
    left: 0;
}

.rd-technologies__nav--next {
    right: 0;
}

.rd-technologies__nav:hover,
.rd-technologies__nav:focus-visible {
    background: #303030;
}

.rd-technologies__nav:disabled {
    cursor: default;
    opacity: 0.35;
}

.rd-technologies__grid article {
    width: 20%;
    flex: 0 0 20%;
    max-width: none;
    margin: 0;
    padding-inline: clamp(5px, 0.390625vw, 10px);
    text-align: center;
}

.rd-technologies__grid img {
    width: clamp(167px, 13.046875vw, 334px);
    height: clamp(167px, 13.046875vw, 334px);
    margin-inline: auto;
    border-radius: 50%;
}

.rd-technologies__grid h4 {
    height: clamp(17px, 1.328125vw, 34px);
    margin: clamp(20px, 1.5625vw, 40px) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--body-copy);
    font-size: clamp(14px, 1.0859375vw, 28px);
    font-weight: 550;
}

.rd-technologies__grid p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: clamp(12px, 0.9375vw, 24px) 0 0;
    color: var(--body-copy);
    font-size: clamp(11px, 0.8671875vw, 22px);
    line-height: clamp(15px, 1.1953125vw, 31px);
}

.rd-supply {
    padding-top: clamp(133px, 10.3515625vw, 265px);
    padding-bottom: clamp(121px, 9.4140625vw, 181px);
}

.rd-supply__lead {
    position: relative;
    display: block;
    height: clamp(249px, 19.453125vw, 498px);
    margin-top: clamp(-46px, -1.796875vw, -23px);
}

.rd-supply__lead > p {
    position: absolute;
    top: clamp(107px, 8.359375vw, 214px);
    left: clamp(2px, 0.15625vw, 4px);
    width: clamp(267px, 20.859375vw, 534px);
    margin: 0;
    color: var(--body-copy);
    font-size: clamp(14px, 1.0859375vw, 28px);
    font-weight: 550;
    line-height: clamp(15px, 1.1953125vw, 31px);
}

.rd-supply__lead > img {
    position: absolute;
    top: 0;
    right: 0;
    width: clamp(504px, 39.375vw, 1008px);
    height: clamp(249px, 19.453125vw, 498px);
    max-width: none;
    object-fit: contain;
}

.rd-supply__cards {
    display: grid;
    margin-top: 0;
    grid-template-columns: repeat(3, 1fr);
}

.rd-supply__cards article {
    position: relative;
    height: clamp(267px, 20.859375vw, 534px);
    padding: clamp(30px, 2.34375vw, 60px) clamp(12px, 0.9375vw, 24px);
    border: 1px solid #7d7d7d;
    text-align: center;
}

.rd-supply__cards article + article {
    border-left: 0;
}

.rd-supply__cards p {
    margin: 0 auto;
    color: var(--body-copy);
    font-size: clamp(11px, 0.8671875vw, 22px);
    font-weight: 500;
    line-height: clamp(15px, 1.1953125vw, 31px);
}

.rd-supply__cards article:nth-child(1) p {
    max-width: clamp(220px, 17.1875vw, 440px);
}
.rd-supply__cards article:nth-child(2) p {
    max-width: clamp(196px, 15.3125vw, 392px);
}
.rd-supply__cards article:nth-child(3) p {
    max-width: clamp(192px, 15vw, 384px);
}

.rd-supply__cards article:nth-child(1) img {
    width: clamp(221px, 17.265625vw, 442px);
    height: clamp(147px, 11.484375vw, 294px);
}

.rd-supply__cards article:nth-child(2) img {
    width: clamp(226px, 17.65625vw, 452px);
    height: clamp(127px, 9.921875vw, 254px);
}

.rd-supply__cards article:nth-child(3) img {
    width: clamp(152px, 11.875vw, 304px);
    height: clamp(74px, 5.78125vw, 148px);
}

.rd-supply__cards img {
    position: absolute;
    top: clamp(93px, 7.265625vw, 186px);
    right: 50%;
    margin-top: 0;
    max-width: 90%;
    transform: translateX(50%);
    object-fit: contain;
}

@media (min-width: 1280px) {
    .rd-golden-card {
        height: 294px;
        margin-top: 44px;
        padding: 39px 60px;
        grid-template-columns: minmax(0, 1fr) 323px;
        gap: 60px;
    }

    .rd-golden-card__copy {
        width: 100%;
        margin-top: 36px;
    }

    .rd-golden-card__image {
        width: 100%;
        height: 230px;
    }

    .rd-core-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .rd-core-grid__image {
        width: 100%;
        height: 321px;
    }

    .rd-essentials__grid {
        grid-template-columns: repeat(3, 314px);
    }

    .rd-innovation__image-wrap {
        height: 581px;
        margin-top: 44px;
    }

    .rd-innovation__overlay {
        top: 160px;
        left: 71px;
        width: 369px;
        height: 238px;
    }

    .rd-joint__inner {
        grid-template-columns: 414px minmax(0, 1fr);
        gap: 72px;
    }

    .rd-joint__inner > div {
        min-width: 0;
    }

    .rd-joint__inner h4,
    .rd-joint__inner > div > div,
    .rd-joint__image {
        width: 100%;
    }

    .rd-joint__image {
        height: 399px;
    }

    .rd-technologies__carousel {
        margin-top: 95px;
        padding-inline: 39px;
    }

    .rd-technologies__viewport {
        width: 974px;
        margin-inline: auto;
    }

    .rd-technologies__nav {
        width: 35px;
        height: 35px;
    }

    .rd-technologies__nav img {
        width: 8px;
        height: 15px;
    }

    .rd-technologies__grid article {
        width: 250px;
        flex: 0 0 250px;
        padding-inline: 0;
    }

    .rd-technologies__grid {
        width: max-content;
        gap: 112px;
    }

    .rd-technologies__grid img {
        width: 250px;
        height: 250px;
    }

    .rd-supply__lead {
        height: 374px;
        margin-top: -35px;
    }

    .rd-supply__lead > p {
        top: 161px;
        left: 3px;
        width: 401px;
    }

    .rd-supply__lead > img {
        width: 756px;
        height: 374px;
    }

    .rd-supply__cards article {
        height: 401px;
        padding: 45px 18px;
    }

    .rd-supply__cards article:nth-child(1) img {
        width: 332px;
        height: 221px;
    }

    .rd-supply__cards article:nth-child(2) img {
        width: 339px;
        height: 191px;
    }

    .rd-supply__cards article:nth-child(3) img {
        width: 228px;
        height: 111px;
    }

    .rd-supply__cards img {
        top: 140px;
    }
}

@media (max-width: 900px) {
    .site-header {
        height: 72px;
    }

    .site-header__inner {
        padding-inline: 20px;
    }

    .site-nav,
    .site-search,
    .site-language {
        display: none;
    }

    .site-mega-menu {
        display: none;
    }

    .site-header__logo {
        width: 90px;
    }

    .site-menu-toggle {
        display: grid;
        width: 40px;
        height: 40px;
        padding: 10px 8px;
        border: 0;
        background: transparent;
        cursor: pointer;
    }

    .site-menu-toggle span {
        width: 24px;
        height: 1px;
        background: #000;
        transition:
                transform 180ms ease,
                opacity 180ms ease;
    }

    .site-menu-toggle[aria-expanded='true'] span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-menu-toggle[aria-expanded='true'] span:nth-child(2) {
        opacity: 0;
    }

    .site-menu-toggle[aria-expanded='true'] span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-mobile-menu:not([hidden]) {
        position: absolute;
        top: 72px;
        right: 0;
        left: 0;
        display: grid;
        padding: 20px;
        border-top: 1px solid #e5e5e5;
        background: #fff;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
    }

    .site-mobile-menu__link {
        padding: 13px 0;
        border-bottom: 1px solid #ececec;
        font-size: var(--font-size-nav);
        font-weight: 700;
        line-height: var(--line-height-nav);
    }

    .site-mobile-menu__subnav {
        display: grid;
        padding: 8px 0 4px 16px;
        color: #555;
        font-size: var(--font-size-small);
        line-height: var(--line-height-small);
    }

    .site-mobile-menu__subnav a {
        padding: 9px 0;
    }

    .site-footer__inner {
        padding-block: 40px;
    }

    .site-footer__top,
    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .site-footer__logo {
        width: 220px;
        height: auto;
    }

    .site-footer__nav {
        flex-wrap: wrap;
        gap: 12px;
    }

    .site-footer__bottom {
        gap: 8px;
    }

    .home-hero {
        height: max(260px, 58vw);
    }

    .home-hero__dots {
        bottom: 22px;
    }

    .home-about {
        padding-top: 56px;
    }

    .home-about__inner {
        display: flex;
        height: auto;
        flex-direction: column;
        gap: 36px;
    }

    .home-about__copy,
    .home-about__image,
    .home-about__more {
        position: static;
    }

    .home-about__body,
    .home-about__image {
        width: 100%;
        height: auto;
        max-width: none;
    }

    .home-about__image {
        aspect-ratio: 1.8 / 1;
    }

    .home-about__more {
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        width: 24px;
        height: 24px;
    }

    .home-products {
        padding: 84px 0;
    }

    .home-products__grid {
        margin-top: 48px;
    }

    .home-product {
        width: 100%;
        height: auto;
    }

    .home-product__image {
        width: 100%;
        height: auto;
        aspect-ratio: 487 / 550;
    }

    .home-product__copy,
    .home-product__button {
        position: static;
    }

    .home-product__copy {
        min-height: 78px;
        margin-top: 20px;
    }

    .home-product__name {
        height: auto;
        min-height: 1.5em;
        overflow: visible;
        white-space: normal;
    }

    .home-product__button {
        width: 100%;
        height: 40px;
        margin-top: 18px;
    }

    .home-products__view-all {
        margin-top: 56px;
    }

    .product-detail {
        min-height: 0;
        margin-bottom: 0;
        padding: 32px 0 72px;
    }

    .product-layout {
        width: calc(100% - 32px);
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .product-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .product-gallery__image {
        width: 100%;
        height: auto;
        aspect-ratio: 460 / 570;
    }

    .product-info {
        padding-top: 0;
    }

    .product-info__description,
    .product-accordion {
        width: 100%;
    }

    .product-info__description {
        font-size: 12px;
        line-height: 1.55;
    }

    .product-accordion {
        margin-top: 40px;
    }

    .product-accordion__trigger {
        height: 48px;
        font-size: 13px;
    }

    .story-hero {
        height: max(360px, 58vw);
    }

    .story-hero__logo {
        width: min(70vw, 446px);
        height: auto;
    }

    .story-content {
        height: auto;
        min-height: 680px;
    }

    .story-content__inner {
        padding: 80px 0 100px;
    }

    .story-content__symbol {
        top: 54px;
        right: 0;
        left: auto;
        width: 48px;
        height: 48px;
    }

    .story-content__copy {
        width: 100%;
        margin-top: 52px;
        font-size: 12px;
        line-height: 1.65;
        text-align: left;
    }

    .rd-hero {
        height: 520px;
    }

    .rd-hero__image {
        opacity: 0.48;
    }

    .rd-hero__inner {
        padding-top: 110px;
    }

    .rd-philosophy,
    .rd-principles,
    .rd-innovation,
    .rd-joint,
    .rd-technologies,
    .rd-supply {
        padding-top: 84px;
    }

    .rd-golden-card,
    .rd-core-grid,
    .rd-essentials__grid,
    .rd-joint__inner,
    .rd-technologies__grid,
    .rd-supply__cards {
        grid-template-columns: 1fr;
    }

    .rd-golden-card {
        height: auto;
        margin-top: 24px;
        padding: 28px;
    }

    .rd-golden-card__title--outside {
        margin-top: 24px;
    }

    .rd-golden-card__copy,
    .rd-golden-card__image,
    .rd-core-grid__image,
    .rd-joint__inner h4,
    .rd-joint__inner > div > div,
    .rd-joint__image {
        width: 100%;
        height: auto;
        max-width: none;
    }

    .rd-core-grid {
        gap: 64px;
    }

    .rd-core-grid__subtitle {
        flex: none;
        min-height: 0;
    }

    .rd-core-grid__image {
        margin-top: 24px;
    }

    .rd-essentials__grid {
        gap: 52px;
    }

    .rd-essentials__grid h4,
    .rd-essentials__grid .essentials {
        min-height: 0;
        margin-top: 20px;
    }

    .rd-innovation__image-wrap {
        height: auto;
        aspect-ratio: 750 / 387;
    }

    .rd-innovation__overlay {
        top: 27%;
        left: 6%;
        width: 33%;
        height: auto;
    }

    .rd-joint__inner {
        gap: 48px;
    }

    .rd-technologies__grid {
        gap: 0;
        width: 500%;
    }

    .rd-technologies__grid article {
        width: 20%;
        flex-basis: 20%;
        margin-inline: auto;
    }

    .rd-technologies__carousel {
        padding-inline: 30px;
    }

    .rd-supply {
        padding-bottom: 84px;
    }

    .rd-supply__lead {
        display: grid;
        height: auto;
        margin-top: 40px;
        gap: 36px;
    }

    .rd-supply__lead > p,
    .rd-supply__lead > img {
        position: static;
        width: 100%;
        height: auto;
    }

    .rd-supply__cards {
        margin-top: 48px;
        gap: 16px;
    }

    .rd-supply__cards article {
        height: 320px;
        border: 1px solid #7d7d7d;
    }

    .rd-supply__cards article img {
        width: auto;
        height: auto;
        max-height: 150px;
    }
}

@media (max-width: 540px) {
    .home-products__grid {
        grid-template-columns: 1fr;
    }

    .home-product__copy {
        min-height: 0;
    }
}

@media (min-width: 901px) and (max-width: 1279px) {
    .content-x {
        width: calc(100% - 48px);
    }

    .home-about__inner {
        display: grid;
        height: auto;
        grid-template-columns: minmax(0, 1fr);
        gap: 48px;
    }

    .home-about__copy,
    .home-about__image,
    .home-about__more {
        position: static;
    }

    .home-about__body,
    .home-about__image {
        width: 100%;
        height: auto;
        max-width: none;
    }

    .home-about__image {
        aspect-ratio: 1168 / 649;
    }

    .home-about__more {
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        width: 32px;
        height: 32px;
    }

    .product-layout {
        width: calc(100% - 48px);
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 32px;
    }

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

    .product-gallery__image {
        width: 100%;
        height: auto;
        aspect-ratio: 460 / 570;
    }

    .product-info__description,
    .product-accordion {
        width: 100%;
    }

    .rd-core-grid,
    .rd-essentials__grid,
    .rd-joint__inner,
    .rd-technologies__grid,
    .rd-supply__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rd-core-grid__image,
    .rd-joint__image,
    .rd-golden-card__image {
        width: 100%;
        height: auto;
    }

    .rd-essentials__grid {
        row-gap: 48px;
    }

    .rd-supply__cards article:last-child {
        grid-column: 1 / -1;
    }
}

/* Keep the desktop composition and typography stable once the content area
   reaches its 1125px design width. The mobile rules above remain responsive. */
@media (min-width: 1920px) {
    .product-info__title,
    .story-content__title {
        font-size: 27px;
    }

    .story-content__copy,
    .product-info__size,
    .product-accordion__trigger,
    .rd-golden-card__copy,
    .rd-core-grid__subtitle,
    .rd-essentials__grid .essentials,
    .rd-joint__inner > div > div,
    .rd-technologies__grid p,
    .rd-supply__cards p {
        font-size: 17px;
    }

    .story-content__copy,
    .product-info__description,
    .product-accordion__panel,
    .rd-golden-card__copy,
    .rd-core-grid__subtitle,
    .rd-essentials__grid .essentials,
    .rd-joint__inner > div > div,
    .rd-technologies__grid p,
    .rd-supply__cards p {
        line-height: 23px;
    }

    .product-info__title {
        line-height: 25px;
    }

    .product-info__size {
        line-height: 16px;
    }

    .product-info__description,
    .product-accordion__panel {
        font-size: 15px;
        line-height: 21px;
    }

    .story-content__title {
        line-height: 20px;
    }

    .rd-hero__title,
    .rd-section-title {
        font-size: 42px;
        line-height: 52px;
    }

    .rd-golden-card__title,
    .rd-innovation__title,
    .rd-joint__title,
    .rd-technologies__title,
    .rd-hero__links,
    .rd-core-grid__title,
    .rd-essentials__title {
        font-size: 27px;
        line-height: 38px;
    }

    .rd-essentials__grid h4,
    .rd-joint__inner h4,
    .rd-technologies__grid h4,
    .rd-supply__lead > p {
        font-size: 21px;
        line-height: 23px;
    }
}