/* Modern RWF public site, layered after the legacy framework bundle. */

:root {
    --rwf-ink: #111a1d;
    --rwf-ink-soft: #263337;
    --rwf-copy: #536064;
    --rwf-line: #dce2df;
    --rwf-paper: #fbfaf7;
    --rwf-mist: #eff3f0;
    --rwf-white: #fff;
    --rwf-cyan: #109cad;
    --rwf-cyan-dark: #087787;
    --rwf-green: #79a92f;
    --rwf-purple: #705187;
    --rwf-danger: #b42318;
    --rwf-success: #256d12;
    --rwf-shadow: 0 24px 70px rgba(17, 26, 29, 0.1);
    --rwf-radius: 2px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body.site-body {
    background: var(--rwf-paper);
    color: var(--rwf-copy);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

.site-body h1,
.site-body h2,
.site-body h3,
.site-body h4,
.site-body h5,
.site-body h6 {
    color: var(--rwf-ink);
    font-family: inherit;
    font-weight: 650;
    letter-spacing: -0.035em;
}

.site-body p,
.site-body ul,
.site-body ol,
.site-body dl {
    margin-bottom: 0;
}

.site-body a {
    color: inherit;
}

.site-body a:hover {
    text-decoration: none;
}

.site-body img {
    max-width: 100%;
}

.site-body .contact-raster {
    display: inline-block;
    height: 1.35em;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    vertical-align: -0.24em;
    width: auto;
}

.site-body ::selection {
    background: rgba(16, 156, 173, 0.22);
    color: var(--rwf-ink);
}

.site-body :focus-visible {
    outline: 3px solid rgba(16, 156, 173, 0.5);
    outline-offset: 4px;
}

.container {
    padding-left: 24px;
    padding-right: 24px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1240px;
    }
}

.skip-link {
    background: var(--rwf-ink);
    color: var(--rwf-white) !important;
    left: 20px;
    padding: 11px 16px;
    position: fixed;
    top: -80px;
    transition: top 0.2s ease;
    z-index: 1000000;
}

.skip-link:focus {
    top: 18px;
}

/* Header and navigation */

.site-header {
    background: rgba(255, 255, 255, 0.97);
    min-height: 88px;
    position: relative;
    z-index: 20000;
}

.site-header .navigation-fixed-wrapper {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(17, 26, 29, 0.1);
    box-shadow: none;
    backdrop-filter: blur(16px);
}

.site-header .navigation-fixed-wrapper.fixed {
    box-shadow: 0 12px 35px rgba(17, 26, 29, 0.08);
}

.site-header .navigation {
    background: transparent;
    display: table;
    height: 88px;
    padding-bottom: 0;
    padding-top: 0;
}

.site-header .nav-header {
    height: 88px;
}

.site-header .nav-brand {
    align-items: center;
    display: flex;
    gap: 16px;
    height: 88px;
    line-height: 1;
    padding: 0;
}

.site-header .main-logo {
    height: auto;
    width: 124px;
}

.nav-brand__claim {
    border-left: 1px solid var(--rwf-line);
    color: #718084;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    padding-left: 16px;
    text-transform: uppercase;
    white-space: nowrap;
}

.site-header .nav-menu > li > a {
    color: #354145;
    font-size: 13px;
    font-weight: 650;
    height: 88px;
    letter-spacing: 0.045em;
    padding: 34px 15px 0;
    text-transform: uppercase;
}

.site-header .nav-menu > li:not(.nav-menu__cta) > a::after {
    background: var(--rwf-cyan);
    bottom: 25px;
    content: "";
    height: 2px;
    left: 15px;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
    width: calc(100% - 30px);
}

.site-header .nav-menu > li:not(.nav-menu__cta) > a:hover,
.site-header .nav-menu > li:not(.nav-menu__cta) > a:focus,
.site-header .nav-menu > li.active:not(.nav-menu__cta) > a {
    color: var(--rwf-ink);
}

.site-header .nav-menu > li:not(.nav-menu__cta) > a:hover::after,
.site-header .nav-menu > li:not(.nav-menu__cta) > a:focus::after,
.site-header .nav-menu > li.active:not(.nav-menu__cta) > a::after {
    transform: scaleX(1);
}

.site-header .nav-menu > li.nav-menu__cta {
    margin-left: 10px;
    padding-top: 20px;
}

.site-header .nav-menu > li.nav-menu__cta > a {
    background: var(--rwf-ink);
    color: var(--rwf-white);
    height: 48px;
    padding: 13px 19px 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.site-header .nav-menu > li.nav-menu__cta > a:hover,
.site-header .nav-menu > li.nav-menu__cta > a:focus,
.site-header .nav-menu > li.nav-menu__cta.active > a {
    background: var(--rwf-cyan-dark);
    transform: translateY(-2px);
}

.site-header .nav-toggle {
    background: transparent;
    border: 0;
}

.site-header .nav-toggle::before {
    background: var(--rwf-ink);
    box-shadow: 0 0.5em 0 0 var(--rwf-ink), 0 1em 0 0 var(--rwf-ink);
}

/* Shared typography and controls */

.eyebrow {
    color: var(--rwf-cyan-dark);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.16em;
    line-height: 1.4;
    margin: 0 0 22px !important;
    text-transform: uppercase;
}

.eyebrow--light {
    color: #8dd7df;
}

.modern-lead {
    color: var(--rwf-ink-soft);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.6;
}

.modern-button {
    align-items: center;
    border: 1px solid transparent;
    display: inline-flex;
    font-size: 13px;
    font-weight: 750;
    gap: 18px;
    justify-content: center;
    letter-spacing: 0.055em;
    min-height: 54px;
    padding: 14px 23px;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.modern-button:hover,
.modern-button:focus {
    transform: translateY(-2px);
}

.modern-button--primary {
    background: var(--rwf-cyan);
    border-color: var(--rwf-cyan);
    color: var(--rwf-white) !important;
}

.modern-button--primary:hover,
.modern-button--primary:focus {
    background: var(--rwf-cyan-dark);
    border-color: var(--rwf-cyan-dark);
}

.modern-button--ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--rwf-white) !important;
}

.modern-button--ghost:hover,
.modern-button--ghost:focus {
    background: var(--rwf-white);
    border-color: var(--rwf-white);
    color: var(--rwf-ink) !important;
}

.modern-button--light {
    background: var(--rwf-white);
    border-color: var(--rwf-white);
    color: var(--rwf-ink) !important;
}

.modern-button--light:hover,
.modern-button--light:focus {
    background: #dff3f5;
    border-color: #dff3f5;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.text-link {
    color: var(--rwf-cyan-dark) !important;
    display: inline-flex;
    font-size: 14px;
    font-weight: 750;
    gap: 11px;
    letter-spacing: 0.035em;
    margin-top: 30px;
    padding-bottom: 5px;
    position: relative;
}

.text-link::after {
    background: currentColor;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.25s ease;
    width: 100%;
}

.text-link:hover::after,
.text-link:focus::after {
    transform: scaleX(1);
}

.text-link--light {
    color: #9fe3e9 !important;
}

.modern-section {
    padding: 118px 0;
    position: relative;
}

.modern-section--light {
    background: var(--rwf-paper);
}

.modern-section--mist {
    background: var(--rwf-mist);
}

.section-intro {
    align-items: end;
    display: grid;
    gap: 80px;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    margin-bottom: 64px;
}

.section-intro--compact {
    grid-template-columns: 1fr;
    margin-bottom: 54px;
}

.section-intro h2,
.split-story h2,
.production-feature h2,
.transition-section h2,
.partner-section h2 {
    font-size: clamp(36px, 4.2vw, 58px);
    line-height: 1.06;
    margin: 0;
}

.section-intro > p,
.section-intro > div:last-child p,
.split-story__content > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.8;
}

.section-intro > div:last-child p + p,
.split-story__content > p + p,
.transition-section__copy p + p {
    margin-top: 24px;
}

/* Home hero */

.agency-hero {
    align-items: center;
    background: var(--rwf-ink);
    display: flex;
    min-height: 720px;
    overflow: hidden;
    position: relative;
}

.agency-hero__media,
.agency-hero__overlay {
    inset: 0;
    position: absolute;
}

.agency-hero__media {
    background-image: url("/img/content/startpage2.jpg");
    background-position: center;
    background-size: cover;
    filter: saturate(0.65) contrast(1.05);
    transform: scale(1.02);
}

.agency-hero__overlay {
    background:
        linear-gradient(90deg, rgba(10, 17, 19, 0.96) 0%, rgba(10, 17, 19, 0.88) 42%, rgba(10, 17, 19, 0.42) 72%, rgba(10, 17, 19, 0.34) 100%),
        linear-gradient(0deg, rgba(10, 17, 19, 0.35), transparent 55%);
}

.agency-hero__layout {
    align-items: end;
    display: grid;
    gap: 80px;
    grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
    padding-bottom: 92px;
    padding-top: 92px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.agency-hero__content {
    max-width: 820px;
}

.agency-hero h1 {
    color: var(--rwf-white);
    font-size: clamp(58px, 7.6vw, 104px);
    font-weight: 650;
    letter-spacing: -0.065em;
    line-height: 0.92;
    margin: 0;
}

.agency-hero h1 span {
    color: #9ed7dc;
}

.agency-hero__lead {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.65;
    margin-top: 34px !important;
    max-width: 720px;
}

.agency-hero__card {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.78);
    padding: 30px;
}

.agency-hero__card-label {
    color: #a9dce1;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.agency-hero__card-value {
    color: var(--rwf-white);
    font-size: 27px;
    font-weight: 650;
    letter-spacing: -0.03em;
    line-height: 1.25;
    margin-top: 9px !important;
}

.agency-hero__card ul {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    list-style: none;
    margin-top: 24px;
    padding: 19px 0 0;
}

.agency-hero__card li {
    font-size: 14px;
    padding: 6px 0 6px 19px;
    position: relative;
}

.agency-hero__card li::before {
    color: #8dd7df;
    content: "+";
    left: 0;
    position: absolute;
}

.trust-strip {
    background: var(--rwf-white);
    border-bottom: 1px solid var(--rwf-line);
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-strip__grid > div {
    border-right: 1px solid var(--rwf-line);
    padding: 29px 28px;
}

.trust-strip__grid > div:first-child {
    border-left: 1px solid var(--rwf-line);
}

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

.trust-strip strong {
    color: var(--rwf-ink);
    font-size: 16px;
    letter-spacing: -0.01em;
}

.trust-strip span {
    color: #748084;
    font-size: 12px;
    margin-top: 3px;
}

.split-story {
    align-items: center;
    display: grid;
    gap: clamp(55px, 8vw, 110px);
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.split-story__visual {
    position: relative;
}

.split-story__visual::before {
    background: var(--rwf-cyan);
    content: "";
    height: 36%;
    left: -18px;
    position: absolute;
    top: -18px;
    width: 34%;
    z-index: 0;
}

.split-story__visual img {
    aspect-ratio: 4 / 3;
    box-shadow: var(--rwf-shadow);
    display: block;
    object-fit: cover;
    position: relative;
    width: 100%;
    z-index: 1;
}

.split-story__badge {
    background: var(--rwf-ink);
    bottom: -20px;
    color: var(--rwf-white);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.14em;
    padding: 14px 18px;
    position: absolute;
    right: -18px;
    text-transform: uppercase;
    z-index: 2;
}

.split-story__content {
    max-width: 590px;
}

.split-story__content h2 {
    margin-bottom: 32px;
}

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

.service-card {
    background: var(--rwf-white);
    border: 1px solid var(--rwf-line);
    display: flex;
    flex-direction: column;
    min-height: 350px;
    padding: 31px 29px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
    box-shadow: 0 18px 45px rgba(17, 26, 29, 0.08);
    transform: translateY(-6px);
}

.service-card--accent {
    background: var(--rwf-cyan-dark);
    border-color: var(--rwf-cyan-dark);
    color: rgba(255, 255, 255, 0.78);
}

.service-card__number {
    color: var(--rwf-cyan-dark);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.1em;
}

.service-card--accent .service-card__number {
    color: #a5e5eb;
}

.service-card h3 {
    font-size: 25px;
    line-height: 1.15;
    margin: 55px 0 17px;
}

.service-card--accent h3 {
    color: var(--rwf-white);
}

.service-card p {
    font-size: 14px;
    line-height: 1.75;
}

.service-card a {
    color: var(--rwf-cyan-dark);
    font-size: 13px;
    font-weight: 750;
    margin-top: auto;
    padding-top: 24px;
}

.service-card--accent a {
    color: #b9edf1;
}

.format-section {
    background: var(--rwf-ink);
    color: rgba(255, 255, 255, 0.72);
}

.format-section h2 {
    color: var(--rwf-white);
    font-size: clamp(40px, 5vw, 66px);
    line-height: 1.03;
    margin-bottom: 27px;
}

.format-section__layout {
    align-items: center;
    display: grid;
    gap: 95px;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.format-section__layout > div > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.8;
}

.format-section .modern-button {
    margin-top: 32px;
}

.format-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    list-style: none;
    padding: 0;
}

.format-cloud li {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--rwf-white);
    font-size: clamp(15px, 1.6vw, 21px);
    padding: 13px 18px;
}

.format-cloud li:nth-child(3n + 1) {
    border-color: rgba(16, 156, 173, 0.65);
}

.format-cloud li:nth-child(4n + 2) {
    border-color: rgba(121, 169, 47, 0.58);
}

.process-grid {
    counter-reset: rwf-process;
    display: grid;
    gap: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    list-style: none;
    padding: 0;
}

.process-grid li {
    border-left: 1px solid var(--rwf-line);
    min-height: 240px;
    padding: 18px 30px 26px;
}

.process-grid li:last-child {
    border-right: 1px solid var(--rwf-line);
}

.process-grid span {
    color: var(--rwf-cyan-dark);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.12em;
}

.process-grid h3 {
    font-size: 24px;
    margin: 64px 0 13px;
}

.process-grid p {
    font-size: 14px;
    line-height: 1.7;
}

.process-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.modern-cta {
    background: var(--rwf-cyan-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 72px 0;
}

.modern-cta__inner {
    align-items: center;
    display: grid;
    gap: 55px;
    grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.7fr) auto;
}

.modern-cta h2 {
    color: var(--rwf-white);
    font-size: clamp(36px, 4.3vw, 58px);
    line-height: 1.05;
    margin: 0;
}

.modern-cta p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.75;
}

/* Interior heroes */

.page-hero {
    align-items: end;
    background-color: var(--rwf-ink);
    background-position: center;
    background-size: cover;
    display: flex;
    min-height: 590px;
    overflow: hidden;
    position: relative;
}

.page-hero--about {
    background-image: url("/img/content/ueber.jpg");
    background-position: center 52%;
}

.page-hero--services {
    background-image: url("/img/content/leistungen.jpg");
}

.page-hero__overlay {
    background: linear-gradient(90deg, rgba(10, 17, 19, 0.93) 0%, rgba(10, 17, 19, 0.75) 48%, rgba(10, 17, 19, 0.26) 100%);
    inset: 0;
    position: absolute;
}

.page-hero__content {
    padding-bottom: 76px;
    padding-top: 105px;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--rwf-white);
    font-size: clamp(52px, 7vw, 88px);
    line-height: 0.98;
    margin: 0;
    max-width: 890px;
}

.page-hero__content > p:last-child {
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.7;
    margin-top: 28px;
    max-width: 720px;
}

/* About */

.split-story--history .split-story__visual img {
    aspect-ratio: 1.3 / 1;
    filter: saturate(0.75);
}

.history-timeline {
    border-top: 1px solid var(--rwf-line);
    list-style: none;
    padding: 0;
}

.history-timeline li {
    align-items: start;
    border-bottom: 1px solid var(--rwf-line);
    display: grid;
    gap: 35px;
    grid-template-columns: 150px 1fr;
    padding: 31px 0;
}

.history-timeline time {
    color: var(--rwf-cyan-dark);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.history-timeline h3 {
    font-size: 21px;
    margin: 0 0 5px;
}

.history-timeline p {
    font-size: 15px;
}

.history-timeline__current {
    background: rgba(16, 156, 173, 0.07);
    box-shadow: inset 4px 0 0 var(--rwf-cyan);
    padding-left: 24px !important;
    padding-right: 24px !important;
}

.transition-section {
    background: var(--rwf-ink);
    color: rgba(255, 255, 255, 0.72);
    padding: 118px 0;
}

.transition-section__grid {
    display: grid;
    gap: 100px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.transition-section h2 {
    color: var(--rwf-white);
}

.transition-section .modern-lead {
    color: var(--rwf-white);
}

.transition-section__copy p {
    font-size: 17px;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: var(--rwf-line);
    border: 1px solid var(--rwf-line);
}

.values-grid article {
    background: var(--rwf-paper);
    min-height: 280px;
    padding: 29px;
}

.values-grid span {
    color: var(--rwf-cyan-dark);
    font-size: 12px;
    font-weight: 750;
}

.values-grid h3 {
    font-size: 23px;
    margin: 65px 0 15px;
}

.values-grid p {
    font-size: 14px;
    line-height: 1.7;
}

/* Services */

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

.capability-card {
    background: var(--rwf-white);
    border: 1px solid var(--rwf-line);
    min-height: 440px;
    padding: 32px;
    position: relative;
}

.capability-card--accent {
    background: var(--rwf-cyan-dark);
    border-color: var(--rwf-cyan-dark);
    color: rgba(255, 255, 255, 0.76);
}

.capability-card > span:not(.anchor-alias) {
    color: var(--rwf-cyan-dark);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.1em;
}

.capability-card--accent > span:not(.anchor-alias) {
    color: #a5e5eb;
}

.anchor-alias {
    left: 0;
    position: absolute;
    top: -110px;
}

.capability-card h2 {
    font-size: 28px;
    line-height: 1.12;
    margin: 65px 0 17px;
}

.capability-card--accent h2 {
    color: var(--rwf-white);
}

.capability-card p {
    font-size: 15px;
    line-height: 1.7;
}

.capability-card ul {
    border-top: 1px solid var(--rwf-line);
    list-style: none;
    margin-top: 27px;
    padding: 18px 0 0;
}

.capability-card--accent ul {
    border-color: rgba(255, 255, 255, 0.2);
}

.capability-card li {
    font-size: 13px;
    padding: 5px 0 5px 18px;
    position: relative;
}

.capability-card li::before {
    color: var(--rwf-cyan-dark);
    content: "+";
    left: 0;
    position: absolute;
}

.capability-card--accent li::before {
    color: #a5e5eb;
}

.production-feature__grid {
    align-items: center;
    display: grid;
    gap: clamp(55px, 8vw, 105px);
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.production-feature__image {
    position: relative;
}

.production-feature__image::after {
    border: 1px solid var(--rwf-cyan);
    bottom: -22px;
    content: "";
    left: 22px;
    position: absolute;
    right: -22px;
    top: 22px;
    z-index: 0;
}

.production-feature__image img {
    aspect-ratio: 1.08 / 1;
    box-shadow: var(--rwf-shadow);
    display: block;
    object-fit: cover;
    position: relative;
    width: 100%;
    z-index: 1;
}

.production-feature h2 {
    margin-bottom: 28px;
}

.product-columns {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
}

.product-columns ul {
    list-style: none;
    padding: 0;
}

.product-columns li {
    border-bottom: 1px solid var(--rwf-line);
    color: var(--rwf-ink-soft);
    font-size: 14px;
    padding: 9px 0 9px 18px;
    position: relative;
}

.product-columns li::before {
    color: var(--rwf-cyan-dark);
    content: "→";
    left: 0;
    position: absolute;
}

.production-feature__note {
    color: #718084;
    font-size: 13px;
    font-style: italic;
    margin-top: 24px !important;
}

.partner-section {
    background: var(--rwf-ink);
    color: rgba(255, 255, 255, 0.72);
    padding: 118px 0;
}

.partner-section__grid {
    display: grid;
    gap: 90px;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.partner-section h2 {
    color: var(--rwf-white);
}

.partner-criteria article {
    align-items: start;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    gap: 28px;
    grid-template-columns: 40px 1fr;
    padding: 27px 0;
}

.partner-criteria article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.partner-criteria > article > span {
    color: #9fe3e9;
    font-size: 13px;
    font-weight: 750;
}

.partner-criteria h3 {
    color: var(--rwf-white);
    font-size: 21px;
    margin: 0 0 7px;
}

.partner-criteria p {
    font-size: 14px;
}

/* Contact */

.contact-hero {
    background: var(--rwf-ink);
    color: rgba(255, 255, 255, 0.76);
    padding: 110px 0 94px;
    position: relative;
}

.contact-hero::after {
    background: linear-gradient(90deg, var(--rwf-cyan), var(--rwf-green), var(--rwf-purple));
    bottom: 0;
    content: "";
    height: 5px;
    left: 0;
    position: absolute;
    width: 100%;
}

.contact-hero__grid {
    align-items: end;
    display: grid;
    gap: 100px;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.contact-hero h1 {
    color: var(--rwf-white);
    font-size: clamp(54px, 7vw, 88px);
    line-height: 0.98;
    margin: 0;
}

.contact-hero__grid > p {
    font-size: 18px;
    line-height: 1.8;
}

.contact-layout {
    align-items: start;
    display: grid;
    gap: 70px;
    grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
}

.contact-details {
    padding-top: 18px;
}

.contact-details h2,
.contact-form-card h2 {
    font-size: clamp(31px, 3.2vw, 43px);
    line-height: 1.08;
    margin: 0 0 20px;
}

.contact-details > p:not(.eyebrow) {
    font-size: 16px;
    max-width: 390px;
}

.contact-list {
    border-top: 1px solid var(--rwf-line);
    margin-top: 36px;
}

.contact-list > div {
    border-bottom: 1px solid var(--rwf-line);
    display: grid;
    gap: 18px;
    grid-template-columns: 144px minmax(0, 1fr);
    padding: 18px 0;
}

.contact-list dt {
    color: #788488;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.1em;
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.contact-list dd {
    color: var(--rwf-ink-soft);
    font-size: 15px;
    margin: 0;
    min-width: 0;
    overflow-wrap: anywhere;
}

.contact-list a:hover,
.contact-list a:focus {
    color: var(--rwf-cyan-dark);
}

.opening-hours {
    background: var(--rwf-white);
    border: 1px solid var(--rwf-line);
    margin-top: 42px;
    padding: 24px;
}

.opening-hours h3 {
    font-size: 18px;
    margin: 0 0 14px;
}

.opening-hours div {
    display: flex;
    font-size: 13px;
    gap: 15px;
    justify-content: space-between;
    padding: 4px 0;
}

.opening-hours div span:last-child {
    color: var(--rwf-ink-soft);
    text-align: right;
}

.contact-form-card {
    background: var(--rwf-white);
    box-shadow: var(--rwf-shadow);
    padding: clamp(30px, 5vw, 58px);
}

.contact-form-card__header {
    border-bottom: 1px solid var(--rwf-line);
    margin-bottom: 31px;
    padding-bottom: 30px;
}

.contact-form-card__header > p:last-child {
    font-size: 14px;
}

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

.contact-form-field {
    margin-bottom: 19px;
}

.contact-form-field label {
    color: var(--rwf-ink-soft);
    display: block;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.07em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.contact-form-field label span {
    color: var(--rwf-cyan-dark);
}

.modern-contact-form input[type="text"],
.modern-contact-form input[type="email"],
.modern-contact-form textarea {
    background: #f7f9f7;
    border: 1px solid #d9dfdc;
    border-radius: 0;
    box-shadow: none;
    color: var(--rwf-ink);
    font-family: inherit;
    font-size: 15px;
    min-height: 54px;
    padding: 13px 15px;
    transition: background 0.2s ease, border-color 0.2s ease;
    width: 100%;
}

.modern-contact-form textarea {
    min-height: 178px;
    resize: vertical;
}

.modern-contact-form input:focus,
.modern-contact-form textarea:focus {
    background: var(--rwf-white);
    border-color: var(--rwf-cyan);
    outline: 0;
}

.contact-form-consent {
    align-items: start;
    display: grid;
    gap: 12px;
    grid-template-columns: 18px 1fr;
    margin-top: 4px;
}

.contact-form-consent input {
    height: 17px;
    margin-top: 4px;
    width: 17px;
}

.contact-form-consent label {
    color: #6c787b;
    font-size: 12px;
    line-height: 1.6;
}

.contact-form-consent a {
    color: var(--rwf-cyan-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-form-turnstile {
    margin-top: 22px;
    min-height: 65px;
}

.contact-form-submit {
    align-items: center;
    border-top: 1px solid var(--rwf-line);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 27px;
    padding-top: 27px;
}

.contact-form-submit p {
    color: #829094;
    font-size: 11px;
}

.button-send-msg {
    border-radius: 0;
    cursor: pointer;
}

.button-send-msg:disabled {
    background: #a7b0ad;
    border-color: #a7b0ad;
    cursor: not-allowed;
    opacity: 0.72;
    transform: none;
}

#infocontainer {
    border: 1px solid currentColor;
    display: none;
    font-size: 14px;
    margin: 0 0 24px;
    padding: 13px 15px;
}

.form-result--error {
    background: #fff4f2;
    color: var(--rwf-danger) !important;
}

.form-result--success {
    background: #f3f9f1;
    color: var(--rwf-success) !important;
}

/* Legal pages */

.legal-hero {
    background: var(--rwf-ink);
    padding: 92px 0 75px;
}

.legal-hero h1 {
    color: var(--rwf-white);
    font-size: clamp(50px, 6.5vw, 78px);
    line-height: 1;
    margin: 0;
}

.legal-layout {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-layout > *,
.legal-columns > * {
    min-width: 0;
}

.legal-card {
    background: var(--rwf-white);
    border: 1px solid var(--rwf-line);
    overflow-wrap: anywhere;
    padding: clamp(27px, 4vw, 45px);
}

.legal-card--identity {
    background: var(--rwf-cyan-dark);
    border-color: var(--rwf-cyan-dark);
    color: rgba(255, 255, 255, 0.78);
}

.legal-card--wide {
    grid-column: 1 / -1;
}

.legal-card h2 {
    font-size: 29px;
    margin: 0 0 25px;
}

.legal-card--identity h2 {
    color: var(--rwf-white);
    font-size: 40px;
}

.legal-card address {
    font-style: normal;
    margin: 26px 0 19px;
}

.legal-card--identity a {
    color: var(--rwf-white);
}

.legal-data > div {
    border-top: 1px solid var(--rwf-line);
    display: grid;
    gap: 22px;
    grid-template-columns: minmax(130px, 0.7fr) minmax(0, 1.3fr);
    padding: 12px 0;
}

.legal-data > div:last-child {
    border-bottom: 1px solid var(--rwf-line);
}

.legal-data dt {
    color: #758185;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-data dd {
    color: var(--rwf-ink-soft);
    font-size: 14px;
    margin: 0;
    min-width: 0;
    overflow-wrap: anywhere;
}

.legal-data dt {
    min-width: 0;
    overflow-wrap: anywhere;
}

.legal-card:not(.legal-card--wide) .legal-data > div {
    gap: 4px;
    grid-template-columns: 1fr;
}

.legal-data a {
    color: var(--rwf-cyan-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.legal-columns .legal-data > div {
    gap: 4px;
    grid-template-columns: 1fr;
}

.privacy-layout {
    align-items: start;
    display: grid;
    gap: 70px;
    grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1.45fr);
}

.privacy-summary {
    background: var(--rwf-cyan-dark);
    color: rgba(255, 255, 255, 0.78);
    padding: 34px;
    position: sticky;
    top: 115px;
}

.privacy-summary h2 {
    color: var(--rwf-white);
    font-size: 33px;
    line-height: 1.1;
    margin: 0 0 22px;
}

.privacy-summary p + p {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    margin-top: 24px;
    padding-top: 24px;
}

.privacy-summary a {
    color: var(--rwf-white);
}

.privacy-content {
    background: var(--rwf-white);
    border: 1px solid var(--rwf-line);
    padding: clamp(30px, 5vw, 58px);
}

.privacy-content section + section {
    border-top: 1px solid var(--rwf-line);
    margin-top: 38px;
    padding-top: 38px;
}

.privacy-content h2 {
    font-size: 25px;
    margin: 0 0 17px;
}

.privacy-content p {
    font-size: 15px;
    line-height: 1.85;
}

.privacy-content p + p {
    margin-top: 17px;
}

.privacy-content a {
    color: var(--rwf-cyan-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* News, career, errors and messages */

.site-message {
    background: #f3f9f1;
    border-left: 4px solid var(--rwf-green);
    color: var(--rwf-ink-soft);
    font-size: 15px;
    line-height: 1.7;
    margin: 20px 0;
    padding: 18px 20px;
}

.site-message--error {
    background: #fff4f2;
    border-left-color: var(--rwf-danger);
}

.news-page {
    background: var(--rwf-mist);
    min-height: 55vh;
}

.news-hero {
    background: var(--rwf-ink);
    padding: 92px 0 74px;
    position: relative;
}

.news-hero::after {
    background: linear-gradient(90deg, var(--rwf-cyan), var(--rwf-green), var(--rwf-purple));
    bottom: 0;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    width: 100%;
}

.news-hero h1,
.news-hero__title {
    color: var(--rwf-white);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 650;
    line-height: 1;
    margin-bottom: 13px;
}

.news-hero p:not(.news-hero__title) {
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
}

.news-page__content {
    padding-bottom: 105px;
    padding-top: 80px;
}

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

.news-card {
    background: var(--rwf-white);
    border: 1px solid var(--rwf-line);
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.news-card:hover {
    box-shadow: 0 18px 45px rgba(17, 26, 29, 0.09);
    transform: translateY(-5px);
}

.news-card:only-child {
    grid-column: 1 / -1;
    margin: 0 auto;
    max-width: 760px;
    width: 100%;
}

.news-card__image-link {
    background: #e7eae8;
    display: block;
    overflow: hidden;
}

.news-card__image {
    aspect-ratio: 16 / 8.5;
    display: block;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease;
    width: 100%;
}

.news-card:hover .news-card__image {
    transform: scale(1.025);
}

.news-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 34px;
}

.news-card time,
.news-article time {
    color: var(--rwf-cyan-dark);
    display: block;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.11em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.news-card h2 {
    font-size: 27px;
    line-height: 1.25;
    margin-bottom: 15px;
}

.news-card h2 a {
    color: var(--rwf-ink);
}

.news-card p {
    color: var(--rwf-copy);
    font-size: 15px;
    line-height: 1.75;
}

.news-card__link,
.news-back-link {
    color: var(--rwf-cyan-dark) !important;
    font-size: 13px;
    font-weight: 750;
}

.news-card__link {
    margin-top: auto;
    padding-top: 25px;
}

.news-article {
    background: var(--rwf-white);
    border: 1px solid var(--rwf-line);
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
    width: 920px;
}

.news-back-link {
    display: inline-block;
    margin: 34px 48px 0;
}

.news-article__header {
    padding: 48px 48px 37px;
}

.news-article__header h1 {
    color: var(--rwf-ink);
    font-size: clamp(34px, 4.5vw, 50px);
    line-height: 1.14;
}

.news-article__lead {
    color: var(--rwf-copy);
    font-size: 18px;
    line-height: 1.75;
    margin-top: 20px !important;
}

.news-article__image {
    display: block;
    height: auto;
    max-height: 620px;
    object-fit: cover;
    width: 100%;
}

.news-article__body {
    color: var(--rwf-copy);
    font-size: 17px;
    line-height: 1.9;
    overflow-wrap: anywhere;
    padding: 48px;
}

.news-article__body h2,
.news-article__body h3,
.news-article__body h4 {
    color: var(--rwf-ink);
    line-height: 1.3;
    margin: 1.7em 0 0.65em;
}

.news-article__body h2 {
    font-size: 29px;
}

.news-article__body p + p,
.news-article__body ul + p,
.news-article__body p + ul {
    margin-top: 20px;
}

.news-article__body ul,
.news-article__body ol {
    padding-left: 23px;
}

.news-article__body li + li {
    margin-top: 6px;
}

.news-article__body img,
.news-article__body video,
.news-article__body iframe {
    max-width: 100%;
}

.error-page {
    align-items: center;
    background: var(--rwf-mist);
    display: flex;
    min-height: 62vh;
    padding: 80px 0;
}

.error-page__code {
    color: var(--rwf-cyan-dark);
    font-size: clamp(76px, 14vw, 150px);
    font-weight: 700;
    line-height: 0.85;
    margin-bottom: 28px;
}

.career-hero {
    background: var(--rwf-ink);
    border-bottom: 4px solid var(--rwf-cyan);
    padding: 105px 0 95px;
}

.career-hero__grid {
    align-items: end;
    display: grid;
    gap: clamp(55px, 9vw, 130px);
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
}

.career-hero h1 {
    color: var(--rwf-white);
    font-size: clamp(48px, 6.5vw, 82px);
    line-height: 0.98;
    margin: 0;
}

.career-hero__grid > p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 18px;
    line-height: 1.75;
}

.career-content {
    min-height: 48vh;
}

.career-empty {
    background: var(--rwf-white);
    border: 1px solid var(--rwf-line);
    max-width: 790px;
    padding: clamp(32px, 6vw, 68px);
}

.career-empty h2 {
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.06;
    margin-bottom: 24px;
}

.career-empty > p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.8;
    max-width: 610px;
}

.career-empty .text-link {
    display: inline-block;
    margin-top: 30px;
}

.career-jobs {
    display: grid;
    gap: 24px;
}

.career-job {
    background: var(--rwf-white);
    border: 1px solid var(--rwf-line);
    padding: clamp(28px, 5vw, 55px);
}

.career-job header {
    margin-bottom: 28px;
}

.career-job h2 {
    font-size: clamp(31px, 4vw, 46px);
    margin: 0;
}

.career-job__details details {
    border-top: 1px solid var(--rwf-line);
}

.career-job__details details:last-child {
    border-bottom: 1px solid var(--rwf-line);
}

.career-job__details summary {
    color: var(--rwf-ink);
    cursor: pointer;
    font-size: 18px;
    font-weight: 650;
    list-style: none;
    padding: 20px 40px 20px 0;
    position: relative;
}

.career-job__details summary::-webkit-details-marker {
    display: none;
}

.career-job__details summary span {
    color: var(--rwf-cyan-dark);
    font-size: 24px;
    position: absolute;
    right: 4px;
    top: 15px;
    transition: transform 0.2s ease;
}

.career-job__details details[open] summary span {
    transform: rotate(45deg);
}

.career-job__details details > div {
    color: var(--rwf-copy);
    padding: 0 0 25px;
}

.career-job__details ul {
    list-style: none;
    padding: 0;
}

.career-job__details li {
    padding: 5px 0 5px 20px;
    position: relative;
}

.career-job__details li::before {
    color: var(--rwf-cyan-dark);
    content: "+";
    left: 0;
    position: absolute;
}

/* Footer */

.site-footer {
    background: #0d1518;
    color: #9ba6a8;
    padding: 86px 0 0;
}

.site-footer__grid {
    display: grid;
    gap: 55px;
    grid-template-columns: 1.25fr 0.8fr 0.9fr 1.05fr;
}

.site-footer__brand img {
    background: var(--rwf-white);
    height: auto;
    padding: 7px;
    width: 105px;
}

.site-footer__company {
    color: var(--rwf-white);
    font-size: 16px;
    font-weight: 650;
    margin-top: 20px !important;
}

.site-footer__intro > p:last-child {
    font-size: 13px;
    line-height: 1.75;
    margin-top: 11px;
    max-width: 270px;
}

.site-footer h2 {
    color: var(--rwf-white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.09em;
    margin: 3px 0 24px;
    text-transform: uppercase;
}

.site-footer__links,
.site-footer__news,
.site-footer__legal {
    list-style: none;
    padding: 0;
}

.site-footer__links li + li {
    margin-top: 8px;
}

.site-footer__links a,
.site-footer__contact a,
.site-footer__contact-link,
.site-footer__news a,
.site-footer__legal a {
    color: #b8c1c3;
    font-size: 13px;
    transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus {
    color: var(--rwf-white);
}

.site-footer__contact {
    font-size: 13px;
    font-style: normal;
    line-height: 1.9;
    margin: 0;
}

.site-footer__contact .contact-raster {
    height: 1.45em;
    opacity: 0.72;
}

.site-footer__contact-link {
    color: #8dd7df !important;
    display: inline-block;
    font-weight: 700;
    margin-top: 16px;
}

.site-footer__news li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    margin-top: 14px;
    padding-top: 14px;
}

.site-footer__news a {
    display: block;
    line-height: 1.5;
}

.site-footer__news time {
    color: #6f7b7e;
    display: block;
    font-size: 11px;
    margin-top: 5px;
}

.site-footer__bar {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: grid;
    gap: 25px;
    grid-template-columns: 1fr auto 1fr;
    margin-top: 75px;
    padding: 20px 0;
}

.site-footer__bar p,
.site-footer__bar a {
    font-size: 11px;
}

.site-footer__legal {
    display: flex;
    gap: 18px;
}

.footer-credit {
    margin: 0;
    text-align: right;
}

.footer-credit__heart {
    color: #e66c60;
}

.footer-credit a {
    color: #b8c1c3;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Responsive adjustments */

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

    .site-header .nav-menu > li > a {
        padding-left: 12px;
        padding-right: 12px;
    }

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

    .site-footer__grid {
        grid-template-columns: 1.15fr repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .site-header,
    .site-header .navigation,
    .site-header .nav-header {
        min-height: 76px;
        height: 76px;
    }

    .site-header .navigation {
        padding: 0 24px;
    }

    .site-header .nav-brand {
        height: 76px;
        padding: 0;
    }

    .site-header .main-logo {
        width: 100px;
    }

    .site-header .nav-menu {
        clear: both;
        padding-top: 45px;
    }

    .site-header .navigation-portrait .nav-menu > li {
        border-color: #e7ece9;
    }

    .site-header .navigation-portrait .nav-menu > li > a {
        color: var(--rwf-ink);
        font-size: 14px;
        height: auto;
        padding: 15px 28px;
    }

    .site-header .navigation-portrait .nav-menu > li > a::after {
        display: none;
    }

    .site-header .navigation-portrait .nav-menu > li.nav-menu__cta {
        border: 0;
        margin: 22px 25px;
        padding: 0;
        width: calc(100% - 50px);
    }

    .site-header .navigation-portrait .nav-menu > li.nav-menu__cta > a {
        color: var(--rwf-white);
        height: auto;
        padding: 16px 20px;
        text-align: center;
    }

    .site-header .nav-menus-wrapper-close-button {
        color: var(--rwf-ink);
        margin: 12px 16px;
    }

    .site-header .navigation-portrait .nav-menus-wrapper {
        height: 100vh;
        height: 100dvh;
        max-height: none;
    }

    .agency-hero__layout,
    .format-section__layout,
    .transition-section__grid,
    .partner-section__grid,
    .contact-hero__grid,
    .career-hero__grid {
        gap: 55px;
        grid-template-columns: 1fr;
    }

    .agency-hero__layout {
        align-items: start;
    }

    .agency-hero__card {
        max-width: 480px;
    }

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

    .trust-strip__grid > div:nth-child(3) {
        border-left: 1px solid var(--rwf-line);
        border-top: 1px solid var(--rwf-line);
    }

    .trust-strip__grid > div:nth-child(4) {
        border-top: 1px solid var(--rwf-line);
    }

    .section-intro,
    .split-story,
    .production-feature__grid,
    .contact-layout,
    .privacy-layout {
        gap: 55px;
        grid-template-columns: 1fr;
    }

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

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

    .process-grid li:nth-child(3) {
        border-top: 1px solid var(--rwf-line);
    }

    .process-grid li:nth-child(4) {
        border-right: 1px solid var(--rwf-line);
        border-top: 1px solid var(--rwf-line);
    }

    .process-grid--three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .modern-cta__inner {
        gap: 34px;
        grid-template-columns: 1fr auto;
    }

    .modern-cta__inner > p {
        grid-column: 1 / -1;
        grid-row: 2;
        max-width: 560px;
    }

    .modern-cta__inner > a {
        grid-column: 2;
        grid-row: 1;
    }

    .privacy-summary {
        position: static;
    }

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

@media (max-width: 767px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .modern-section,
    .transition-section,
    .partner-section {
        padding: 78px 0;
    }

    .agency-hero {
        min-height: auto;
    }

    .agency-hero__media {
        background-position: 58% center;
    }

    .agency-hero__overlay {
        background: linear-gradient(90deg, rgba(10, 17, 19, 0.94), rgba(10, 17, 19, 0.7));
    }

    .agency-hero__layout {
        gap: 45px;
        padding-bottom: 68px;
        padding-top: 70px;
    }

    .agency-hero h1 {
        font-size: clamp(50px, 14vw, 72px);
    }

    .agency-hero__lead {
        font-size: 18px;
        margin-top: 26px !important;
    }

    .agency-hero__card {
        display: none;
    }

    .button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .button-row .modern-button {
        width: 100%;
    }

    .trust-strip__grid > div {
        padding: 22px 15px;
    }

    .trust-strip strong {
        font-size: 14px;
    }

    .trust-strip span {
        font-size: 11px;
        line-height: 1.45;
    }

    .section-intro {
        gap: 27px;
        margin-bottom: 42px;
    }

    .section-intro h2,
    .split-story h2,
    .production-feature h2,
    .transition-section h2,
    .partner-section h2 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .split-story {
        gap: 58px;
    }

    .split-story__badge {
        bottom: -15px;
        right: -6px;
    }

    .service-grid,
    .values-grid,
    .capability-grid,
    .news-list {
        grid-template-columns: 1fr;
    }

    .service-card,
    .capability-card {
        min-height: auto;
    }

    .service-card h3,
    .capability-card h2 {
        margin-top: 38px;
    }

    .format-section__layout {
        gap: 50px;
    }

    .format-cloud {
        gap: 8px;
    }

    .format-cloud li {
        font-size: 14px;
        padding: 10px 12px;
    }

    .process-grid,
    .process-grid--three {
        grid-template-columns: 1fr;
    }

    .process-grid li,
    .process-grid li:nth-child(3),
    .process-grid li:nth-child(4) {
        border: 0;
        border-top: 1px solid var(--rwf-line);
        min-height: 0;
        padding: 24px 0;
    }

    .process-grid li:last-child {
        border-bottom: 1px solid var(--rwf-line);
    }

    .process-grid h3 {
        margin: 22px 0 9px;
    }

    .modern-cta {
        padding: 68px 0;
    }

    .modern-cta__inner {
        display: block;
    }

    .modern-cta__inner > p:not(.eyebrow) {
        margin: 24px 0 28px;
    }

    .modern-cta .modern-button {
        width: 100%;
    }

    .page-hero {
        min-height: 480px;
    }

    .page-hero__content {
        padding-bottom: 55px;
        padding-top: 75px;
    }

    .page-hero h1 {
        font-size: clamp(48px, 13vw, 64px);
    }

    .history-timeline li {
        gap: 18px;
        grid-template-columns: 95px 1fr;
    }

    .history-timeline time {
        font-size: 21px;
    }

    .transition-section__grid,
    .partner-section__grid {
        gap: 42px;
    }

    .values-grid article {
        min-height: 0;
    }

    .values-grid h3 {
        margin-top: 37px;
    }

    .product-columns,
    .legal-columns,
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

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

    .legal-card--wide {
        grid-column: auto;
    }

    .contact-hero {
        padding: 78px 0 70px;
    }

    .contact-hero__grid {
        gap: 29px;
    }

    .contact-hero__grid > p {
        font-size: 16px;
    }

    .contact-form-submit {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-form-submit .modern-button {
        width: 100%;
    }

    .legal-hero,
    .news-hero {
        padding: 70px 0 57px;
    }

    .legal-data > div {
        gap: 5px;
        grid-template-columns: 1fr;
    }

    .legal-data dd {
        padding-bottom: 4px;
    }

    .privacy-content {
        padding: 28px 22px;
    }

    .news-page__content {
        padding-bottom: 70px;
        padding-top: 52px;
    }

    .news-card__content {
        padding: 25px;
    }

    .news-article__header,
    .news-article__body {
        padding: 31px 23px;
    }

    .news-back-link {
        margin: 25px 23px 0;
    }

    .news-article__body {
        font-size: 16px;
    }

    .career-hero {
        padding: 78px 0 70px;
    }

    .career-hero__grid {
        gap: 29px;
    }

    .career-hero__grid > p {
        font-size: 16px;
    }

    .site-footer {
        padding-top: 65px;
    }

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

    .site-footer__intro > p:last-child {
        max-width: 420px;
    }

    .site-footer__bar {
        align-items: start;
        grid-template-columns: 1fr;
        margin-top: 55px;
    }

    .site-footer__legal {
        grid-row: 2;
    }

    .footer-credit {
        text-align: left;
    }
}

@media (max-width: 430px) {
    .site-header .navigation-portrait .nav-menus-wrapper {
        max-width: 88vw;
    }

    .production-feature__image::after {
        right: 0;
    }

    .trust-strip__grid {
        grid-template-columns: 1fr;
    }

    .trust-strip__grid > div,
    .trust-strip__grid > div:nth-child(3),
    .trust-strip__grid > div:nth-child(4) {
        border: 0;
        border-bottom: 1px solid var(--rwf-line);
    }

    .history-timeline li {
        grid-template-columns: 1fr;
    }

    .history-timeline__current {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .opening-hours div {
        display: block;
    }

    .opening-hours div span {
        display: block;
        text-align: left !important;
    }
}

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

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