:root {
    --navy: #102840;
    --orya-blue: #2f4fad;
    --orya-cyan: #57c3e6;
    --orya-green: #c7ef35;
    --orya-green-dark: #1f9644;
    --orya-yellow: #ffe61f;
    --text: #19314c;
    --page-width: 1180px;
    --page-width-wide: 1260px;
    --site-content-width: 80%;
    --font-primary: "Avenir", "Segoe UI", "Montserrat", sans-serif;
    --shadow: 0 22px 48px rgba(22, 48, 82, 0.14);
    --shadow-soft: 0 10px 28px rgba(22, 48, 82, 0.1);
    --line: rgba(16, 40, 64, 0.08);
}

@font-face {
    font-family: "Cleanow";
    src: url("/fonts/Cleanow.ttf") format("truetype");
    font-display: swap;
}

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

html {
    font-size: 17px;
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text);
    background: #fff;
    max-width: 100%;
    overflow-x: hidden;
}

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

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

button,
input {
    font: inherit;
}

.content-wrap,
.footer-wrap {
    width: var(--site-content-width);
    margin: 0 auto;
}

.content-wrap--wide {
    width: var(--site-content-width);
}

.orya-main {
    overflow-x: hidden;
    padding-bottom: 4rem;
}

.home-page {
    --home-page-gap: 1.35rem;
    display: grid;
    gap: var(--home-page-gap);
    padding-top: 0.35rem;
}

.home-page[data-home-page] > * {
    opacity: 0;
    transform: translateY(1rem);
    transition:
        opacity 0.68s ease,
        transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page[data-home-page] > *:nth-child(1) {
    transition-delay: 0.04s;
}

.home-page[data-home-page] > *:nth-child(2) {
    transition-delay: 0.1s;
}

.home-page[data-home-page] > *:nth-child(3) {
    transition-delay: 0.16s;
}

.home-page[data-home-page] > *:nth-child(4) {
    transition-delay: 0.22s;
}

.home-page[data-home-page] > *:nth-child(5) {
    transition-delay: 0.28s;
}

.home-page[data-home-page] > *:nth-child(6) {
    transition-delay: 0.34s;
}

.home-page[data-home-page] > *:nth-child(7) {
    transition-delay: 0.4s;
}

.home-page[data-home-page] > *:nth-child(8) {
    transition-delay: 0.46s;
}

.home-page[data-home-page].is-loaded > * {
    opacity: 1;
    transform: translateY(0);
}

.section-copy {
    display: grid;
    gap: 0.68rem;
}

.section-copy--center {
    max-width: 46rem;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.section-copy--compact {
    margin-bottom: 1.5rem;
}

.section-copy__eyebrow {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--orya-blue);
}

.section-copy h2,
.multi-purpose-copy h2,
.mop-showcase__copy h2,
.oil-dirt-feature__copy h2 {
    margin: 0;
    font-family: var(--font-primary);
    font-size: clamp(2rem, 3.4vw, 3.6rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--orya-blue);
}

.section-copy p,
.oil-dirt-feature__copy p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #56afd8;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.5rem 0 0.42rem;
    background:
        linear-gradient(180deg, rgba(245, 250, 255, 0.94), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(16, 40, 64, 0.07);
}

.site-header::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(92%, 76rem);
    height: 0.18rem;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(47, 79, 173, 0.9),
        rgba(87, 195, 230, 0.72) 56%,
        rgba(199, 239, 53, 0.92)
    );
}

.site-header__nav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.8rem;
    min-height: auto;
}

.site-header__panel {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.8rem;
    min-width: 0;
}

.site-header__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(134px, 14vw);
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.site-header__menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
    padding: 0.62rem 0.88rem;
    border: 1px solid rgba(47, 79, 173, 0.08);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 246, 255, 0.9));
    color: var(--orya-blue);
    font-family: var(--font-primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow:
        0 14px 26px rgba(22, 48, 82, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    cursor: pointer;
}

.site-header__menu-toggle-icon {
    display: inline-grid;
    gap: 0.2rem;
}

.site-header__menu-toggle-icon span {
    display: block;
    width: 1rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.site-header__menu-toggle-label {
    line-height: 1;
}

.site-header.is-menu-open .site-header__menu-toggle-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .site-header__menu-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .site-header__menu-toggle-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.site-header__hours {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.58rem 0.82rem;
    border-radius: 999px;
    border: 1px solid rgba(47, 79, 173, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(234, 246, 255, 0.88));
    color: #3859b8;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    white-space: nowrap;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.site-header__clock {
    position: relative;
    width: 0.92rem;
    height: 0.92rem;
    border: 1.8px solid currentColor;
    border-radius: 50%;
    flex-shrink: 0;
}

.site-header__clock::before,
.site-header__clock::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    background: currentColor;
    transform-origin: bottom center;
    border-radius: 999px;
}

.site-header__clock::before {
    height: 0.26rem;
    transform: translate(-50%, -100%);
}

.site-header__clock::after {
    height: 0.34rem;
    transform: translate(-50%, -100%) rotate(48deg);
}

.site-header__nav-shell {
    position: relative;
    min-width: 0;
    padding: 0.38rem 0.46rem;
    border-radius: 999px;
    border: 1px solid rgba(47, 79, 173, 0.08);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 255, 0.94));
    box-shadow:
        0 16px 28px rgba(22, 48, 82, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.site-header__nav-shell::after {
    content: "";
    position: absolute;
    left: 1.05rem;
    right: 1.05rem;
    bottom: -0.18rem;
    height: 0.24rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(87, 195, 230, 0.58), rgba(199, 239, 53, 0.82));
    pointer-events: none;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.32rem;
    flex: 1 1 auto;
    min-width: 0;
}

.site-nav__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--orya-blue);
    line-height: 1;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.site-nav__link:hover {
    background: rgba(47, 79, 173, 0.08);
    color: #183fa7;
    transform: translateY(-1px);
}

.site-nav__link.is-current {
    color: #183fa7;
    background: linear-gradient(135deg, rgba(87, 195, 230, 0.18), rgba(255, 255, 255, 0.98));
    box-shadow:
        inset 0 0 0 1px rgba(87, 195, 230, 0.32),
        0 8px 18px rgba(47, 79, 173, 0.08);
}

.site-nav__link--disabled {
    opacity: 0.45;
    pointer-events: none;
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.65rem;
}

.site-search {
    position: relative;
    flex: 0 0 min(210px, 100%);
    z-index: 6;
}

.site-search__field {
    display: inline-flex;
    align-items: center;
    gap: 0.36rem;
    width: 100%;
    padding: 0.58rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(47, 79, 173, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 255, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.site-search:focus-within .site-search__field,
.site-search.is-open .site-search__field {
    border-color: rgba(47, 79, 173, 0.26);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 10px 22px rgba(22, 48, 82, 0.08);
}

.site-search input {
    flex: 1;
    min-width: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--orya-blue);
    font-size: 0.84rem;
}

.site-search input::placeholder {
    color: #7e95b7;
}

.site-search button {
    display: grid;
    place-items: center;
    width: 1.15rem;
    height: 1.15rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--orya-cyan);
    cursor: pointer;
}

.site-search svg {
    width: 0.84rem;
    height: 0.84rem;
}

.site-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.74rem 1.08rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #2f4fad, #456fd0);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 16px 28px rgba(47, 79, 173, 0.24);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        opacity 0.2s ease;
}

.site-header__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 30px rgba(47, 79, 173, 0.28);
}

.site-search__results {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    width: min(23rem, calc(100vw - 1.5rem));
    display: grid;
    gap: 0.45rem;
    padding: 0.7rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(16, 40, 64, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 40px rgba(16, 40, 64, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-search__result,
.site-search__empty {
    border-radius: 0.95rem;
}

.site-search__result {
    display: grid;
    gap: 0.18rem;
    padding: 0.8rem 0.9rem;
    border: 1px solid rgba(16, 40, 64, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.site-search__result:hover,
.site-search__result:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(87, 195, 230, 0.36);
    box-shadow: 0 12px 24px rgba(16, 40, 64, 0.1);
    outline: none;
}

.site-search__result-title {
    font-family: var(--font-primary);
    font-size: 1.18rem;
    font-weight: 700;
    line-height: 1.12;
    color: var(--orya-blue);
    text-transform: uppercase;
}

.site-search__result-subtitle,
.site-search__empty {
    color: #567291;
    line-height: 1.5;
    font-size: 0.92rem;
}

.site-search__empty {
    margin: 0;
    padding: 0.85rem 0.9rem;
    background: rgba(247, 251, 255, 0.92);
}

.site-header,
.site-header__logo,
.site-header__menu-toggle,
.site-header__hours,
.site-header__panel,
.site-header__nav-shell,
.site-search__field,
.site-header__cta,
.site-nav__link {
    transition:
        padding 0.22s ease,
        width 0.22s ease,
        gap 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease;
}

.site-header.is-condensed {
    padding: 0.32rem 0 0.26rem;
}

.site-header.is-condensed .site-header__logo {
    width: min(126px, 13vw);
    padding: 0;
}

.site-header.is-condensed .site-header__menu-toggle {
    padding: 0.56rem 0.8rem;
}

.site-header.is-condensed .site-header__hours {
    padding: 0.48rem 0.72rem;
}

.site-header.is-condensed .site-header__nav-shell {
    padding: 0.32rem 0.4rem;
}

.site-header.is-condensed .site-nav__link {
    padding: 0.62rem 0.88rem;
}

.site-header.is-condensed .site-search__field {
    padding: 0.5rem 0.75rem;
}

.site-header.is-condensed .site-header__cta {
    padding: 0.66rem 0.98rem;
}

.hero-section {
    position: relative;
    overflow: visible;
    padding-top: 0.2rem;
    z-index: 3;
}

.hero-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: clamp(0.9rem, 1.8vw, 1.35rem);
    background: linear-gradient(
        180deg,
        rgba(16, 40, 64, 0) 0%,
        rgba(16, 40, 64, 0.12) 62%,
        rgba(16, 40, 64, 0.2) 100%
    );
    pointer-events: none;
    z-index: 4;
}

.hero-section::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: clamp(-0.34rem, -0.8vw, -0.54rem);
    width: clamp(4.2rem, 6vw, 5.7rem);
    height: clamp(0.2rem, 0.3vw, 0.28rem);
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(255, 230, 31, 0.96),
        rgba(199, 239, 53, 1),
        rgba(255, 230, 31, 0.96)
    );
    box-shadow:
        0 0 0 1px rgba(16, 40, 64, 0.16),
        0 0 0 3px rgba(255, 255, 255, 0.95),
        0 8px 20px rgba(16, 40, 64, 0.16);
    pointer-events: none;
    z-index: 5;
}

.hero-carousel {
    position: relative;
    overflow: hidden;
    background: var(--orya-blue);
    border-radius: 0;
    box-shadow: none;
}

.hero-carousel__track {
    position: relative;
    aspect-ratio: 3954 / 1246;
    min-height: 11rem;
}

.hero-carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
}

.hero-carousel__slide.is-active {
    opacity: 1;
}

.hero-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    background: transparent;
}

.hero-carousel__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1rem;
    z-index: 7;
    display: flex;
    justify-content: center;
    gap: 0.55rem;
}

.hero-carousel__dot {
    width: 0.82rem;
    height: 0.82rem;
    padding: 0;
    border: 2px solid rgba(47, 79, 173, 0.42);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 2px 10px rgba(16, 40, 64, 0.12);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero-carousel__dot:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(47, 79, 173, 0.68);
    transform: scale(1.08);
}

.hero-carousel__dot.is-active {
    background: var(--orya-green);
    border-color: var(--orya-blue);
    transform: scale(1.18);
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.94),
        0 5px 16px rgba(16, 40, 64, 0.18);
}

.intro-section {
    position: relative;
    --intro-wave-height: clamp(45rem, 25vw, 25rem);
    margin-top: calc(-1 * var(--home-page-gap));
    padding: 0;
    background: #fff;
}

.intro-section .content-wrap {
    position: absolute;
    inset: clamp(2rem, 4vw, 3rem) 0 auto;
    width: 100%;
    margin: 0;
    padding-inline: clamp(0.85rem, 2vw, 1.5rem);
    z-index: 2;
}

.intro-section__copy {
    max-width: none;
    margin: 0;
    text-align: left;
    display: grid;
    gap: 0.55rem;
}

.intro-section__copy h1 {
    margin: 0;
    font-family: "Cleanow", "Baloo 2", cursive;
    font-size: clamp(3.15rem, 6.1vw, 5.8rem);
    font-weight: 400;
    line-height: 0.9;
    color: var(--orya-blue);
}

.intro-section__copy p {
    margin: 0;
    max-width: 40rem;
    font-size: clamp(1rem, 1.2vw, 1.18rem);
    color: var(--orya-cyan);
}

.intro-section__background {
    display: block;
    width: calc(100vw + 6px);
    height: var(--intro-wave-height);
    margin-left: calc(50% - 50vw - 3px);
    background-image: url("/images/home/backgrounds/intro-wave-2000.jpg");
    background-image: image-set(
        url("/images/home/backgrounds/intro-wave-2000.webp") type("image/webp"),
        url("/images/home/backgrounds/intro-wave-2000.jpg") type("image/jpeg")
    );
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
}

.benefits-section {
    position: relative;
    z-index: 2;
    margin-top: calc(-1 * var(--home-page-gap));
    padding: clamp(1.75rem, 3vw, 2.6rem) 0 1rem;
    background: #fff;
}

.category-section,
.multi-purpose-section,
.surface-strip-section,
.mop-showcase-section,
.oil-dirt-section {
    padding-top: 0.25rem;
}

@media (min-width: 821px) {
    .intro-section__copy h1,
    .intro-section__copy p {
        white-space: nowrap;
    }
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.benefit-card {
    padding: 0.2rem 0.75rem 0;
    text-align: center;
}

.benefit-card__accent {
    display: block;
    width: min(100%, 8rem);
    height: 0.24rem;
    margin: 0 auto 1rem;
    border-radius: 999px;
}

.benefit-card h3 {
    margin: 0 0 0.5rem;
    font-family: var(--font-primary);
    font-size: 1.72rem;
    line-height: 1.14;
    color: var(--orya-blue);
}

.benefit-card p {
    margin: 0;
    color: #56afd8;
    line-height: 1.6;
    font-size: 0.94rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.category-card {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 1.6rem;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover,
.category-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    outline: none;
}

.category-card img {
    width: 100%;
    aspect-ratio: 1 / 1.02;
    object-fit: cover;
}

.category-card__caption {
    padding: 1.2rem 1.3rem 1.35rem;
    color: #fff;
}

.category-card__caption h3,
.title-banner span,
.title-banner small,
.surface-strip__copy h2,
.surface-strip__copy p,
.label-stack span,
.oil-dirt-feature__badge {
    font-family: var(--font-primary);
    text-transform: uppercase;
}

.category-card__caption h3 {
    margin: 0;
    font-size: 1.68rem;
    line-height: 1.08;
}

.category-card__caption p {
    margin: 0.22rem 0 0;
    font-size: 0.98rem;
    font-weight: 600;
    opacity: 0.94;
}

.multi-purpose-grid {
    display: grid;
    grid-template-columns: 1.03fr 0.97fr;
    min-height: clamp(26rem, 39vw, 34rem);
    overflow: hidden;
    border-radius: 2rem;
    background: #fff;
    box-shadow: var(--shadow);
}

.multi-purpose-panel {
    position: relative;
    min-height: 100%;
}

.multi-purpose-panel--left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 0;
    background: #fff;
}

.title-banner {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    gap: 0.08rem;
    width: fit-content;
    padding: 0.8rem 1.2rem 0.7rem;
    border-radius: 0.85rem;
    background: var(--orya-blue);
    color: #fff;
    box-shadow: var(--shadow-soft);
}

.title-banner span {
    font-size: clamp(1.8rem, 2.8vw, 2.7rem);
    line-height: 1.04;
    font-weight: 700;
}

.title-banner small {
    font-size: clamp(0.95rem, 1.3vw, 1.35rem);
    line-height: 1.18;
    font-weight: 700;
    color: var(--orya-cyan);
}

.hand-stage {
    position: relative;
    flex: 1;
    min-height: 20rem;
}

.hand-stage img {
    position: absolute;
    left: -2%;
    bottom: 0;
    width: min(34rem, 96%);
    max-width: none;
}

.multi-purpose-panel--right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 1.7rem 1.5rem 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.multi-purpose-copy {
    position: relative;
    z-index: 2;
    max-width: 18rem;
    text-align: center;
}

.multi-purpose-copy p {
    margin: 0.55rem 0 0;
    color: rgba(24, 63, 167, 0.86);
    font-size: 1rem;
    line-height: 1.5;
}

.multi-purpose-panel__pack {
    position: absolute;
    left: 50%;
    bottom: 5rem;
    z-index: 2;
    width: min(28rem, 86%);
    transform: translateX(-50%);
    filter: drop-shadow(0 18px 30px rgba(16, 40, 64, 0.28));
}

.surface-strip-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.surface-strip {
    overflow: hidden;
    min-height: clamp(11.2rem, 14vw, 12.8rem);
    border-radius: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 12px 32px rgba(16, 40, 64, 0.08);
    color: #fff;
    padding: 1.55rem 0;
}

.surface-strip__content {
    display: grid;
    grid-template-columns: 110px 1fr minmax(220px, 300px);
    align-items: center;
    gap: 1.25rem;
}

.surface-strip__brand img {
    width: 100%;
    max-width: 98px;
}

.surface-strip__swatches {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
}

.surface-strip__swatch {
    margin: 0;
    overflow: hidden;
    border-radius: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.08);
}

.surface-strip__swatch img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.surface-strip__copy {
    display: grid;
    gap: 0.18rem;
}

.surface-strip__copy .section-copy__eyebrow {
    color: rgba(255, 255, 255, 0.86);
}

.surface-strip__copy h2 {
    margin: 0;
    font-size: clamp(1.625rem, 2.3vw, 2.475rem);
    line-height: 1.08;
    color: #fff;
}

.surface-strip__copy p {
    margin: 0;
    font-size: clamp(0.95rem, 1.45vw, 1.52rem);
    line-height: 1.14;
    color: var(--orya-yellow);
    font-weight: 700;
}

.surface-strip__description {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.82rem;
    line-height: 1.45;
}

.mop-showcase {
    overflow: hidden;
    border-radius: 2rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: var(--shadow);
    padding: 1.8rem 1.6rem;
}

.mop-showcase__content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 18rem) 1fr;
    align-items: center;
    gap: 1.5rem;
    min-height: clamp(24rem, 36vw, 32rem);
}

.mop-showcase__copy {
    position: relative;
    z-index: 2;
    align-self: start;
    max-width: 16rem;
    display: grid;
    gap: 0.8rem;
    padding-top: 1rem;
}

.mop-showcase__copy h2 {
    margin: 0;
    font-size: clamp(1.875rem, 2.9vw, 3.05rem);
    line-height: 1.06;
}

.mop-showcase__visual {
    position: relative;
    min-height: 24rem;
}

.mop-showcase__shine {
    position: absolute;
    left: 74%;
    top: -3rem;
    z-index: 2;
    width: min(28.5rem, 52%);
    transform: translateX(-50%);
    pointer-events: none;
}

.mop-showcase__pack {
    position: absolute;
    left: 57%;
    bottom: 0.8rem;
    z-index: 3;
    width: min(46rem, 96%);
    transform: translateX(-50%);
    filter: drop-shadow(0 18px 32px rgba(16, 40, 64, 0.22));
}

.oil-dirt-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: var(--shadow);
}

.oil-dirt-feature {
    position: relative;
    min-height: clamp(28rem, 42vw, 36rem);
    overflow: hidden;
}

.oil-dirt-feature--product {
    background: url("/images/home/backgrounds/oil-grid-bg.jpg") center / cover no-repeat;
}

.oil-dirt-feature--kitchen {
    background:
        linear-gradient(180deg, #ffffff 0 46%, #ececec 46% 100%);
}

.oil-dirt-feature__copy {
    position: absolute;
    left: clamp(1.5rem, 3vw, 2.1rem);
    bottom: clamp(1.4rem, 3vw, 2rem);
    z-index: 3;
    max-width: min(18rem, 38%);
    display: grid;
    gap: 0.75rem;
}

.oil-dirt-feature__copy--labels {
    max-width: none;
}

.oil-dirt-feature__copy p {
    margin: 0;
    max-width: 14rem;
    color: #1d7692;
    line-height: 1.55;
}

.oil-dirt-feature__pack {
    position: absolute;
    left: 50%;
    top: 39%;
    z-index: 2;
    width: min(33rem, 78%);
    transform: translate(-44%, -34%);
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.2));
}

.oil-dirt-feature__lemon {
    position: absolute;
    right: 1.65rem;
    bottom: 1.2rem;
    z-index: 2;
    width: min(11rem, 28%);
}

.oil-dirt-feature__kitchen-copy {
    position: absolute;
    top: 1.7rem;
    left: 1.7rem;
    right: 1.7rem;
    z-index: 3;
}

.oil-dirt-feature__title-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-start;
}

.oil-dirt-feature__badge {
    display: inline-flex;
    padding: 0.55rem 0.9rem 0.45rem;
    font-size: clamp(1.8rem, 2.7vw, 2.5rem);
    line-height: 1.06;
    font-weight: 700;
}

.oil-dirt-feature__badge--yellow {
    background: var(--orya-yellow);
    color: var(--orya-green-dark);
}

.oil-dirt-feature__badge--green {
    background: var(--orya-green-dark);
    color: var(--orya-yellow);
}

.oil-dirt-feature__kitchen-text {
    margin: 0.9rem 0 0;
    max-width: 20rem;
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 2.4vw, 2.35rem);
    font-weight: 700;
    line-height: 1.08;
    text-transform: uppercase;
    color: #111;
}

.oil-dirt-feature__kitchen-image {
    position: absolute;
    right: -0.25rem;
    bottom: 0;
    width: min(42rem, 104%);
    max-width: none;
}

.label-stack {
    display: grid;
    gap: 0.4rem;
}

.label-stack span {
    display: inline-flex;
    width: max-content;
    padding: 0.45rem 0.95rem;
    border-radius: 0.6rem;
    background: rgba(255, 255, 255, 0.94);
    color: var(--orya-green-dark);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.label-stack span:nth-child(2) {
    background: var(--orya-green-dark);
    color: #fff;
}

.oil-dirt-card__stove {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(27rem, 84%);
}

.about-page {
    display: grid;
    gap: 1.6rem;
    padding-top: 0;
}

.about-page[data-about-page] > * {
    opacity: 0;
    transform: translateY(1.25rem);
    transition:
        opacity 0.72s ease,
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-page[data-about-page] > *:nth-child(1) {
    transition-delay: 0.04s;
}

.about-page[data-about-page] > *:nth-child(2) {
    transition-delay: 0.1s;
}

.about-page[data-about-page] > *:nth-child(3) {
    transition-delay: 0.16s;
}

.about-page[data-about-page] > *:nth-child(4) {
    transition-delay: 0.22s;
}

.about-page[data-about-page] > *:nth-child(5) {
    transition-delay: 0.28s;
}

.about-page[data-about-page] > *:nth-child(6) {
    transition-delay: 0.34s;
}

.about-page[data-about-page].is-loaded > * {
    opacity: 1;
    transform: translateY(0);
}

.about-banner-shell {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.about-banner {
    position: relative;
    --about-banner-bleed: clamp(3rem, 8vw, 5rem);
    overflow: hidden;
    height: clamp(14rem, 22vw, 22rem);
    border-radius: 0;
    background: #122840;
    box-shadow: var(--shadow);
}

.about-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(16, 40, 64, 0.14) 0%, rgba(16, 40, 64, 0.34) 48%, rgba(7, 17, 33, 0.7) 100%),
        linear-gradient(90deg, rgba(7, 17, 33, 0.32) 0%, rgba(7, 17, 33, 0.1) 45%, rgba(7, 17, 33, 0.04) 100%);
    pointer-events: none;
    z-index: 1;
}

.about-banner__media,
.about-banner__media img {
    position: absolute;
    width: 100%;
}

.about-banner__media {
    inset: calc(-1 * var(--about-banner-bleed)) 0;
    overflow: hidden;
    transform: translate3d(0, calc(var(--about-banner-shift, 0px) * -1), 0);
    will-change: transform;
    transition: transform 0.18s linear;
}

.about-banner__media img {
    inset: 0;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.about-banner__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: var(--site-content-width);
    margin: 0 auto;
    padding: clamp(1.3rem, 4vw, 2.7rem) 0;
    text-align: center;
}

.about-banner__content::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: clamp(1rem, 3vw, 1.8rem);
    width: clamp(4rem, 7vw, 6rem);
    height: 0.28rem;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orya-yellow), var(--orya-green));
}

.about-banner__title {
    position: relative;
    margin: 0;
    padding-bottom: clamp(1.2rem, 3.4vw, 2.3rem);
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5.5vw, 5.05rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #fff;
    text-shadow: 0 12px 24px rgba(7, 17, 33, 0.32);
}

.page-breadcrumb-shell {
    position: relative;
    z-index: 4;
    margin-top: -1.35rem;
    margin-bottom: 0.15rem;
}

.page-breadcrumb-wrap {
    display: flex;
    justify-content: flex-end;
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 4rem;
    padding: 0.9rem 1.35rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(16, 40, 64, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 36px rgba(16, 40, 64, 0.14);
    color: #6e87a9;
    font-family: var(--font-primary);
    font-size: 0.94rem;
    line-height: 1.4;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.page-breadcrumb a {
    color: var(--text);
    font-weight: 600;
}

.page-breadcrumb__separator {
    color: rgba(16, 40, 64, 0.32);
}

.page-breadcrumb__current {
    color: var(--orya-blue);
    font-weight: 700;
}

.about-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(2.5rem, 4vw, 4rem) 0;
    background:
        radial-gradient(circle at top right, rgba(199, 239, 53, 0.16), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)),
        var(--about-hero-bg, #f5fbff);
    border-radius: 2rem;
    box-shadow: var(--shadow);
}

.about-hero::before,
.about-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.about-hero::before {
    width: clamp(18rem, 30vw, 29rem);
    height: clamp(18rem, 30vw, 29rem);
    top: -35%;
    right: -6%;
    background: rgba(87, 195, 230, 0.12);
}

.about-hero::after {
    width: clamp(12rem, 24vw, 20rem);
    height: clamp(12rem, 24vw, 20rem);
    bottom: -28%;
    left: -4%;
    background: rgba(47, 79, 173, 0.1);
}

.about-hero__grid,
.about-story__grid {
    display: grid;
    gap: 1.4rem;
    align-items: start;
}

.about-hero__grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.about-story__grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    align-items: stretch;
}

.about-hero__copy,
.about-process__copy,
.about-commitment__copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.78rem;
    max-width: 40rem;
}

.about-hero__copy h1,
.about-process__copy h2,
.about-commitment__copy h2 {
    margin: 0;
    font-family: var(--font-primary);
    font-size: clamp(2.45rem, 4.4vw, 4.45rem);
    line-height: 1.07;
    letter-spacing: -0.04em;
    color: var(--orya-blue);
}

.about-hero__lead,
.about-story__lead,
.about-commitment__lead {
    margin: 0;
    font-family: var(--font-primary);
    font-size: clamp(1.08rem, 1.5vw, 1.46rem);
    font-weight: 700;
    line-height: 1.24;
    letter-spacing: 0.03em;
    color: var(--orya-blue);
    text-transform: uppercase;
}

.about-hero__body,
.about-story__body,
.about-commitment__body,
.about-process__body {
    margin: 0;
    max-width: 34rem;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #4f6d8e;
}

.about-hero__highlights,
.about-values__grid,
.about-commitment__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.about-card,
.about-metric,
.about-step {
    position: relative;
    overflow: hidden;
    background: var(--about-item-bg, #ffffff);
    border-radius: 1.5rem;
    border: 1px solid rgba(16, 40, 64, 0.08);
    box-shadow: var(--shadow-soft);
}

.about-card {
    display: grid;
    gap: 0.82rem;
    padding: 1.3rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94)),
        var(--about-item-bg, #ffffff);
}

.about-card::before,
.about-metric::before,
.about-step::before {
    content: "";
    position: absolute;
    inset: 1rem auto 1rem 0;
    width: 0.24rem;
    background: var(--about-item-accent, var(--orya-blue));
    border-radius: 999px;
}

.about-card--hero:first-child {
    grid-column: 1 / -1;
}

.about-card__topline {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.about-card__icon,
.about-metric__token,
.about-step__count {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--about-item-accent, var(--orya-blue)) 14%, white);
    color: var(--about-item-accent, var(--orya-blue));
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.about-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-card__icon--value {
    width: 3.3rem;
    height: 3.3rem;
}

.about-card__icon--compact {
    width: 2.7rem;
    height: 2.7rem;
}

.about-card__meta,
.about-metric__meta {
    display: inline-flex;
    width: fit-content;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6e87a9;
}

.about-card__body,
.about-step__body {
    display: grid;
    gap: 0.5rem;
}

.about-card h3,
.about-metric h3,
.about-step h3 {
    margin: 0;
    font-family: var(--font-primary);
    font-size: clamp(1.775rem, 2.1vw, 2.675rem);
    line-height: 1.12;
    letter-spacing: 0;
    color: var(--orya-blue);
}

.about-card--hero:first-child h3 {
    font-size: clamp(2rem, 2.55vw, 2.95rem);
}

.about-card__subtitle,
.about-metric__subtitle,
.about-step__subtitle {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1f9644;
    line-height: 1.3;
}

.about-card__description,
.about-metric__description,
.about-step__description {
    margin: 0;
    color: #567291;
    line-height: 1.72;
    font-size: 0.96rem;
}

.about-story {
    padding: clamp(1rem, 2vw, 1.6rem) 0;
}

.about-story__copy.section-copy {
    gap: 0.85rem;
    max-width: 33rem;
}

.about-story__panel {
    position: relative;
    overflow: hidden;
    height: 100%;
    padding: 1.55rem;
    border-radius: 1.9rem;
    background:
        radial-gradient(circle at top right, rgba(87, 195, 230, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0)),
        var(--about-story-bg, #f8fbff);
    border: 1px solid rgba(16, 40, 64, 0.08);
    box-shadow: var(--shadow-soft);
}

.about-story__panel::before {
    content: "";
    position: absolute;
    left: 1.55rem;
    top: 1.35rem;
    width: 4.9rem;
    height: 0.24rem;
    border-radius: 999px;
    background: var(--about-story-accent, var(--orya-blue));
}

.about-story__metrics {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
    align-items: stretch;
    height: 100%;
    padding-top: 1.05rem;
}

.about-metric {
    display: grid;
    grid-template-columns: minmax(6.8rem, 7.8rem) minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    min-height: 0;
    padding: 1.05rem 1.15rem 1.05rem 1.2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.94)),
        var(--about-item-bg, #ffffff);
}

.about-metric::before {
    inset: 0 auto 0 0;
    width: 0.26rem;
    height: auto;
    border-radius: 999px;
}

.about-metric__header {
    display: grid;
    justify-items: start;
    align-content: center;
    gap: 0.55rem;
    min-height: 100%;
    padding-right: 0.95rem;
    border-right: 1px solid rgba(16, 40, 64, 0.08);
}

.about-metric__body {
    display: grid;
    grid-template-columns: minmax(8.5rem, 10rem) minmax(0, 1fr);
    align-content: center;
    align-items: center;
    gap: 0.95rem;
}

.about-metric__copy {
    display: grid;
    gap: 0.45rem;
}

.about-story__metrics .about-metric:nth-child(1) {
    background:
        linear-gradient(180deg, rgba(47, 79, 173, 0.06), rgba(255, 255, 255, 0.97)),
        var(--about-item-bg, #ffffff);
}

.about-story__metrics .about-metric:nth-child(2) {
    background:
        linear-gradient(180deg, rgba(199, 239, 53, 0.16), rgba(255, 255, 255, 0.97)),
        var(--about-item-bg, #ffffff);
}

.about-story__metrics .about-metric:nth-child(3) {
    background:
        linear-gradient(180deg, rgba(87, 195, 230, 0.14), rgba(255, 255, 255, 0.97)),
        var(--about-item-bg, #ffffff);
}

.about-metric h3 {
    font-size: clamp(2rem, 2.95vw, 2.85rem);
    line-height: 1.18;
}

.about-metric__token {
    width: 3.1rem;
    height: 3.1rem;
    background: color-mix(in srgb, var(--about-item-accent, var(--orya-blue)) 14%, white);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.86),
        0 10px 24px rgba(16, 40, 64, 0.08);
}

.about-metric__meta {
    margin: 0;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
}

.about-metric__subtitle {
    max-width: none;
    font-size: 0.95rem;
}

.about-metric__description {
    font-size: 0.94rem;
    line-height: 1.58;
}

.about-values,
.about-commitment {
    padding: 0.25rem 0;
}

.about-section-heading {
    margin-bottom: 1.8rem;
}

.about-values__grid .about-card,
.about-commitment__cards .about-card {
    height: 100%;
}

.about-process {
    padding: 0.35rem 0;
}

.about-process__shell {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 1.4rem;
    padding: clamp(1.6rem, 3vw, 2.1rem);
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 24%),
        linear-gradient(135deg, color-mix(in srgb, var(--about-process-bg, #102840) 94%, white), var(--about-process-bg, #102840));
    box-shadow: var(--shadow);
}

.about-process__copy h2 {
    color: #fff;
}

.about-process__copy,
.about-commitment__copy {
    max-width: min(100%, 56rem);
}

.section-copy__eyebrow--light,
.about-process__lead,
.about-process__body,
.about-step h3,
.about-step__subtitle,
.about-step__description {
    color: #fff;
}

.section-copy__eyebrow--light {
    color: var(--orya-yellow);
}

.about-process__lead {
    color: var(--orya-cyan);
}

.about-process__body {
    color: rgba(255, 255, 255, 0.78);
}

.about-process__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.about-step {
    display: grid;
    gap: 0.85rem;
    padding: 1.2rem;
    background: var(--about-item-bg, rgba(255, 255, 255, 0.08));
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.about-step::before {
    width: 100%;
    height: 0.24rem;
    inset: 0 0 auto 0;
}

.about-step__count {
    width: 2.7rem;
    height: 2.7rem;
    background: color-mix(in srgb, var(--about-item-accent, var(--orya-green)) 88%, white);
    color: var(--orya-blue);
}

.about-commitment__shell {
    display: grid;
    gap: 1.6rem;
    align-items: start;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border-radius: 2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0)),
        var(--about-commitment-bg, #f5fbff);
    box-shadow: var(--shadow-soft);
}

.about-commitment__copy {
    max-width: min(100%, 56rem);
}

.about-hero__highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
}

.about-commitment__cards .about-card,
.about-values__grid .about-card {
    min-height: 100%;
}

.about-commitment__cards {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.15rem;
}

.about-commitment__cards .about-card {
    grid-column: span 4;
}

.about-commitment__cards .about-card:nth-child(2) {
    grid-column: span 4;
    transform: translateY(-0.45rem);
    background:
        linear-gradient(180deg, rgba(87, 195, 230, 0.12), rgba(255, 255, 255, 0.96)),
        var(--about-item-bg, #ffffff);
}

.about-commitment__cards .about-card:nth-child(1) {
    background:
        linear-gradient(180deg, rgba(47, 79, 173, 0.05), rgba(255, 255, 255, 0.96)),
        var(--about-item-bg, #ffffff);
}

.about-commitment__cards .about-card:nth-child(3) {
    background:
        linear-gradient(180deg, rgba(199, 239, 53, 0.12), rgba(255, 255, 255, 0.96)),
        var(--about-item-bg, #ffffff);
}

.products-page {
    display: grid;
    gap: 1.45rem;
    padding-top: 0;
}

.products-page[data-products-page] > * {
    opacity: 0;
    transform: translateY(1.15rem);
    transition:
        opacity 0.72s ease,
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.products-page.is-loaded > * {
    opacity: 1;
    transform: none;
}

.products-page[data-products-page] > *:nth-child(1) {
    transition-delay: 0.04s;
}

.products-page[data-products-page] > *:nth-child(2) {
    transition-delay: 0.1s;
}

.products-page[data-products-page] > *:nth-child(3) {
    transition-delay: 0.16s;
}

.products-page[data-products-page] > *:nth-child(4) {
    transition-delay: 0.22s;
}

.products-hero {
    padding: 0.25rem 0 0.35rem;
}

.products-hero__shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.4rem;
    align-items: stretch;
    padding: clamp(1.45rem, 3vw, 2.1rem);
    border-radius: 2rem;
    border: 1px solid rgba(16, 40, 64, 0.08);
    background:
        radial-gradient(circle at top right, rgba(87, 195, 230, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.86)),
        var(--products-hero-bg, #f7fbff);
    box-shadow: var(--shadow-soft);
}

.products-hero__copy {
    display: grid;
    gap: 0.72rem;
    max-width: 33rem;
}

.products-hero__copy h1,
.products-feature__content h2 {
    margin: 0;
    font-family: var(--font-primary);
    color: var(--orya-blue);
}

.products-hero__copy h1 {
    font-size: clamp(2.2rem, 3.5vw, 4rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.products-hero__lead,
.products-feature__lead {
    margin: 0;
    font-size: 1rem;
    line-height: 1.65;
    color: #2d5baf;
}

.products-hero__body,
.products-feature__body {
    margin: 0;
    color: #567291;
    line-height: 1.74;
    font-size: 0.98rem;
}

.products-hero__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.product-quick-card,
.product-spec-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.4rem;
    border: 1px solid rgba(16, 40, 64, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94)),
        var(--product-card-bg, #ffffff);
    box-shadow: var(--shadow-soft);
}

.product-quick-card {
    display: grid;
    gap: 0.8rem;
    padding: 0.95rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-quick-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 0.24rem;
    border-radius: 999px;
    background: var(--product-card-accent, var(--orya-blue));
}

.product-quick-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.product-quick-card__header,
.products-feature__visual-card,
.product-quick-card__body,
.product-quick-card__copy,
.product-spec-card {
    display: grid;
}

.product-quick-card__header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.65rem;
    align-items: start;
}

.product-quick-card__meta,
.products-feature__visual-meta,
.product-spec-card__meta {
    display: inline-flex;
    width: fit-content;
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6e87a9;
}

.product-quick-card__badge,
.products-feature__code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.8rem 0.34rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--product-card-accent, var(--orya-blue)) 14%, white);
    color: var(--product-card-accent, var(--orya-blue));
    font-family: var(--font-primary);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-quick-card__body {
    gap: 0.75rem;
    align-content: space-between;
}

.product-quick-card__copy {
    gap: 0.42rem;
}

.product-quick-card__copy h2,
.products-feature__visual-card h3,
.product-spec-card h3 {
    margin: 0;
    font-family: var(--font-primary);
    color: var(--orya-blue);
}

.product-quick-card__copy h2 {
    font-size: clamp(1.325rem, 1.6vw, 1.775rem);
    line-height: 1.12;
}

.product-quick-card__subtitle,
.products-feature__visual-subtitle,
.product-spec-card__subtitle {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    color: #1f9644;
}

.product-quick-card__description,
.product-spec-card__description {
    margin: 0;
    color: #567291;
    line-height: 1.6;
    font-size: 0.93rem;
}

.product-quick-card img {
    width: min(10rem, 100%);
    aspect-ratio: 4 / 3;
    margin-inline: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: drop-shadow(0 14px 24px rgba(16, 40, 64, 0.18));
}

.products-feature {
    padding: 0.06rem 0;
    scroll-margin-top: 8.7rem;
}

.products-feature__frame {
    position: relative;
    scroll-margin-top: 8.3rem;
    padding: clamp(0.76rem, 1.55vw, 0.94rem);
    border: 1px solid rgba(16, 40, 64, 0.08);
    border-radius: 1.8rem;
    background:
        linear-gradient(
            180deg,
            color-mix(in srgb, var(--product-accent, var(--orya-blue)) 4%, white),
            rgba(255, 255, 255, 0.98) 42%
        );
    box-shadow: var(--shadow-soft);
    isolation: isolate;
}

.products-feature__frame::before {
    content: "";
    position: absolute;
    left: 1rem;
    right: 4.95rem;
    top: 0.9rem;
    height: 0.24rem;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--product-accent, var(--orya-blue)),
        color-mix(in srgb, var(--product-accent, var(--orya-blue)) 45%, white),
        transparent 82%
    );
}

.products-feature__frame::after {
    content: attr(data-product-index);
    position: absolute;
    top: 0.5rem;
    right: 0.8rem;
    display: grid;
    place-items: center;
    min-width: 2.35rem;
    height: 2.35rem;
    padding: 0 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(16, 40, 64, 0.08);
    background: rgba(255, 255, 255, 0.92);
    color: var(--product-accent, var(--orya-blue));
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 24px rgba(16, 40, 64, 0.1);
}

.products-feature__shell {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 0.9rem;
    align-items: stretch;
    padding-top: 0.54rem;
}

.products-feature--reverse .products-feature__stage {
    order: 2;
}

.products-feature--reverse .products-feature__content {
    order: 1;
}

.products-feature__stage {
    position: relative;
    overflow: hidden;
    display: grid;
    align-items: end;
    justify-items: start;
    min-height: clamp(19rem, 28vw, 22.8rem);
    padding: 0.92rem;
    border-radius: 1.55rem;
    background-color: #ffffff;
    background-image:
        linear-gradient(0deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.95)),
        linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.86)),
        var(--product-stage-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 18px 30px rgba(16, 40, 64, 0.14);
}

.products-feature__code {
    position: absolute;
    top: 0.82rem;
    right: 0.82rem;
    z-index: 3;
    background: color-mix(in srgb, var(--product-accent, var(--orya-blue)) 16%, white);
    color: var(--product-accent, var(--orya-blue));
}

.products-feature__accent-image {
    position: absolute;
    left: 0.88rem;
    top: 0.82rem;
    z-index: 1;
    width: min(9rem, 24%);
    filter: drop-shadow(0 14px 22px rgba(16, 40, 64, 0.14));
    pointer-events: none;
}

.products-feature__pack {
    position: absolute;
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    z-index: 2;
    width: min(27rem, 76%);
    max-width: calc(100% - 0.3rem);
    max-height: calc(100% - 0.1rem);
    object-fit: contain;
    object-position: center center;
    display: block;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 26px 42px rgba(16, 40, 64, 0.22));
}

.products-feature--slim-pack .products-feature__pack {
    width: min(20rem, 44%);
    max-width: none;
    max-height: 128%;
    transform: translate(-50%, -50%) scale(1.63);
}

.products-feature--slim-pack .products-feature__stage {
    min-height: clamp(19rem, 28vw, 22.8rem);
    overflow: visible;
}

.products-feature__visual-card {
    position: relative;
    z-index: 3;
    gap: 0.55rem;
    align-self: end;
    width: min(13.8rem, 33%);
    padding: 0.78rem 0.84rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.products-feature__visual-card h3 {
    font-size: clamp(1.46rem, 1.8vw, 1.92rem);
    line-height: 1.18;
}

.products-feature__highlights,
.product-spec-card__items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.products-feature__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.32rem;
}

.products-feature__highlights li {
    padding: 0.26rem 0.56rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--product-accent, var(--orya-blue)) 12%, white);
    color: var(--product-accent, var(--orya-blue));
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.25;
}

.products-feature__content {
    display: grid;
    gap: 0.5rem;
    align-content: start;
    padding: 0.22rem 0;
}

.products-feature__content h2 {
    font-size: clamp(1.72rem, 2.2vw, 2.55rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.products-feature__specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
    margin-top: 0.04rem;
}

.product-spec-card {
    gap: 0.44rem;
    padding: 0.72rem 0.76rem;
}

.product-spec-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 0.24rem;
    border-radius: 999px;
    background: var(--product-card-accent, var(--orya-blue));
}

.product-spec-card h3 {
    font-size: clamp(1.12rem, 1.28vw, 1.42rem);
    line-height: 1.18;
}

.product-spec-card__items {
    display: grid;
    gap: 0.28rem;
}

.product-spec-card__items li {
    position: relative;
    padding-left: 1rem;
    color: #567291;
    line-height: 1.36;
    font-size: 0.82rem;
}

.product-spec-card__items li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.63rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: var(--product-card-accent, var(--orya-blue));
}

@media (max-width: 1100px) {
    .products-hero__shell,
    .products-feature__frame,
    .products-feature__shell {
        grid-template-columns: 1fr;
    }

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

    .products-feature--reverse .products-feature__stage,
    .products-feature--reverse .products-feature__content {
        order: initial;
    }

    .products-feature__stage {
        min-height: 18rem;
    }
}

@media (max-width: 820px) {
    .about-banner-shell,
    .surface-strip-section {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        overflow-x: hidden;
    }

    .products-page {
        gap: 1rem;
    }

    .products-hero__shell,
    .products-feature__frame,
    .products-feature__stage {
        border-radius: 1.55rem;
    }

    .products-hero__cards,
    .products-feature__specs {
        grid-template-columns: 1fr;
    }

    .products-feature__stage {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        justify-items: center;
        align-items: start;
        gap: 0.95rem;
        min-height: 0;
        padding: 3.35rem 0.82rem 0.82rem;
    }

    .products-feature__code {
        top: 0.82rem;
        right: 0.82rem;
    }

    .products-feature__accent-image {
        left: 0.82rem;
        top: 0.82rem;
        width: min(8rem, 28%);
    }

    .products-feature__pack {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: min(22.2rem, 94%);
        max-width: 100%;
        max-height: none;
        transform: none;
        margin: 0 auto;
    }

    .products-feature--slim-pack .products-feature__stage {
        min-height: 15.1rem;
        overflow: visible;
    }

    .products-feature--slim-pack .products-feature__pack {
        width: min(16.4rem, 70vw);
        max-width: min(16.4rem, 70vw);
        max-height: none;
        transform: scale(1.63);
        transform-origin: center center;
        margin: -0.55rem auto -0.95rem;
    }

    .products-feature__visual-card {
        align-self: stretch;
        width: 100%;
    }

    .products-feature__stage,
    .products-feature__visual-card {
        min-height: 15.1rem;
    }

    .products-feature__visual-card {
        min-height: 0;
    }

    .products-feature__frame::before {
        right: 4.65rem;
    }
}

@media (max-width: 520px) {
    .products-hero__shell,
    .products-feature__frame,
    .products-feature__stage {
        border-radius: 1.25rem;
    }

    .products-hero__shell {
        padding: 1.1rem;
    }

    .products-feature__content h2,
    .products-hero__copy h1 {
        font-size: clamp(2rem, 8vw, 2.95rem);
    }

    .products-feature__stage {
        gap: 0.8rem;
        padding: 3rem 0.72rem 0.72rem;
    }

    .products-feature__frame {
        padding: 0.68rem;
    }

    .products-feature__frame::before {
        left: 0.95rem;
        right: 4.2rem;
        top: 0.88rem;
    }

    .products-feature__frame::after {
        top: 0.5rem;
        right: 0.68rem;
        min-width: 2.3rem;
        height: 2.3rem;
    }

    .products-feature__visual-card {
        width: 100%;
        padding: 0.74rem;
    }

    .products-feature__pack {
        width: min(19.2rem, 96%);
    }

    .products-feature--slim-pack .products-feature__stage {
        min-height: 15.1rem;
    }

    .products-feature--slim-pack .products-feature__pack {
        width: min(15rem, 72vw);
        max-width: min(15rem, 72vw);
        max-height: none;
        transform: scale(1.57);
        transform-origin: center center;
        margin: -0.35rem auto -0.7rem;
    }

    .products-feature__code {
        top: 0.8rem;
        right: 0.8rem;
    }
}

.generic-page {
    display: grid;
    gap: 1.45rem;
    padding-top: 0.8rem;
}

.generic-page__hero,
.generic-page__content {
    padding: 0.15rem 0;
}

.generic-page__hero-shell,
.generic-page__content-shell {
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid rgba(16, 40, 64, 0.08);
    box-shadow: var(--shadow-soft);
}

.generic-page__hero-shell {
    padding: clamp(1.65rem, 3vw, 2.5rem);
    background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--generic-hero-accent, var(--orya-blue)) 16%, white), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 255, 0.88)),
        var(--generic-hero-bg, #f7fbff);
}

.generic-page__hero-copy {
    max-width: 46rem;
}

.generic-page__hero-copy h1,
.generic-page__content-copy h2 {
    margin: 0;
    font-family: var(--font-primary);
    color: var(--orya-blue);
}

.generic-page__hero-copy h1 {
    font-size: clamp(2.2rem, 4vw, 4.2rem);
    line-height: max(40px, 1.18em);
}

.generic-page__lead,
.generic-page__content-lead {
    margin: 0;
    color: #2d5baf;
    line-height: 1.7;
    font-size: 1rem;
}

.generic-page__body,
.generic-page__content-body {
    margin: 0;
    color: #567291;
    line-height: 1.75;
    font-size: 0.98rem;
}

.generic-page__content-shell {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    background:
        radial-gradient(circle at top right, color-mix(in srgb, var(--generic-content-accent, var(--orya-cyan)) 14%, white), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.92)),
        var(--generic-content-bg, #ffffff);
}

.generic-page__content-copy {
    max-width: 50rem;
}

.generic-page__content-copy h2 {
    font-size: clamp(2.05rem, 3.3vw, 3.2rem);
    line-height: max(40px, 1.18em);
}

.generic-page__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.generic-page__card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 0.72rem;
    padding: 1.1rem;
    border-radius: 1.35rem;
    border: 1px solid rgba(16, 40, 64, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.94)),
        var(--generic-card-bg, #f8fbff);
    box-shadow: var(--shadow-soft);
}

.generic-page__card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 0.24rem;
    border-radius: 999px;
    background: var(--generic-card-accent, var(--orya-blue));
}

.generic-page__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.generic-page__card-meta {
    display: inline-flex;
    width: fit-content;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6e87a9;
}

.generic-page__card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.38rem 0.8rem 0.34rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--generic-card-accent, var(--orya-blue)) 14%, white);
    color: var(--generic-card-accent, var(--orya-blue));
    font-size: 0.92rem;
    font-weight: 700;
}

.generic-page__card h3 {
    margin: 0;
    font-family: var(--font-primary);
    font-size: clamp(1.35rem, 1.8vw, 1.8rem);
    line-height: 1.18;
    color: var(--orya-blue);
}

.generic-page__card-subtitle {
    margin: 0;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: uppercase;
    color: #1f9644;
}

.generic-page__card-description {
    margin: 0;
    color: #567291;
    line-height: 1.62;
    font-size: 0.93rem;
}

.contact-page {
    display: grid;
    gap: 1.5rem;
    padding-top: 0;
}

.contact-page[data-contact-page] > * {
    opacity: 0;
    transform: translateY(1.1rem);
    transition:
        opacity 0.72s ease,
        transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-page.is-loaded > * {
    opacity: 1;
    transform: none;
}

.contact-page[data-contact-page] > *:nth-child(1) {
    transition-delay: 0.04s;
}

.contact-page[data-contact-page] > *:nth-child(2) {
    transition-delay: 0.1s;
}

.contact-page[data-contact-page] > *:nth-child(3) {
    transition-delay: 0.16s;
}

.contact-overview,
.contact-map-section {
    padding: 0.15rem 0;
}

.contact-overview__shell,
.contact-map-shell {
    display: grid;
    gap: 1.1rem;
    padding: clamp(1.25rem, 2.4vw, 1.7rem);
    border-radius: 2rem;
    border: 1px solid rgba(16, 40, 64, 0.08);
    box-shadow: var(--shadow-soft);
}

.contact-overview__shell {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: start;
    background:
        radial-gradient(circle at top right, rgba(199, 239, 53, 0.15), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.88)),
        var(--contact-overview-bg, #f7fbff);
}

.contact-overview__copy,
.contact-map-copy {
    display: grid;
    gap: 0.78rem;
}

.contact-overview__copy h1,
.contact-map-copy h2 {
    margin: 0;
    font-family: var(--font-primary);
    letter-spacing: -0.035em;
    color: var(--orya-blue);
}

.contact-overview__copy h1 {
    font-size: clamp(2.2rem, 3.4vw, 3.9rem);
    line-height: 1.08;
}

.contact-map-copy h2 {
    font-size: clamp(1.9rem, 2.7vw, 3.2rem);
    line-height: 1.08;
}

.contact-overview__lead,
.contact-map-copy__lead {
    margin: 0;
    font-family: var(--font-primary);
    font-size: clamp(1.02rem, 1.3vw, 1.36rem);
    line-height: 1.24;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #1f9644;
}

.contact-overview__body,
.contact-map-copy__body {
    margin: 0;
    color: #567291;
    line-height: 1.74;
    font-size: 0.98rem;
}

.contact-overview__notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.1rem;
}

.contact-note-card,
.contact-detail-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.35rem;
    border: 1px solid rgba(16, 40, 64, 0.08);
    background: var(--contact-note-bg, #ffffff);
    box-shadow: var(--shadow-soft);
}

.contact-note-card {
    padding: 0.92rem;
}

.contact-note-card::before,
.contact-detail-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 0.24rem;
    border-radius: 999px;
}

.contact-note-card::before {
    background: var(--contact-note-accent, var(--orya-blue));
}

.contact-note-card h2 {
    margin: 0 0 0.4rem;
    font-family: var(--font-primary);
    font-size: 1.28rem;
    line-height: 1.16;
    letter-spacing: -0.02em;
    color: var(--orya-blue);
}

.contact-note-card p {
    margin: 0;
    color: #567291;
    line-height: 1.62;
    font-size: 0.93rem;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(13rem, 1fr);
    gap: 0.85rem;
    align-items: stretch;
}

.contact-detail-card {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 0.8rem;
    min-height: 100%;
    padding: 1rem;
}

.contact-detail-card::before {
    background: var(--contact-detail-accent, var(--orya-blue));
}

.contact-detail-card__icon {
    display: grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: color-mix(in srgb, var(--contact-detail-accent, var(--orya-blue)) 14%, white);
    color: var(--contact-detail-accent, var(--orya-blue));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.84);
}

.contact-detail-card__icon svg {
    width: 1.35rem;
    height: 1.35rem;
}

.contact-detail-card__body {
    display: grid;
    align-content: start;
    gap: 0.4rem;
    min-height: 100%;
}

.contact-detail-card__label,
.contact-map-copy__address-label {
    display: inline-flex;
    width: fit-content;
    font-family: var(--font-primary);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6e87a9;
}

.contact-detail-card__value {
    margin: 0;
    font-family: var(--font-primary);
    font-size: clamp(1.16rem, 1.45vw, 1.5rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.02em;
    color: var(--orya-blue);
}

a.contact-detail-card__value {
    transition: opacity 0.2s ease;
}

a.contact-detail-card__value:hover,
.contact-map-copy__button:hover {
    opacity: 0.75;
}

.contact-detail-card__secondary,
.contact-map-copy__address p {
    color: #567291;
    line-height: 1.62;
    font-size: 0.93rem;
}

.contact-detail-card__secondary {
    margin-top: 0.15rem;
}

.contact-map-shell {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    align-items: stretch;
    background:
        radial-gradient(circle at top right, rgba(87, 195, 230, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.92)),
        var(--contact-map-bg, #ffffff);
}

.contact-map-copy__address {
    display: grid;
    gap: 0.35rem;
    padding: 0.85rem 0.95rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(16, 40, 64, 0.08);
}

.contact-map-copy__address p {
    margin: 0;
}

.contact-map-copy__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.contact-map-copy__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    padding: 0.72rem 1.05rem;
    border-radius: 999px;
    background: var(--orya-blue);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 14px 28px rgba(16, 40, 64, 0.16);
    transition: opacity 0.2s ease;
}

.contact-map-frame {
    overflow: hidden;
    border-radius: 1.5rem;
    min-height: 100%;
    background: #dcecf5;
    box-shadow: var(--shadow);
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 29rem;
    border: 0;
}

@media (max-width: 1100px) {
    .contact-overview__shell,
    .contact-map-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .contact-page {
        gap: 1rem;
    }

    .contact-overview__shell,
    .contact-map-shell {
        padding: 1.2rem;
        border-radius: 1.55rem;
    }

    .contact-overview__notes,
    .contact-details-grid {
        grid-template-columns: 1fr;
    }

    .contact-details-grid {
        grid-auto-rows: auto;
    }

    .contact-map-frame iframe {
        min-height: 23rem;
    }
}

@media (max-width: 520px) {
    .contact-overview__shell,
    .contact-map-shell,
    .contact-map-frame {
        border-radius: 1.25rem;
    }

    .contact-overview__copy h1,
    .contact-map-copy h2 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .contact-detail-card__value {
        font-size: 1.45rem;
    }

    .contact-map-copy__button {
        width: 100%;
    }

    .contact-map-frame iframe {
        min-height: 19rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-page[data-home-page] > * {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-page[data-about-page] > * {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .products-page[data-products-page] > * {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .contact-page[data-contact-page] > * {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-banner__media,
    .about-banner__media img {
        transition: none;
    }
}

.site-footer {
    position: relative;
    margin-top: 2.2rem;
    padding: 1.28rem 0 0.92rem;
    background:
        radial-gradient(circle at top right, rgba(87, 195, 230, 0.16), rgba(87, 195, 230, 0) 28%),
        radial-gradient(circle at bottom left, rgba(199, 239, 53, 0.12), rgba(199, 239, 53, 0) 24%),
        linear-gradient(180deg, #0f2742, #091a2c 78%);
    color: #fff;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(92%, 76rem);
    height: 0.2rem;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(47, 79, 173, 0.92), rgba(87, 195, 230, 0.76), rgba(199, 239, 53, 0.92));
}

.site-footer__shell {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(17rem, 0.92fr);
    gap: 0.72rem;
    align-items: start;
}

.site-footer__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(17rem, 0.7fr);
    gap: 0.62rem;
}

.site-footer__brand-card,
.site-footer__meta-card,
.site-footer__column {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    box-shadow:
        0 18px 36px rgba(4, 12, 22, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-footer__brand-card {
    display: grid;
    gap: 0.55rem;
    padding: 0.78rem 0.86rem;
    border-radius: 1.2rem;
}

.site-footer__brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    padding: 0.42rem 0.54rem;
    border-radius: 0.84rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(228, 241, 255, 0.92));
    box-shadow: 0 14px 30px rgba(8, 24, 42, 0.18);
}

.site-footer__brand-mark img {
    width: 4.3rem;
}

.site-footer__eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 0.22rem 0.46rem;
    border-radius: 999px;
    background: rgba(87, 195, 230, 0.12);
    color: var(--orya-cyan);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer__intro {
    margin: 0;
    max-width: 40rem;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.8rem;
    line-height: 1.42;
}

.site-footer__contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.site-footer__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.95rem;
    padding: 0.4rem 0.64rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.site-footer__chip:hover {
    transform: translateY(-1px);
    background: rgba(87, 195, 230, 0.12);
    border-color: rgba(87, 195, 230, 0.24);
}

.site-footer__meta-card {
    display: grid;
    align-content: space-between;
    gap: 0.55rem;
    padding: 0.76rem;
    border-radius: 1.12rem;
}

.site-footer__meta-block {
    display: grid;
    gap: 0.22rem;
}

.site-footer__meta-label {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.site-footer__meta-card p,
.site-footer__meta-card address {
    margin: 0;
    display: grid;
    gap: 0.18rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.76rem;
    line-height: 1.36;
    font-style: normal;
}

.site-footer__content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
    align-content: start;
}

.site-footer__column {
    display: grid;
    align-content: start;
    gap: 0.42rem;
    padding: 0.7rem 0.76rem;
    border-radius: 0.98rem;
}

.site-footer__column h2 {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 0.86rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--orya-cyan);
}

.site-footer__column p,
.site-footer__links,
.site-footer__contact-list {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.76rem;
    line-height: 1.38;
}

.site-footer__links {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.22rem;
}

.site-footer__links a,
.site-footer__contact-list a {
    color: rgba(255, 255, 255, 0.88);
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__contact-list a:hover {
    color: #fff;
    transform: translateX(2px);
}

.site-footer__contact-list {
    display: grid;
    gap: 0.18rem;
}

.site-footer__bottom {
    grid-column: 1 / -1;
    padding-top: 0.04rem;
}

.site-footer__bottom-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem 0.7rem;
    flex-wrap: wrap;
    padding: 0.52rem 0.68rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.site-footer__legal {
    display: flex;
    align-items: center;
    gap: 0.32rem 0.42rem;
    flex-wrap: wrap;
}

.site-footer__legal a,
.site-footer__copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.7rem;
    line-height: 1.3;
}

.site-footer__legal a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.72rem;
    padding: 0.26rem 0.48rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.site-footer__legal a:hover {
    color: #fff;
    background: rgba(87, 195, 230, 0.14);
    transform: translateY(-1px);
}

.site-footer__copyright {
    margin: 0;
}

@media (max-width: 1100px) {
    .content-wrap,
    .footer-wrap {
        width: var(--site-content-width);
    }

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

    .site-header__nav {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0.55rem;
    }

    .site-header__panel {
        width: min(100%, 48rem);
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 0.55rem;
    }

    .site-header__logo {
        width: min(134px, 38vw);
    }

    .site-header__hours {
        justify-self: center;
    }

    .site-header__nav-shell {
        width: min(100%, 48rem);
        border-radius: 1.45rem;
    }

    .site-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.38rem 0.48rem;
    }

    .site-nav__link {
        font-size: 0.96rem;
        padding: 0.64rem 0.86rem;
    }

    .site-header__actions {
        width: min(100%, 32rem);
        justify-content: center;
        flex-wrap: wrap;
    }

    .site-search {
        flex: 1 1 16rem;
        width: min(20rem, 100%);
    }

    .site-search__results {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .site-header__cta {
        padding-inline: 1rem;
    }

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

    .multi-purpose-grid {
        grid-template-columns: 1fr;
    }

    .multi-purpose-panel--left {
        min-height: 24rem;
    }

    .multi-purpose-panel--right {
        min-height: 26rem;
    }

    .surface-strip__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .surface-strip__brand img {
        margin: 0 auto;
    }

    .surface-strip__copy {
        text-align: center;
    }

    .mop-showcase__content {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .mop-showcase__copy {
        max-width: 22rem;
    }

    .mop-showcase__visual {
        min-height: 20rem;
    }

    .about-hero__grid,
    .about-story__grid,
    .about-commitment__shell {
        grid-template-columns: 1fr;
    }

    .about-hero__highlights,
    .about-values__grid,
    .about-commitment__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-story__metrics .about-metric:nth-child(2),
    .about-commitment__cards .about-card:nth-child(2) {
        transform: none;
    }

    .about-card--hero:first-child {
        grid-column: span 2;
    }

    .about-story__metrics {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .about-metric {
        grid-template-columns: minmax(7.4rem, 8.6rem) minmax(0, 1fr);
    }

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

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

    .site-footer__hero,
    .site-footer__content {
        grid-template-columns: 1fr;
    }

    .site-footer__meta-card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-content: start;
    }

    .site-footer__bottom-wrap {
        align-items: flex-start;
        border-radius: 1.35rem;
    }
}

@media (max-width: 820px) {
    .home-page {
        --home-page-gap: 1rem;
    }

    .content-wrap,
    .content-wrap--wide,
    .footer-wrap {
        width: min(calc(100% - 1rem), 40rem);
    }

    .site-header {
        padding: 0.44rem 0 0.38rem;
    }

    .site-header__nav {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        justify-items: stretch;
        gap: 0.55rem 0.72rem;
    }

    .site-header__logo {
        width: min(124px, 38vw);
        justify-self: start;
    }

    .site-header[data-menu-ready="true"] .site-header__menu-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .site-header__panel {
        grid-column: 1 / -1;
        width: 100%;
        justify-items: stretch;
        gap: 0.72rem;
    }

    .site-header[data-menu-ready="true"] .site-header__panel {
        display: none;
        padding: 0.82rem;
        border-radius: 1.4rem;
        border: 1px solid rgba(47, 79, 173, 0.1);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 255, 0.96));
        box-shadow:
            0 18px 34px rgba(22, 48, 82, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.92);
    }

    .site-header[data-menu-ready="true"].is-menu-open .site-header__panel {
        display: grid;
    }

    .site-header__hours {
        justify-self: stretch;
        justify-content: center;
        text-align: center;
        white-space: normal;
    }

    .site-header__nav-shell {
        width: 100%;
        padding: 0.38rem;
        border-radius: 1.3rem;
    }

    .site-header__nav-shell::after {
        left: 0.9rem;
        right: 0.9rem;
    }

    .site-nav {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0.34rem;
        text-align: center;
    }

    .site-nav__link {
        width: 100%;
        min-height: 2.85rem;
        font-size: 0.9rem;
        padding: 0.68rem 0.92rem;
    }

    .site-header__actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.55rem;
    }

    .site-search {
        flex: 1 1 auto;
        width: 100%;
    }

    .site-search__results {
        left: 0;
        right: 0;
        width: auto;
        transform: none;
    }

    .site-header__cta {
        width: 100%;
        min-height: 2.85rem;
        padding: 0.75rem 1rem;
    }

    .hero-carousel {
        border-radius: 0;
    }

    .hero-carousel__track {
        min-height: 10rem;
    }

    .hero-section::after {
        width: 4.75rem;
    }

    .about-page {
        gap: 1.15rem;
    }

    .about-hero,
    .about-process__shell,
    .about-commitment__shell {
        border-radius: 1.55rem;
    }

    .page-breadcrumb-shell {
        display: none;
    }

    .about-hero__highlights,
    .about-values__grid,
    .about-commitment__cards,
    .about-story__metrics,
    .about-process__steps {
        grid-template-columns: 1fr;
    }

    .about-story__metrics .about-metric:nth-child(2),
    .about-commitment__cards .about-card:nth-child(2) {
        transform: none;
    }

    .about-card--hero:first-child {
        grid-column: auto;
    }

    .about-story__panel,
    .about-process__shell,
    .about-commitment__shell {
        padding: 1.2rem;
    }

    .generic-page {
        gap: 1.15rem;
    }

    .generic-page__hero-shell,
    .generic-page__content-shell {
        border-radius: 1.55rem;
        padding: 1.2rem;
    }

    .generic-page__cards {
        grid-template-columns: 1fr;
    }

    .about-story__panel::before {
        left: 1.2rem;
        top: 1.15rem;
    }

    .about-metric {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.2rem;
    }

    .about-metric__header {
        padding-right: 0;
        padding-bottom: 0.85rem;
        border-right: 0;
        border-bottom: 1px solid rgba(16, 40, 64, 0.08);
    }

    .about-metric__body {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .about-hero__copy,
    .about-process__copy,
    .about-commitment__copy {
        max-width: 100%;
    }

    .about-banner__title {
        font-size: clamp(2.2rem, 8vw, 4rem);
    }

    .intro-section {
        display: none;
    }

    .benefits-section {
        margin-top: 0;
        padding-top: 0.95rem;
    }

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

    .benefit-card {
        text-align: left;
        padding: 0;
    }

    .benefit-card__accent {
        margin-left: 0;
    }

    .category-card {
        display: grid;
        grid-template-columns: minmax(7.6rem, 8.8rem) minmax(0, 1fr);
        min-height: 9rem;
    }

    .category-card img {
        height: 100%;
        aspect-ratio: auto;
    }

    .category-card__caption {
        display: grid;
        align-content: center;
        gap: 0.28rem;
        padding: 1rem 1.1rem;
    }

    .category-card__caption h3 {
        font-size: 1.45rem;
    }

    .category-card__caption p {
        margin: 0;
        font-size: 0.9rem;
    }

    .title-banner {
        border-radius: 0.7rem;
    }

    .multi-purpose-grid {
        min-height: 0;
    }

    .multi-purpose-panel--left,
    .multi-purpose-panel--right {
        min-height: 0;
    }

    .multi-purpose-panel--left {
        isolation: isolate;
        padding: 1.25rem 1rem 0;
        background: transparent;
    }

    .multi-purpose-panel--left::before {
        content: "";
        position: absolute;
        inset: 0.45rem 0.45rem 0.25rem;
        border-radius: 1.4rem;
        background:
            linear-gradient(180deg, rgba(245, 251, 255, 0.98), rgba(255, 255, 255, 0.96));
        box-shadow:
            0 14px 26px rgba(16, 40, 64, 0.08),
            inset 0 0 0 1px rgba(16, 40, 64, 0.06);
        z-index: -1;
    }

    .hand-stage {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        min-height: 12rem;
        padding-inline: 0.35rem;
    }

    .hand-stage img {
        position: relative;
        left: auto;
        bottom: auto;
        width: min(20rem, 100%);
        max-width: 100%;
    }

    .multi-purpose-panel--right {
        display: grid;
        justify-items: center;
        align-content: start;
        gap: 1rem;
        min-height: 0;
        padding: 1.35rem 1rem 1rem;
    }

    .multi-purpose-copy {
        max-width: 100%;
    }

    .multi-purpose-panel__pack {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: min(22rem, 88%);
        margin-inline: auto;
    }

    .surface-strip {
        min-height: 0;
        padding: 1.4rem 0;
    }

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

    .mop-showcase {
        padding: 1.2rem 1rem;
    }

    .mop-showcase__visual {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        min-height: 15rem;
    }

    .mop-showcase__shine {
        display: none;
    }

    .mop-showcase__pack {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        width: min(24rem, 100%);
    }

    .oil-dirt-layout {
        grid-template-columns: 1fr;
    }

    .oil-dirt-feature__copy {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: min(13rem, 60%);
    }

    .oil-dirt-feature__pack {
        top: auto;
        left: auto;
        right: 0.85rem;
        bottom: 3.35rem;
        width: min(16.5rem, 62vw);
        transform: none;
    }

    .oil-dirt-feature__lemon {
        display: none;
    }

    .oil-dirt-feature__kitchen-copy {
        top: 1rem;
        left: 1rem;
        right: 1rem;
    }

    .oil-dirt-feature__kitchen-image {
        right: 0;
        width: min(28rem, 94%);
    }

    .oil-dirt-feature__kitchen-text {
        max-width: 12rem;
    }

    .site-footer__hero,
    .site-footer__content {
        gap: 0.7rem;
    }

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

    .site-footer__bottom-wrap {
        justify-content: center;
        text-align: center;
        border-radius: 1.15rem;
    }

    .site-footer__legal {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .content-wrap,
    .content-wrap--wide,
    .footer-wrap {
        width: min(calc(100% - 0.75rem), 36rem);
    }

    .site-header {
        padding: 0.22rem 0 0.18rem;
    }

    .site-header__nav {
        gap: 0.45rem 0.6rem;
    }

    .site-header__logo {
        width: min(104px, 42vw);
        padding: 0;
    }

    .site-header__menu-toggle {
        padding: 0.54rem 0.7rem;
        font-size: 0.72rem;
        letter-spacing: 0.07em;
    }

    .site-header__hours {
        display: inline-flex;
        padding: 0.52rem 0.72rem;
        font-size: 0.72rem;
    }

    .site-header__nav-shell {
        padding: 0.22rem;
        border-radius: 0.92rem;
    }

    .site-header[data-menu-ready="true"] .site-header__panel {
        padding: 0.72rem;
        border-radius: 1.15rem;
    }

    .site-search {
        width: 100%;
    }

    .site-search__results {
        left: 0;
        right: 0;
        width: auto;
        transform: none;
    }

    .hero-carousel__track {
        min-height: 9rem;
    }

    .hero-section::after {
        width: 4rem;
        height: 0.3rem;
    }

    .site-nav__link {
        min-height: 2.65rem;
        font-size: 0.8rem;
        padding: 0.56rem 0.72rem;
    }

    .site-header__actions {
        width: 100%;
        gap: 0.42rem;
    }

    .site-search__field {
        padding: 0.42rem 0.62rem;
    }

    .site-header__cta {
        min-height: 2.65rem;
        padding: 0.68rem 0.9rem;
        font-size: 0.8rem;
    }

    .site-footer {
        margin-top: 1.6rem;
        padding: 0.96rem 0 0.72rem;
    }

    .site-footer__brand-card,
    .site-footer__meta-card,
    .site-footer__column {
        padding: 0.64rem;
        border-radius: 0.86rem;
    }

    .site-footer__brand-mark {
        padding: 0.34rem 0.46rem;
        border-radius: 0.72rem;
    }

    .site-footer__brand-mark img {
        width: 3.9rem;
    }

    .site-footer__intro {
        font-size: 0.74rem;
        line-height: 1.32;
    }

    .site-footer__contact-strip,
    .site-footer__legal {
        gap: 0.3rem;
    }

    .site-footer__chip,
    .site-footer__legal a {
        width: 100%;
    }

    .site-footer__bottom-wrap {
        padding: 0.44rem 0.56rem;
    }

    .site-footer__hero,
    .site-footer__content {
        gap: 0.5rem;
    }

    .site-footer__column h2 {
        font-size: 0.76rem;
    }

    .site-footer__column p,
    .site-footer__links,
    .site-footer__contact-list,
    .site-footer__meta-card p,
    .site-footer__meta-card address {
        font-size: 0.7rem;
        line-height: 1.28;
    }

    .site-footer__chip {
        min-height: 1.72rem;
        padding: 0.32rem 0.5rem;
        font-size: 0.66rem;
    }

    .site-footer__meta-label,
    .site-footer__eyebrow,
    .site-footer__copyright,
    .site-footer__legal a {
        font-size: 0.58rem;
    }

    .about-hero,
    .about-process__shell,
    .about-commitment__shell,
    .about-story__panel {
        border-radius: 1.25rem;
    }

    .about-banner__content::before {
        bottom: 0.8rem;
        width: 3.5rem;
    }

    .about-banner__title {
        padding-bottom: 1rem;
        font-size: clamp(1.9rem, 9vw, 2.9rem);
    }

    .about-hero__copy h1,
    .generic-page__hero-copy h1,
    .generic-page__content-copy h2,
    .about-process__copy h2,
    .about-commitment__copy h2 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .about-card,
    .about-metric,
    .about-step {
        padding: 1rem;
    }

    .about-card__icon,
    .about-metric__token,
    .about-step__count {
        width: 2.7rem;
        height: 2.7rem;
    }

    .hero-carousel__dots {
        bottom: 0.65rem;
    }

    .benefits-section {
        margin-top: 0;
        padding-top: 0.8rem;
    }

    .title-banner span {
        font-size: 1.45rem;
    }

    .title-banner small {
        font-size: 0.9rem;
    }

    .surface-strip__copy h2 {
        font-size: 1.55rem;
    }

    .surface-strip__copy p {
        font-size: 0.95rem;
    }

    .surface-strip__swatches {
        display: none;
    }

    .category-card {
        grid-template-columns: 6.8rem minmax(0, 1fr);
        min-height: 8rem;
        border-radius: 1.25rem;
    }

    .category-card__caption {
        padding: 0.9rem 1rem;
    }

    .category-card__caption h3 {
        font-size: 1.28rem;
    }

    .category-card__caption p {
        font-size: 0.84rem;
    }

    .multi-purpose-panel--left {
        padding: 1rem 1rem 0;
    }

    .multi-purpose-panel--left::before {
        inset: 0.35rem 0.35rem 0.2rem;
        border-radius: 1.2rem;
    }

    .hand-stage {
        min-height: 10rem;
    }

    .multi-purpose-panel__pack {
        width: min(18rem, 92%);
    }

    .mop-showcase__copy {
        max-width: 100%;
    }

    .mop-showcase__visual {
        min-height: 13rem;
    }

    .oil-dirt-feature {
        min-height: 18rem;
    }

    .label-stack span {
        max-width: 100%;
        padding: 0.38rem 0.7rem;
        font-size: 1.06rem;
        white-space: normal;
    }

    .oil-dirt-feature__copy {
        max-width: 72%;
    }

    .oil-dirt-feature__pack {
        right: 0.7rem;
        bottom: 2.55rem;
        width: min(13.5rem, 60vw);
    }

    .oil-dirt-feature__lemon {
        display: none;
    }

    .oil-dirt-feature__kitchen-copy {
        top: 1rem;
        left: 1rem;
        right: 1rem;
    }

    .oil-dirt-feature__badge {
        font-size: 1.12rem;
    }

    .oil-dirt-feature__kitchen-text {
        max-width: 10rem;
        font-size: 1.12rem;
    }

    .oil-dirt-feature__kitchen-image {
        right: 0;
        width: min(19rem, 94%);
    }

    .label-stack span {
        font-size: 1.06rem;
    }
}
