:root {
    --ct-blue: #55a7f8;
    --ct-blue-deep: #1e75d8;
    --ct-green: #96d200;
    --ct-green-soft: #dff5a9;
    --ct-ink: #17191c;
    --ct-muted: #5f646b;
    --ct-surface: #f2f3f3;
    --ct-white: #fff;
    --ct-radius: 8px;
    --ct-width: 1280px;
    --ct-ease: cubic-bezier(.16, 1, .3, 1);
}

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

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

body.cleantex-home {
    margin: 0;
    color: var(--ct-ink);
    background: var(--ct-white);
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.45;
    overflow-x: clip;
}

body.menu-open {
    overflow: hidden;
}

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

.cleantex-home a {
    color: inherit;
    text-decoration: none;
}

.cleantex-home button,
.cleantex-home input {
    font: inherit;
}

.content-width {
    width: min(var(--ct-width), calc(100% - 80px));
    margin-inline: auto;
}

.section-pad {
    padding-block: 110px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    transform: translateY(-150%);
    border-radius: 4px;
    background: #000;
    color: #fff;
}

.skip-link:focus {
    transform: translateY(0);
}

.button {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 26px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-family: "Inter", Arial, sans-serif;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0;
    cursor: pointer;
    transition: transform .25s var(--ct-ease), box-shadow .25s ease, background-color .25s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(18, 28, 45, .14);
}

.button--blue {
    background: var(--ct-blue);
    color: #fff !important;
}

.button--blue:hover,
.button--blue:focus-visible {
    background: var(--ct-blue-deep);
}

.button--green {
    background: var(--ct-green);
    color: #fff !important;
}

.button--green:hover,
.button--green:focus-visible {
    background: #79af00;
}

.button--outline {
    border-color: var(--ct-ink);
    background: transparent;
    color: var(--ct-ink) !important;
}

.button--outline:hover,
.button--outline:focus-visible {
    background: var(--ct-ink);
    color: #fff !important;
}

.section-heading {
    margin-bottom: 58px;
}

.section-heading.centered {
    max-width: 980px;
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.location h2,
.about h2,
.sustainability h2,
.trial h2 {
    margin: 0;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: clamp(2.2rem, 4.2vw, 4.45rem);
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: 0;
}

.section-heading h2 span,
.location h2 span,
.about h2 span,
.trial h2 span {
    color: var(--ct-blue);
}

.section-heading > p {
    max-width: 900px;
    margin: 20px auto 0;
    color: #34383d;
    font-size: 1.08rem;
    line-height: 1.55;
}

/* Hero */
.hero {
    position: relative;
    min-height: max(820px, 100svh);
    overflow: hidden;
    background: #edf3f8;
    isolation: isolate;
}

.hero__canvas,
.hero__poster,
.hero__wash {
    position: absolute;
    z-index: -3;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__canvas {
    opacity: 0;
    transition: opacity .7s ease;
}

.hero__canvas.is-ready {
    opacity: 1;
}

.hero__poster {
    z-index: -4;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero__wash {
    z-index: -2;
    background: linear-gradient(90deg, rgba(245, 248, 251, .98) 0%, rgba(245, 248, 251, .88) 29%, rgba(245, 248, 251, .16) 61%, rgba(245, 248, 251, .18) 100%);
}

.site-header {
    position: absolute;
    z-index: 40;
    top: 0;
    left: 0;
    display: grid;
    width: 100%;
    grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
    align-items: center;
    gap: 28px;
    padding: 22px 44px;
}

.site-logo {
    width: clamp(170px, 15vw, 220px);
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 4px 20px rgba(28, 45, 65, .12);
    backdrop-filter: blur(18px);
}

.desktop-nav a {
    padding: 12px 27px;
    border-radius: 6px;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color .2s ease, background-color .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-active {
    background: var(--ct-blue);
    color: #fff;
}

.header-cta {
    justify-self: end;
    font-family: "DM Sans", Arial, sans-serif;
    font-weight: 600;
    white-space: nowrap;
}

.header-cta::after {
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 4px;
    background: var(--ct-blue);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s var(--ct-ease);
}

.header-cta:hover::after,
.header-cta:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.menu-toggle:focus:not(:focus-visible) {
    outline: none;
}

.menu-toggle:focus-visible {
    outline: 3px solid rgba(85, 167, 248, .45);
    outline-offset: 3px;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: max(820px, 100svh);
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 215px;
}

.hero__title {
    max-width: 810px;
    margin: 0;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: clamp(3.2rem, 5.6vw, 6.2rem);
    font-weight: 400;
    line-height: .94;
    letter-spacing: 0;
}

.hero__line {
    display: flex;
    flex-wrap: wrap;
    gap: 0 .22em;
}

.word-reveal {
    display: inline-block;
    overflow: hidden;
    padding-bottom: .08em;
}

.word-reveal > span {
    display: inline-block;
    animation: wordReveal .7s var(--ct-ease) both;
}

.word-reveal.accent {
    color: var(--ct-blue);
}

.hero__cta-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 48px;
}

.button--hero {
    min-width: 350px;
    min-height: 66px;
}

.hero__cta-row p {
    max-width: 350px;
    margin: 0;
    font-weight: 600;
    line-height: 1.35;
}

.hero-panels {
    position: absolute;
    z-index: 10;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 176px;
    grid-template-columns: 1.25fr .7fr 1.25fr;
}

.hero-panel {
    position: relative;
    display: flex;
    min-width: 0;
    overflow: hidden;
}

.hero-panel h2,
.hero-panel p {
    margin: 0;
}

.hero-panel--cloth {
    align-items: center;
    justify-content: space-between;
    padding: 30px 32px 28px max(38px, calc((100vw - var(--ct-width)) / 2));
    background: #efefef;
}

.hero-panel--cloth > div {
    position: relative;
    z-index: 2;
}

.hero-panel--cloth h2 {
    max-width: 330px;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: clamp(1.35rem, 2vw, 2.05rem);
    font-weight: 600;
    line-height: 1.08;
}

.hero-panel--cloth img {
    position: absolute;
    right: 0;
    bottom: -50%;
    width: min(34%, 230px);
    mix-blend-mode: multiply;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 22px;
    border-bottom: 1px solid currentColor;
    font-size: .92rem;
    font-weight: 600;
}

.hero-panel--stat {
    flex-direction: column;
    justify-content: center;
    padding: 28px 44px;
    background: #fff;
}

.hero-panel--stat strong {
    color: var(--ct-blue);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: clamp(3rem, 4.8vw, 5rem);
    font-weight: 600;
    line-height: .86;
}

.hero-panel--stat span {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-panel--impact {
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 32px max(38px, calc((100vw - var(--ct-width)) / 2)) 32px 55px;
    background: #050505;
    color: #fff;
}

.hero-panel--impact h2 {
    font-family: "DM Sans", Arial, sans-serif;
    font-size: clamp(1.35rem, 2.1vw, 2.1rem);
    font-weight: 600;
    line-height: 1.1;
}

.hero-panel--impact h2 span {
    color: var(--ct-blue);
}

.hero-panel--impact p {
    max-width: 190px;
    color: rgba(255, 255, 255, .74);
    line-height: 1.25;
}

/* Benefits */
.benefits {
    background: #fff;
}

.benefit-grid {
    display: grid;
    grid-template-columns: .9fr 1fr 1.05fr;
    grid-template-rows: 250px 250px;
    gap: 16px;
}

.benefit-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--ct-radius);
    background: #ededed;
}

.benefit-card h3,
.benefit-card p {
    margin: 0;
}

.benefit-card h3 {
    font-family: "DM Sans", Arial, sans-serif;
    font-size: clamp(1.55rem, 2.35vw, 2.25rem);
    font-weight: 600;
    line-height: 1;
}

.benefit-card p {
    margin-top: 10px;
    color: #5a5d61;
    line-height: 1.3;
}

.benefit-card--blue {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    background: var(--ct-blue);
    color: #fff;
}

.benefit-card--blue p {
    color: rgba(255, 255, 255, .88);
}

.benefit-card--wide {
    grid-column: 2 / 3;
}

.benefit-card--wide img,
.benefit-card--clean img,
.benefit-card--detail img,
.benefit-card--tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-card--wide::after,
.benefit-card--clean::after,
.benefit-card--tall::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(240, 240, 240, .98) 0%, rgba(240, 240, 240, .76) 43%, rgba(240, 240, 240, 0) 75%);
    content: "";
}

.benefit-card--wide > div,
.benefit-card--clean > div,
.benefit-card--tall > div {
    position: absolute;
    z-index: 2;
    left: 26px;
    bottom: 24px;
    max-width: 58%;
}

.benefit-card--tall {
    grid-column: 3;
    grid-row: 1 / 3;
}

.benefit-card--tall::after {
    background: linear-gradient(0deg, rgba(240, 240, 240, .98) 0%, rgba(240, 240, 240, .84) 34%, rgba(240, 240, 240, 0) 65%);
}

.benefit-card--tall > div {
    right: 28px;
    bottom: 28px;
    left: 28px;
    max-width: none;
}

.benefit-card--clean {
    grid-column: 1 / 2;
}

.benefit-card--detail {
    grid-column: 2 / 3;
}

/* Process */
.process {
    position: relative;
    height: 285vh;
    min-height: 1800px;
    background: #f5f6f6;
}

.process__sticky {
    position: sticky;
    top: 0;
    display: flex;
    height: 100svh;
    min-height: 700px;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-block: 72px;
}

.process__glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(204, 238, 113, .64) 0%, rgba(255, 255, 255, .8) 38%, rgba(221, 225, 229, .92) 100%);
}

.process h2 {
    position: relative;
    z-index: 2;
    width: min(900px, calc(100% - 48px));
    margin: 0 auto -42px;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: clamp(3.6rem, 7.5vw, 7.5rem);
    font-weight: 600;
    line-height: .83;
    letter-spacing: 0;
    text-align: center;
}

.process__viewport {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 75px;
}

.process__track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 26px;
    will-change: transform;
}

.process-card {
    position: relative;
    display: flex;
    width: clamp(270px, 24vw, 350px);
    min-height: 300px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: var(--ct-radius);
    background: rgba(255, 255, 255, .35);
    color: rgba(23, 25, 28, .48);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
    backdrop-filter: blur(10px);
    transform: scale(.9);
    transition: transform .45s var(--ct-ease), color .45s ease, background-color .45s ease, opacity .45s ease;
}

.process-card:nth-child(even).is-active {
    background: var(--ct-green);
}

.process-card:nth-child(odd).is-active {
    background: var(--ct-blue);
}

.process-card.is-active {
    color: #fff;
    box-shadow: 0 22px 55px rgba(35, 49, 64, .18);
    transform: scale(1);
}

.process-card__number {
    position: absolute;
    top: -34px;
    left: 18px;
    color: rgba(255, 255, 255, .22);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 10rem;
    font-weight: 700;
    line-height: 1;
}

.process-card h3,
.process-card p {
    position: relative;
    z-index: 2;
    margin: 0;
}

.process-card h3 {
    max-width: 90%;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 1.9rem;
    font-weight: 600;
    line-height: .98;
}

.process-card p {
    margin-top: 12px;
    line-height: 1.28;
}

.process__progress {
    position: relative;
    z-index: 4;
    width: min(540px, calc(100% - 80px));
    height: 3px;
    margin: 44px auto 0;
    overflow: hidden;
    border-radius: 3px;
    background: rgba(20, 24, 28, .14);
}

.process__progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--ct-ink);
    transform: scaleX(0);
    transform-origin: left;
}

/* Products */
.products {
    background: #fff;
}

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

.product-card {
    position: relative;
    min-height: 290px;
    overflow: hidden;
    border-radius: var(--ct-radius);
    background: #ececec;
}

.product-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(236, 236, 236, .98) 0%, rgba(236, 236, 236, .88) 38%, rgba(236, 236, 236, .12) 76%);
    content: "";
}

.product-card img {
    width: 100%;
    height: 100%;
    min-height: 290px;
    object-fit: cover;
    object-position: right center;
    transition: transform .7s var(--ct-ease);
}

.product-card:hover img {
    transform: scale(1.035);
}

.product-card > div {
    position: absolute;
    z-index: 2;
    bottom: 30px;
    left: 30px;
    max-width: 44%;
}

.product-card h3,
.product-card p {
    margin: 0;
}

.product-card h3 {
    font-family: "DM Sans", Arial, sans-serif;
    font-size: clamp(1.7rem, 2.6vw, 2.6rem);
    font-weight: 600;
    line-height: .92;
}

.product-card p {
    margin-top: 12px;
    color: #60646a;
    line-height: 1.25;
}

/* Sustainability */
.sustainability {
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background: #efefef;
}

.sustainability__inner {
    display: grid;
    min-height: 760px;
    grid-template-columns: 1fr 1.25fr;
    align-items: start;
}

.sustainability__copy {
    position: relative;
    z-index: 3;
    padding: 45px 0 110px;
}

.sustainability h2 span {
    color: var(--ct-green);
}

.sustainability__copy > p {
    max-width: 590px;
    margin: 24px 0 0;
    font-size: 1.02rem;
    line-height: 1.58;
}

.sustainability__copy > .button {
    margin-top: 32px;
}

.certification {
    display: grid;
    max-width: 560px;
    grid-template-columns: 240px 1fr 150px;
    align-items: center;
    gap: 18px;
    margin-top: 44px;
}

.certification > img:first-child {
    width: 230px;
}

.certification strong,
.certification span {
    display: block;
    font-size: .88rem;
}

.certification .certificate {
    width: 120px;
    transform: rotate(11deg);
    filter: drop-shadow(0 18px 14px rgba(0, 0, 0, .16));
}

.sustainability__tree {
    position: absolute;
    z-index: 2;
    right: max(-110px, calc((100vw - var(--ct-width)) / 2 - 190px));
    bottom: 105px;
    width: min(60vw, 850px);
    max-height: 92%;
    object-fit: contain;
    object-position: right bottom;
}

.impact-stats {
    position: relative;
    z-index: 4;
    display: grid;
    min-height: 142px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    padding: 22px max(40px, calc((100vw - var(--ct-width)) / 2));
    background: var(--ct-green);
}

.impact-stats > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.impact-stats strong {
    color: #fff;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    line-height: 1;
}

.impact-stats span {
    max-width: 250px;
    margin-top: 10px;
    font-size: 1rem;
    text-transform: uppercase;
}

/* Sectors */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
}

.sector-card {
    position: relative;
    min-height: 355px;
    overflow: hidden;
    border-radius: var(--ct-radius);
    background: #e7e7e7;
}

.sector-card::after {
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(0deg, rgba(239, 239, 239, 1), rgba(239, 239, 239, .82), rgba(239, 239, 239, 0));
    content: "";
}

.sector-card img {
    width: 100%;
    height: 100%;
    min-height: 355px;
    object-fit: cover;
    filter: saturate(.65) hue-rotate(170deg);
    transition: filter .4s ease, transform .6s var(--ct-ease);
}

.sector-card:hover img {
    filter: saturate(1) hue-rotate(0deg);
    transform: scale(1.03);
}

.sector-card h3 {
    position: absolute;
    z-index: 2;
    right: 26px;
    bottom: 24px;
    left: 26px;
    margin: 0;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: clamp(1.65rem, 2.5vw, 2.45rem);
    font-weight: 600;
    line-height: .96;
}

/* Location */
.location {
    padding-top: 30px;
    background: #fff;
}

.location__grid {
    display: grid;
    min-height: 650px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.location__map {
    width: 100%;
    max-width: 620px;
    aspect-ratio: 1;
    object-fit: contain;
}

.location__copy h2 span {
    color: var(--ct-green);
}

.location__copy p {
    max-width: 590px;
    margin: 24px 0 32px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* About */
.about {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    background: #191919;
}

.about__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about__card {
    position: relative;
    z-index: 2;
    width: min(600px, calc(100% - 48px));
    margin-left: max(48px, calc((100vw - var(--ct-width)) / 2));
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: var(--ct-radius);
    background: rgba(250, 250, 250, .78);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .16);
    backdrop-filter: blur(18px);
    transform: translateY(105px);
}

.about__card p {
    margin: 24px 0 32px;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Form */
.trial {
    background: #fff;
}

.trial__inner {
    max-width: 1040px;
}

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

.trial-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.trial-form input {
    width: 100%;
    height: 58px;
    padding: 0 16px;
    border: 1px solid #d4d7da;
    border-radius: 8px;
    outline: none;
    background: #f6f7f8;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.trial-form input:focus {
    border-color: var(--ct-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(85, 167, 248, .17);
}

.trial-form .button {
    grid-column: 2;
    margin-top: 18px;
}

.trial-form > p {
    grid-column: 1 / -1;
    margin: -8px 0 0;
    color: #4f5358;
    text-align: center;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.form-notice {
    margin: -20px auto 34px;
    padding: 14px 18px;
    border-radius: 6px;
    text-align: center;
}

.form-notice--success {
    background: #e5f5c7;
    color: #2a5000;
}

.form-notice--error {
    background: #ffe3e3;
    color: #8b1d1d;
}

/* Footer */
.site-footer {
    padding: 72px 0 28px;
    background: #4e91d5;
    color: #fff;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.25fr .9fr .9fr 1.1fr;
    gap: 50px;
}

.footer-brand img {
    width: 230px;
    filter: brightness(0) invert(1);
}

.site-footer h2 {
    margin: 18px 0 14px;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.site-footer p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .76);
    line-height: 1.6;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    text-decoration: underline;
}

.footer-cert img {
    width: 250px;
    filter: brightness(0) invert(1);
}

.footer-cert p {
    font-size: .9rem;
    font-weight: 600;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 65px;
    color: rgba(255, 255, 255, .72);
    font-size: .9rem;
}

.site-footer__bottom div {
    display: flex;
    gap: 28px;
}

/* Reveal animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .75s var(--ct-ease), transform .75s var(--ct-ease);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade { animation: fadeIn .7s var(--ct-ease) both; }
.reveal-left { animation: slideInLeft .8s var(--ct-ease) both; }
.reveal-right { animation: slideInRight .8s var(--ct-ease) both; }
.reveal-up { animation: fadeUp .8s var(--ct-ease) both; }
.delay-200 { animation-delay: .2s !important; }
.delay-300 { animation-delay: .3s !important; }
.delay-400 { animation-delay: .4s !important; }
.delay-500 { animation-delay: .5s !important; }
.delay-600 { animation-delay: .6s !important; }
.delay-700 { animation-delay: .7s !important; }
.delay-800 { animation-delay: .8s !important; }
.delay-900 { animation-delay: .9s !important; }
.delay-1000 { animation-delay: 1s !important; }
.delay-1100 { animation-delay: 1.1s !important; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes wordReveal {
    from { opacity: 0; filter: blur(4px); transform: translateY(100%); }
    to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

@media (max-width: 1180px) {
    .content-width {
        width: min(var(--ct-width), calc(100% - 48px));
    }

    .site-header {
        grid-template-columns: 180px 1fr auto;
        padding-inline: 24px;
    }

    .desktop-nav a {
        padding-inline: 16px;
    }

    .header-cta {
        font-size: .9rem;
    }

    .hero__title {
        max-width: 690px;
    }

    .hero-panel--cloth {
        padding-left: 24px;
    }

    .hero-panel--impact {
        padding-right: 24px;
        padding-left: 32px;
    }

    .benefit-grid {
        grid-template-columns: .8fr 1fr 1fr;
    }

    .sustainability__tree {
        right: -180px;
    }
}

@media (max-width: 960px) {
    .section-pad {
        padding-block: 84px;
    }

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

    .desktop-nav {
        display: none;
    }

    .header-cta {
        display: inline-flex;
    }

    .menu-toggle {
        display: grid;
        width: 46px;
        height: 46px;
        place-items: center;
        border: 1px solid rgba(0, 0, 0, .1);
        border-radius: 50%;
        background: rgba(255, 255, 255, .76);
        color: var(--ct-ink);
        cursor: pointer;
        backdrop-filter: blur(14px);
    }

    .menu-toggle .icon-close {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .icon-menu {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .icon-close {
        display: inline-flex;
    }

    .mobile-menu {
        position: fixed;
        z-index: 35;
        inset: 0;
        display: flex;
        visibility: hidden;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        background: rgba(5, 8, 12, .96);
        color: #fff;
        opacity: 0;
        transition: opacity .3s ease, visibility .3s ease;
    }

    .mobile-menu.is-open {
        visibility: visible;
        opacity: 1;
    }

    .mobile-menu > a:not(.button) {
        font-family: "DM Sans", Arial, sans-serif;
        font-size: 2rem;
        font-weight: 500;
    }

    .hero {
        min-height: 1020px;
    }

    .hero__content {
        min-height: 1020px;
        padding-bottom: 390px;
    }

    .hero__title {
        max-width: 600px;
        font-size: clamp(3.2rem, 8vw, 5.3rem);
    }

    .hero__wash {
        background: linear-gradient(90deg, rgba(245, 248, 251, .98), rgba(245, 248, 251, .74) 55%, rgba(245, 248, 251, .18));
    }

    .hero-panels {
        grid-template-columns: 1.2fr .8fr;
    }

    .hero-panel--impact {
        grid-column: 1 / -1;
        min-height: 150px;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(3, 260px);
    }

    .benefit-card--blue { grid-column: 1; grid-row: 1; }
    .benefit-card--wide { grid-column: 2; grid-row: 1; }
    .benefit-card--tall { grid-column: 2; grid-row: 2 / 4; }
    .benefit-card--clean { grid-column: 1; grid-row: 2; }
    .benefit-card--detail { grid-column: 1; grid-row: 3; }

    .process {
        height: 245vh;
    }

    .process-card {
        width: 300px;
    }

    .product-card > div {
        max-width: 58%;
    }

    .sustainability__inner {
        min-height: 930px;
        grid-template-columns: 1fr;
    }

    .sustainability__copy {
        max-width: 620px;
    }

    .sustainability__tree {
        right: -120px;
        bottom: 120px;
        width: 62vw;
    }

    .sector-grid {
        gap: 18px;
    }

    .location__grid {
        gap: 45px;
    }

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

@media (max-width: 720px) {
    html {
        scroll-padding-top: 72px;
    }

    .content-width {
        width: calc(100% - 32px);
    }

    .section-pad {
        padding-block: 70px;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .location h2,
    .about h2,
    .sustainability h2,
    .trial h2 {
        font-size: clamp(2.25rem, 10vw, 3.25rem);
    }

    .site-header {
        grid-template-columns: 1fr auto;
        padding: 15px 16px;
    }

    .site-logo {
        width: 156px;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: 1160px;
    }

    .hero__content {
        min-height: 810px;
        justify-content: flex-start;
        padding-top: 135px;
        padding-bottom: 90px;
    }

    .hero__title {
        max-width: 100%;
        font-size: clamp(3rem, 14vw, 4.5rem);
        line-height: .94;
    }

    .hero__line {
        display: block;
    }

    .hero__line .word-reveal + .word-reveal {
        margin-left: .18em;
    }

    .hero__cta-row {
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
        margin-top: 34px;
    }

    .button--hero {
        width: 100%;
        min-width: 0;
        min-height: 62px;
        padding-inline: 18px;
    }

    .hero__cta-row p {
        max-width: 92%;
        font-size: .94rem;
    }

    .hero__canvas,
    .hero__poster {
        height: 810px;
    }

    .hero__wash {
        height: 810px;
        background: linear-gradient(180deg, rgba(245, 248, 251, .95) 0%, rgba(245, 248, 251, .72) 55%, rgba(245, 248, 251, .2) 100%);
    }

    .hero-panels {
        position: relative;
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .hero-panel {
        min-height: 160px;
    }

    .hero-panel--cloth {
        padding: 28px 24px;
    }

    .hero-panel--cloth img {
        width: 38%;
    }

    .hero-panel--stat {
        min-height: 132px;
        padding: 24px;
    }

    .hero-panel--impact {
        grid-column: auto;
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        padding: 28px 24px;
    }

    .hero-panel--impact p {
        max-width: 320px;
    }

    .benefit-grid {
        display: flex;
        flex-direction: column;
    }

    .benefit-card {
        min-height: 260px;
    }

    .benefit-card--tall {
        min-height: 460px;
    }

    .process {
        height: auto;
        min-height: 0;
    }

    .process__sticky {
        position: relative;
        height: auto;
        min-height: 0;
        padding-block: 84px;
    }

    .process h2 {
        margin-bottom: 30px;
        font-size: clamp(3.4rem, 16vw, 5.2rem);
    }

    .process__viewport {
        overflow-x: auto;
        padding: 10px 16px 26px;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }

    .process__viewport::-webkit-scrollbar {
        display: none;
    }

    .process__track {
        gap: 14px;
        transform: none !important;
    }

    .process-card {
        width: min(82vw, 320px);
        min-height: 320px;
        flex: 0 0 auto;
        scroll-snap-align: center;
        transform: none;
    }

    .process-card:nth-child(even),
    .process-card:nth-child(odd) {
        background: rgba(255, 255, 255, .46);
        color: rgba(23, 25, 28, .62);
    }

    .process-card:first-child {
        background: var(--ct-blue);
        color: #fff;
    }

    .process__progress {
        display: none;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card,
    .product-card img {
        min-height: 300px;
    }

    .product-card > div {
        max-width: 65%;
    }

    .sustainability {
        padding-top: 44px;
    }

    .sustainability__inner {
        min-height: 1040px;
    }

    .sustainability__copy {
        padding-bottom: 400px;
    }

    .certification {
        grid-template-columns: 1fr 100px;
    }

    .certification > div {
        grid-column: 1;
    }

    .certification .certificate {
        grid-column: 2;
        grid-row: 1 / 3;
    }

    .sustainability__tree {
        right: -70px;
        bottom: 125px;
        width: 105vw;
        max-width: 640px;
    }

    .impact-stats {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-block: 38px;
    }

    .sector-grid {
        grid-template-columns: 1fr;
    }

    .location {
        padding-top: 40px;
    }

    .location__grid {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .location__map {
        max-width: 520px;
        margin-inline: auto;
    }

    .about {
        display: flex;
        min-height: 760px;
        align-items: flex-end;
        padding: 24px 16px;
    }

    .about__image {
        object-position: 58% center;
    }

    .about__card {
        width: 100%;
        margin: 0;
        padding: 28px;
        transform: none;
    }

    .trial-form {
        grid-template-columns: 1fr;
    }

    .trial-form .button,
    .trial-form > p {
        grid-column: 1;
    }

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

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 44px;
    }
}

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

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

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}
