:root {
    --brand-orange: #fe7e38;
    --brand-magenta: #ab077e;
    --brand-red: #f02137;
    --brand-ink: #312a24;
    --primary: #8a0666;
    --primary-dark: #65044c;
    --primary-deep: #430334;
    --primary-soft: #f7e7f2;
    --cream: #fff8f3;
    --cream-dark: #f6e8df;
    --text: #25211e;
    --text-soft: #665c55;
    --white: #fff;
    --border: #e8ded7;
    --focus: #005fcc;
    --success: #16734a;
    --container: 1320px;
    --header-height: 84px;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --shadow-sm: 0 5px 22px rgb(49 42 36 / 8%);
    --shadow-md: 0 24px 70px rgb(49 42 36 / 16%);
    --ease: cubic-bezier(.2, .75, .25, 1);
}

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

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

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: clip;
}

body.is-locked {
    overflow: hidden;
}

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

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

button,
input {
    color: inherit;
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--brand-ink);
    font-weight: 750;
    letter-spacing: -.04em;
    line-height: 1.08;
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2.15rem, 4vw, 4.6rem);
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 4px;
}

::selection {
    color: var(--white);
    background: var(--primary);
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 16px;
    left: 16px;
    padding: 12px 18px;
    color: var(--white);
    background: var(--focus);
    border-radius: var(--radius-sm);
    transform: translateY(-160%);
    transition: transform .2s;
}

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

.eyebrow {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow--bright {
    color: #ffd9ec;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .93rem;
    font-weight: 750;
    gap: 12px;
    transition: color .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}

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

.button--small {
    min-height: 46px;
    padding: 11px 20px;
}

.button--primary {
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 10px 26px rgb(138 6 102 / 22%);
}

.button--primary:hover {
    background: var(--primary-dark);
}

.button--light {
    color: var(--primary-deep);
    background: var(--white);
    box-shadow: 0 12px 35px rgb(46 1 34 / 18%);
}

.button--light:hover {
    background: #fff3f9;
}

.button--ghost-light {
    color: var(--white);
    border-color: rgb(255 255 255 / 44%);
    background: transparent;
}

.button--ghost-light:hover {
    border-color: var(--white);
    background: rgb(255 255 255 / 10%);
}

.button--outline {
    border-color: var(--border);
    background: var(--white);
}

.button--full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-size: .92rem;
    font-weight: 800;
    gap: 8px;
}

.text-link span {
    transition: transform .2s var(--ease);
}

.text-link:hover span {
    transform: translateX(4px);
}

.text-link--dark {
    color: var(--brand-ink);
}

.prototype-notice {
    position: relative;
    z-index: 81;
    color: var(--white);
    background: var(--primary-deep);
    font-size: .74rem;
    letter-spacing: .02em;
}

.prototype-notice__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
}

.prototype-notice p {
    margin: 0;
    text-align: center;
}

.prototype-notice__close {
    position: absolute;
    right: 0;
    width: 32px;
    height: 32px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 0;
    font-size: 1.4rem;
}

.site-header {
    position: sticky;
    z-index: 80;
    top: 0;
    background: var(--white);
    box-shadow: 0 1px 0 rgb(49 42 36 / 8%);
}

.utility-bar {
    color: #dfd8d3;
    background: var(--brand-ink);
    font-size: .73rem;
}

.utility-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 32px;
}

.utility-bar p {
    margin: 0;
}

.utility-bar nav {
    display: flex;
    gap: 24px;
}

.utility-bar a:hover {
    color: var(--white);
}

.header-main {
    position: relative;
}

.header-main__inner {
    display: flex;
    align-items: center;
    min-height: var(--header-height);
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    width: 142px;
    height: 62px;
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: stretch;
    align-self: stretch;
    margin-left: auto;
    gap: 2px;
}

.desktop-nav > a,
.desktop-nav__trigger {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 14px;
    color: #473f39;
    background: transparent;
    border: 0;
    font-size: .85rem;
    font-weight: 720;
    gap: 8px;
}

.desktop-nav > a::after,
.desktop-nav__trigger::after {
    position: absolute;
    right: 14px;
    bottom: 0;
    left: 14px;
    height: 3px;
    background: var(--primary);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s var(--ease);
}

.desktop-nav > a:hover::after,
.desktop-nav__trigger:hover::after,
.desktop-nav__trigger[aria-expanded="true"]::after {
    transform: scaleX(1);
}

.chevron {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s;
}

[aria-expanded="true"] > .chevron {
    transform: rotate(225deg) translate(-2px, -2px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 8px;
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: var(--brand-ink);
    font-size: .79rem;
    font-weight: 800;
    gap: 7px;
}

.header-action:hover {
    background: var(--cream);
}

.search-icon {
    position: relative;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.search-icon::after {
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 7px;
    height: 2px;
    background: currentColor;
    content: "";
    transform: rotate(45deg);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    padding: 0;
    background: var(--cream);
    border: 0;
    border-radius: 50%;
    gap: 5px;
}

.mobile-toggle span {
    width: 19px;
    height: 2px;
    background: var(--brand-ink);
}

.site-header.is-scrolled .header-main__inner {
    min-height: 72px;
}

.site-header.is-scrolled .brand {
    height: 52px;
}

.header-main__inner,
.brand {
    transition: min-height .25s var(--ease), height .25s var(--ease);
}

.mega-menu {
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 38px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 28px 55px rgb(49 42 36 / 16%);
}

.mega-menu:not([hidden]) {
    animation: menu-in .22s var(--ease) both;
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: 1.1fr .8fr .8fr 1fr;
    gap: 48px;
}

.mega-menu__intro {
    padding-right: 26px;
    border-right: 1px solid var(--border);
}

.mega-menu__intro h2 {
    margin-bottom: 14px;
    font-size: 1.75rem;
}

.mega-menu__intro p {
    color: var(--text-soft);
    font-size: .88rem;
}

.mega-menu__links h3 {
    margin-bottom: 15px;
    font-size: .73rem;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.mega-menu__links a {
    display: block;
    padding: 5px 0;
    color: var(--text-soft);
    font-size: .87rem;
}

.mega-menu__links a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.mega-menu__feature {
    position: relative;
    min-height: 215px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--cream);
}

.mega-menu__feature::after {
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, rgb(49 42 36 / 85%));
    content: "";
}

.mega-menu__feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s var(--ease);
}

.mega-menu__feature:hover img {
    transform: scale(1.04);
}

.mega-menu__feature > span {
    position: absolute;
    z-index: 1;
    right: 20px;
    bottom: 18px;
    left: 20px;
    color: var(--white);
}

.mega-menu__feature strong,
.mega-menu__feature small {
    display: block;
}

.mega-menu__feature small {
    margin-top: 4px;
    color: #eee4de;
    font-size: .75rem;
}

.mega-menu__grid--solutions {
    grid-template-columns: 1.15fr repeat(4, .7fr);
    align-items: stretch;
}

.mega-solution {
    padding: 24px 20px;
    background: var(--cream);
    border-radius: var(--radius-md);
    transition: transform .25s var(--ease), background .25s var(--ease);
}

.mega-solution:hover {
    background: var(--primary-soft);
    transform: translateY(-4px);
}

.mega-solution span,
.mega-solution strong,
.mega-solution small {
    display: block;
}

.mega-solution span {
    margin-bottom: 34px;
    color: var(--primary);
    font-size: .72rem;
    font-weight: 800;
}

.mega-solution strong {
    margin-bottom: 7px;
}

.mega-solution small {
    color: var(--text-soft);
    font-size: .73rem;
    line-height: 1.45;
}

.mega-menu__grid--corporate {
    grid-template-columns: 1.15fr .7fr .7fr .9fr;
}

.mega-menu__quote {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 190px;
    padding: 26px;
    overflow: hidden;
    color: var(--white);
    background: var(--primary);
    border-radius: var(--radius-md);
}

.mega-menu__quote p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 650;
}

.mega-menu__quote-mark {
    position: absolute;
    top: -30px;
    right: 18px;
    color: rgb(255 255 255 / 15%);
    font-family: Georgia, serif;
    font-size: 9rem;
    line-height: 1;
}

.mobile-menu {
    position: fixed;
    z-index: 100;
    inset: 0;
}

.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgb(31 24 20 / 60%);
    backdrop-filter: blur(4px);
}

.mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(92vw, 430px);
    height: 100%;
    padding: 18px 24px 24px;
    overflow-y: auto;
    background: var(--white);
    animation: drawer-in .3s var(--ease) both;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.brand--mobile {
    width: 126px;
    height: 58px;
}

.mobile-menu__close,
.search-dialog__header button {
    width: 44px;
    height: 44px;
    padding: 0;
    background: var(--cream);
    border: 0;
    border-radius: 50%;
    font-size: 1.7rem;
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav > a,
.mobile-nav__group > button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 12px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.12rem;
    font-weight: 750;
    text-align: left;
}

.mobile-nav__group > button span {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 400;
}

.mobile-nav__group div {
    padding: 8px 0 12px 18px;
    border-bottom: 1px solid var(--border);
}

.mobile-nav__group div a {
    display: block;
    padding: 9px 0;
    color: var(--text-soft);
}

.mobile-menu__footer {
    display: grid;
    margin-top: auto;
    gap: 10px;
}

@keyframes menu-in {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes drawer-in {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.hero {
    position: relative;
    min-height: 780px;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 80% 15%, rgb(254 126 56 / 30%), transparent 28%),
        linear-gradient(125deg, var(--primary-deep) 0%, var(--primary) 58%, #b10b70 100%);
}

.hero::after {
    position: absolute;
    right: -10%;
    bottom: -340px;
    width: 750px;
    height: 750px;
    border: 130px solid rgb(255 255 255 / 5%);
    border-radius: 50%;
    content: "";
}

.hero__decor {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    pointer-events: none;
}

.hero__decor--one {
    top: 18%;
    left: -90px;
    width: 180px;
    height: 180px;
    border: 40px solid rgb(254 126 56 / 15%);
}

.hero__decor--two {
    top: 82px;
    left: 48%;
    width: 13px;
    height: 13px;
    background: var(--brand-orange);
    box-shadow: 32px 50px 0 3px rgb(255 255 255 / 18%), -42px 115px 0 1px rgb(255 255 255 / 22%);
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    min-height: 640px;
    padding-top: 56px;
    padding-bottom: 92px;
    gap: 54px;
}

.hero__content {
    max-width: 650px;
}

.hero .eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero .eyebrow span {
    width: 28px;
    height: 2px;
    background: var(--brand-orange);
}

.hero h1 {
    margin-bottom: 28px;
    color: var(--white);
    font-size: clamp(3.2rem, 5.7vw, 6.2rem);
    line-height: .98;
}

.hero h1 em {
    color: #ffb183;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -.055em;
}

.hero__lead {
    max-width: 590px;
    margin-bottom: 32px;
    color: #f5e6ee;
    font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__assurance {
    display: flex;
    align-items: center;
    margin-top: 36px;
    gap: 12px;
}

.hero__assurance-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--primary-deep);
    background: var(--brand-orange);
    border-radius: 50%;
    font-weight: 900;
}

.hero__assurance p {
    margin: 0;
    color: #eadbe3;
    font-size: .75rem;
    line-height: 1.4;
}

.hero__assurance strong {
    color: var(--white);
    font-size: .85rem;
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.hero-visual__halo {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    border: 1px solid rgb(255 255 255 / 25%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hero-visual__halo::before,
.hero-visual__halo::after {
    position: absolute;
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 50%;
    content: "";
}

.hero-visual__halo::before {
    inset: 35px;
}

.hero-visual__halo::after {
    inset: 75px;
}

.hero-visual__main {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(74%, 460px);
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--cream);
    border: 10px solid rgb(255 255 255 / 14%);
    border-radius: 48% 52% 44% 56% / 54% 42% 58% 46%;
    box-shadow: 0 40px 90px rgb(38 1 28 / 45%);
    transform: translate(-50%, -50%) rotate(-3deg);
}

.hero-visual__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(3deg) scale(1.04);
}

.hero-visual__card {
    position: absolute;
    z-index: 2;
    width: 150px;
    aspect-ratio: 1;
    padding: 8px;
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.hero-visual__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.hero-visual__card--top {
    top: 22px;
    right: 2%;
    transform: rotate(7deg);
}

.hero-visual__card--bottom {
    bottom: 30px;
    left: 0;
    transform: rotate(-8deg);
}

.hero-visual__label {
    position: absolute;
    z-index: 3;
    right: -8px;
    bottom: 90px;
    padding: 13px 18px;
    color: var(--brand-ink);
    background: var(--brand-orange);
    border-radius: 12px 12px 12px 0;
    box-shadow: var(--shadow-sm);
    transform: rotate(-2deg);
}

.hero-visual__label span,
.hero-visual__label strong {
    display: block;
    line-height: 1.15;
}

.hero-visual__label span {
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-stats {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    align-items: center;
    min-height: 108px;
    padding: 16px 34px;
    color: var(--brand-ink);
    background: var(--white);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -15px 45px rgb(54 3 42 / 15%);
}

.hero-stat {
    padding: 5px 26px;
    border-right: 1px solid var(--border);
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat strong,
.hero-stat span {
    display: block;
}

.hero-stat strong {
    color: var(--primary);
    font-size: 1.48rem;
    letter-spacing: -.04em;
}

.hero-stat span {
    color: var(--text-soft);
    font-size: .72rem;
}

.hero-stats__note {
    max-width: 160px;
    margin: 0 0 0 22px;
    color: #857b74;
    font-size: .61rem;
    line-height: 1.35;
}

.section {
    padding: 110px 0;
}

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

.section-heading--split,
.section-heading--with-action {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}

.section-heading--split > div,
.section-heading--with-action > div {
    max-width: 820px;
}

.section-heading--split h2,
.section-heading--with-action h2 {
    margin-bottom: 0;
}

.section-heading--split > p {
    max-width: 420px;
    margin: 0 0 7px;
    color: var(--text-soft);
}

.section-heading--centered {
    max-width: 870px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading--centered > p:last-child {
    max-width: 650px;
    margin-inline: auto;
    color: var(--text-soft);
}

.section--solutions {
    background: var(--cream);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1.3fr .85fr .85fr;
    grid-template-rows: repeat(2, 225px);
    gap: 16px;
}

.solution-card {
    position: relative;
    display: flex;
    min-height: 0;
    padding: 28px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.solution-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.solution-card::before,
.solution-card::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.solution-card__number {
    position: relative;
    z-index: 1;
    font-size: .73rem;
    font-weight: 850;
    letter-spacing: .1em;
}

.solution-card__tag {
    position: absolute;
    z-index: 1;
    top: 24px;
    right: 24px;
    padding: 5px 10px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: .62rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.solution-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-self: flex-end;
    flex-direction: column;
    width: 100%;
}

.solution-card__content strong {
    font-size: clamp(1.6rem, 2.5vw, 2.75rem);
    letter-spacing: -.05em;
    line-height: 1;
}

.solution-card__content small {
    max-width: 310px;
    margin-top: 12px;
    font-size: .78rem;
    line-height: 1.45;
}

.circle-link {
    position: absolute;
    right: 0;
    bottom: 0;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    background: rgb(255 255 255 / 90%);
    border-radius: 50%;
    color: var(--brand-ink);
    font-size: 1.2rem;
    transition: transform .25s var(--ease);
}

.solution-card:hover .circle-link {
    transform: rotate(-35deg);
}

.solution-card--large {
    grid-row: 1 / 3;
    color: var(--white);
    background: var(--primary);
}

.solution-card--large::before {
    right: -80px;
    bottom: -80px;
    width: 330px;
    height: 330px;
    border: 75px solid rgb(255 255 255 / 9%);
}

.solution-card--large::after {
    top: 64px;
    left: 38%;
    width: 125px;
    height: 125px;
    background: var(--brand-orange);
    opacity: .92;
}

.solution-card--large .solution-card__content strong {
    color: var(--white);
    font-size: clamp(2.3rem, 4vw, 4.5rem);
}

.solution-card--large .solution-card__content small {
    color: #f3dce9;
}

.solution-card--retail {
    color: var(--brand-ink);
    background: var(--brand-orange);
}

.solution-card--retail::after {
    top: -40px;
    right: -20px;
    width: 160px;
    height: 160px;
    border: 38px solid rgb(255 255 255 / 18%);
}

.solution-card--private {
    color: var(--white);
    background: var(--brand-ink);
}

.solution-card--private::after {
    top: -36px;
    right: -36px;
    width: 130px;
    height: 130px;
    background: var(--brand-red);
}

.solution-card--private strong {
    color: var(--white);
}

.solution-card--private small {
    color: #d8d0ca;
}

.solution-card--export {
    grid-column: 2 / 4;
    color: var(--white);
    background: #7558a6;
}

.solution-card--export::before {
    right: 80px;
    bottom: -130px;
    width: 300px;
    height: 300px;
    border: 1px solid rgb(255 255 255 / 25%);
}

.solution-card--export::after {
    right: 158px;
    bottom: -56px;
    width: 150px;
    height: 150px;
    border: 1px solid rgb(255 255 255 / 18%);
}

.solution-card--export strong {
    color: var(--white);
}

.solution-card--export small {
    color: #eee8f7;
}

.section--categories {
    background: var(--white);
}

.category-scroller {
    display: grid;
    grid-template-columns: repeat(6, minmax(235px, 1fr));
    padding-bottom: 16px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-color: var(--primary) var(--cream-dark);
    scrollbar-width: thin;
    gap: 14px;
}

.category-card {
    min-width: 235px;
    overflow: hidden;
    border-radius: 20px;
}

.category-card > a {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 395px;
    padding: 18px;
}

.category-card__index {
    color: rgb(49 42 36 / 65%);
    font-size: .7rem;
    font-weight: 850;
}

.category-card__image {
    align-self: center;
    width: 92%;
    margin: 12px auto -2px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 50%;
    background: rgb(255 255 255 / 40%);
    transition: transform .35s var(--ease);
}

.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
}

.category-card:hover .category-card__image {
    transform: translateY(-6px) scale(1.03);
}

.category-card__content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
    gap: 12px;
}

.category-card__content h3 {
    margin: 0;
    font-size: 1.38rem;
}

.category-card__content > span {
    display: grid;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    place-items: center;
    background: var(--white);
    border-radius: 50%;
}

.category-card--orange { background: #ffb487; }
.category-card--magenta { background: #f3c3df; }
.category-card--red { background: #ffb9c0; }
.category-card--ink { background: #d9d3ce; }
.category-card--yellow { background: #f8d987; }
.category-card--coffee { background: #cdb495; }

.professional {
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.professional::after {
    position: absolute;
    right: -180px;
    bottom: -180px;
    width: 390px;
    height: 390px;
    border: 85px solid var(--primary-soft);
    border-radius: 50%;
    content: "";
}

.professional__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: clamp(60px, 9vw, 130px);
}

.professional__visual {
    position: relative;
    min-height: 560px;
}

.professional__shape {
    position: absolute;
    inset: 6% 8% 0;
    background: var(--brand-orange);
    border-radius: 48% 52% 12% 12% / 40% 40% 12% 12%;
    transform: rotate(-4deg);
}

.professional__visual img {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;
    width: 88%;
    filter: drop-shadow(0 30px 40px rgb(49 42 36 / 22%));
    mix-blend-mode: multiply;
    transform: translateX(-50%);
}

.professional__badge {
    position: absolute;
    z-index: 2;
    top: 10%;
    right: -10px;
    display: grid;
    width: 115px;
    height: 115px;
    place-items: center;
    align-content: center;
    color: var(--white);
    background: var(--primary);
    border: 7px solid var(--cream);
    border-radius: 50%;
    font-size: .72rem;
    text-align: center;
    transform: rotate(8deg);
}

.professional__badge strong {
    display: block;
    font-size: .86rem;
}

.professional__content {
    max-width: 620px;
}

.professional__content > p:not(.eyebrow) {
    color: var(--text-soft);
    font-size: 1.05rem;
}

.check-list {
    display: grid;
    padding: 0;
    margin: 32px 0;
    list-style: none;
    gap: 13px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.check-list span {
    display: grid;
    flex: 0 0 auto;
    width: 27px;
    height: 27px;
    place-items: center;
    color: var(--white);
    background: var(--primary);
    border-radius: 50%;
    font-size: .72rem;
    font-weight: 900;
}

.brand-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--brand-ink);
}

.brand-section::before {
    position: absolute;
    top: -220px;
    left: -140px;
    width: 520px;
    height: 520px;
    border: 110px solid rgb(254 126 56 / 8%);
    border-radius: 50%;
    content: "";
}

.brand-section__grid {
    position: relative;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 80px;
}

.brand-section h2 {
    color: var(--white);
    font-size: clamp(2.3rem, 4.2vw, 4.6rem);
}

.brand-section__copy > p:not(.eyebrow) {
    max-width: 510px;
    margin-bottom: 32px;
    color: #d7cfca;
}

.brand-family-card {
    padding: 42px;
    color: var(--brand-ink);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgb(0 0 0 / 25%);
    transform: rotate(1.5deg);
}

.brand-family-card__label {
    display: inline-block;
    padding: 6px 11px;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 999px;
    font-size: .65rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.brand-family-card img {
    width: 100%;
    margin: 25px 0 18px;
}

.brand-family-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: .67rem;
    text-align: center;
}

.private-label {
    background: var(--cream);
}

.private-label__grid {
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    gap: 80px;
}

.private-label h2 em {
    color: var(--primary);
    font-family: Georgia, serif;
    font-weight: 400;
}

.private-label__copy > p:not(.eyebrow) {
    max-width: 610px;
    color: var(--text-soft);
}

.process-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    margin: 35px 0;
    border-top: 1px solid var(--border);
    list-style: none;
}

.process-list li {
    display: flex;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid var(--border);
    gap: 12px;
}

.process-list li:nth-child(odd) {
    margin-right: 24px;
}

.process-list span {
    color: var(--primary);
    font-size: .68rem;
    font-weight: 850;
}

.process-list strong {
    font-size: .86rem;
}

.private-label__visual {
    position: relative;
    min-height: 570px;
    background:
        radial-gradient(circle at center, rgb(255 255 255 / 75%) 0 30%, transparent 31%),
        var(--brand-orange);
    border-radius: 48% 52% 42% 58% / 55% 42% 58% 45%;
}

.private-label__visual::before,
.private-label__visual::after {
    position: absolute;
    border: 1px solid rgb(49 42 36 / 15%);
    border-radius: 50%;
    content: "";
}

.private-label__visual::before {
    inset: 55px;
}

.private-label__visual::after {
    inset: 105px;
}

.package {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 220px;
    height: 315px;
    padding: 20px;
    border-radius: 14px 14px 28px 28px;
    box-shadow: 0 28px 50px rgb(49 42 36 / 28%);
    text-align: center;
}

.package::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 20px;
    background: rgb(255 255 255 / 16%);
    border-radius: 14px 14px 0 0;
    content: "";
}

.package span,
.package strong,
.package small {
    display: block;
}

.package span {
    font-size: .65rem;
    letter-spacing: .22em;
}

.package strong {
    margin: 4px 0 18px;
    font-size: 1.55rem;
    letter-spacing: -.04em;
}

.package small {
    padding-top: 12px;
    border-top: 1px solid currentColor;
    font-size: .65rem;
    letter-spacing: .12em;
    opacity: .7;
    text-transform: uppercase;
}

.package--one {
    top: 90px;
    left: 20%;
    color: var(--white);
    background: var(--primary);
    transform: rotate(-10deg);
}

.package--two {
    right: 18%;
    bottom: 65px;
    color: var(--brand-ink);
    background: #fff4e8;
    transform: rotate(8deg);
}

.private-label__stamp {
    position: absolute;
    z-index: 3;
    top: 54px;
    right: 42px;
    display: grid;
    width: 120px;
    height: 120px;
    place-items: center;
    align-content: center;
    color: var(--white);
    background: var(--brand-red);
    border: 7px solid var(--brand-orange);
    border-radius: 50%;
    font-size: .75rem;
    text-align: center;
    transform: rotate(11deg);
}

.values {
    background: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.value-card {
    min-height: 250px;
    padding: 34px 30px;
    border-right: 1px solid var(--border);
}

.value-card:last-child {
    border-right: 0;
}

.value-card__icon {
    display: grid;
    width: 49px;
    height: 49px;
    margin-bottom: 52px;
    place-items: center;
    color: var(--primary);
    background: var(--primary-soft);
    border-radius: 50%;
    font-size: .71rem;
    font-weight: 850;
}

.value-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.value-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: .84rem;
}

.global-section {
    position: relative;
    min-height: 610px;
    overflow: hidden;
    color: var(--white);
    background: linear-gradient(120deg, var(--primary-deep), #720657 70%, #9d0871);
}

.global-section__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: max(24px, calc((100% - var(--container)) / 2));
}

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

.global-section__inner > p:not(.eyebrow) {
    max-width: 610px;
    margin-bottom: 30px;
    color: #eddae6;
}

.global-section__map {
    position: absolute;
    top: 50%;
    right: 1%;
    width: 44vw;
    height: 380px;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 48% 52% 44% 56%;
    transform: translateY(-50%) rotate(-5deg);
}

.global-section__map::before,
.global-section__map::after {
    position: absolute;
    inset: 12%;
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 50%;
    content: "";
}

.global-section__map::after {
    inset: 29%;
}

.global-section__map span {
    position: absolute;
    z-index: 2;
    width: 12px;
    height: 12px;
    background: var(--brand-orange);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgb(254 126 56 / 20%);
}

.global-section__map span:nth-child(1) { top: 30%; left: 16%; }
.global-section__map span:nth-child(2) { top: 18%; left: 47%; }
.global-section__map span:nth-child(3) { top: 52%; left: 35%; }
.global-section__map span:nth-child(4) { top: 66%; left: 58%; }
.global-section__map span:nth-child(5) { top: 37%; left: 76%; }
.global-section__map span:nth-child(6) { top: 73%; left: 83%; }

.inspiration {
    background: var(--cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(2, .875fr);
    gap: 18px;
}

.story-card {
    overflow: hidden;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.story-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.story-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream-dark);
}

.story-card--feature .story-card__image {
    aspect-ratio: 16 / 10;
}

.story-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s var(--ease);
}

.story-card:hover .story-card__image img {
    transform: scale(1.04);
}

.story-card__image > span {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 11px;
    color: var(--white);
    background: var(--primary);
    border-radius: 999px;
    font-size: .65rem;
    font-weight: 800;
}

.story-card__content {
    padding: 25px;
}

.story-card__content > p {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: .66rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.story-card__content h3 {
    min-height: 60px;
    margin-bottom: 24px;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.story-card--feature h3 {
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.quality {
    background: var(--white);
}

.quality__grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 90px;
}

.quality__content > p:not(.eyebrow) {
    color: var(--text-soft);
}

.quality__cards {
    display: grid;
    gap: 12px;
}

.quality__cards article {
    display: grid;
    grid-template-columns: 55px 1fr;
    padding: 24px 28px;
    background: var(--cream);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    transition: border-color .2s, transform .2s;
}

.quality__cards article:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.quality__cards span {
    grid-row: 1 / 3;
    color: var(--primary);
    font-size: .68rem;
    font-weight: 850;
}

.quality__cards h3 {
    margin: 0 0 7px;
    font-size: 1.13rem;
}

.quality__cards p {
    margin: 0;
    color: var(--text-soft);
    font-size: .8rem;
}

.catalog {
    padding-top: 40px;
    background: var(--white);
}

.catalog__card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr .75fr;
    align-items: center;
    min-height: 490px;
    padding: 65px 80px;
    overflow: hidden;
    color: var(--white);
    background: var(--primary);
    border-radius: 34px;
}

.catalog__copy {
    position: relative;
    z-index: 2;
}

.catalog h2 {
    color: var(--white);
}

.catalog__copy > p:not(.eyebrow) {
    max-width: 530px;
    color: #f1dbe8;
}

.catalog__visual {
    position: absolute;
    top: -40%;
    right: -3%;
    width: 52%;
    height: 165%;
}

.catalog__visual::before {
    position: absolute;
    inset: 13%;
    background: var(--brand-orange);
    border-radius: 50%;
    content: "";
}

.catalog__visual img {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 63%;
    max-height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 30px 45px rgb(47 1 35 / 40%));
    transform: translate(-50%, -50%) rotate(8deg);
}

.catalog__ring {
    position: absolute;
    z-index: 1;
    inset: 6%;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 50%;
}

.career-strip {
    padding: 90px 0;
    background: var(--cream);
}

.career-strip__inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: end;
    gap: 90px;
}

.career-strip h2 {
    margin: 0;
}

.career-strip__inner > div:last-child p {
    max-width: 510px;
    margin-bottom: 25px;
    color: var(--text-soft);
}

.contact-cta {
    padding: 100px 0;
    color: var(--white);
    background: var(--brand-orange);
}

.contact-cta__inner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: end;
    gap: 80px;
}

.contact-cta .eyebrow {
    color: #6a2609;
}

.contact-cta h2 {
    margin: 0;
    color: var(--brand-ink);
}

.contact-cta__action p {
    max-width: 470px;
    margin-bottom: 26px;
    color: #5d2e17;
}

.site-footer {
    color: #cfc6c0;
    background: #241f1b;
}

.newsletter {
    display: grid;
    grid-template-columns: 1fr .8fr;
    align-items: center;
    min-height: 170px;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    gap: 50px;
}

.newsletter__copy {
    display: flex;
    align-items: center;
    gap: 22px;
}

.newsletter__icon {
    display: grid;
    flex: 0 0 auto;
    width: 58px;
    height: 58px;
    place-items: center;
    color: var(--brand-ink);
    background: var(--brand-orange);
    border-radius: 50%;
    font-size: 1.35rem;
}

.newsletter h2 {
    margin-bottom: 7px;
    color: var(--white);
    font-size: 1.45rem;
    letter-spacing: -.03em;
}

.newsletter p {
    margin: 0;
    font-size: .8rem;
}

.newsletter__form {
    position: relative;
}

.newsletter__form input {
    width: 100%;
    height: 58px;
    padding: 0 70px 0 20px;
    color: var(--white);
    background: rgb(255 255 255 / 7%);
    border: 1px solid rgb(255 255 255 / 22%);
    border-radius: 999px;
}

.newsletter__form input::placeholder {
    color: #a89e97;
}

.newsletter__form button {
    position: absolute;
    top: 6px;
    right: 6px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--brand-ink);
    background: var(--brand-orange);
    border: 0;
    border-radius: 50%;
}

.newsletter__status {
    position: absolute;
    top: calc(100% + 5px);
    left: 20px;
    color: #f6c9df;
    font-size: .68rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.45fr repeat(4, .8fr);
    padding-top: 70px;
    padding-bottom: 65px;
    gap: 42px;
}

.brand--footer {
    width: 158px;
    height: 78px;
    margin-bottom: 20px;
}

.footer-brand > p {
    max-width: 310px;
    font-size: .8rem;
}

.social-links {
    display: flex;
    margin-top: 25px;
    gap: 9px;
}

.social-links a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 50%;
    font-size: .75rem;
    font-weight: 800;
}

.social-links a:hover {
    color: var(--brand-ink);
    background: var(--brand-orange);
    border-color: var(--brand-orange);
}

.footer-column h2 {
    margin-bottom: 21px;
    color: var(--white);
    font-size: .83rem;
    letter-spacing: .05em;
}

.footer-column a {
    display: block;
    padding: 4px 0;
    font-size: .77rem;
}

.footer-column a:hover {
    color: var(--brand-orange);
}

.footer-contact address {
    margin-bottom: 13px;
    font-size: .76rem;
    font-style: normal;
}

.footer-contact small {
    display: block;
    margin-top: 12px;
    color: #8f8781;
    font-size: .58rem;
    line-height: 1.4;
}

.footer-bottom {
    background: #1a1714;
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
    font-size: .67rem;
    gap: 30px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom nav {
    display: flex;
    gap: 20px;
}

.footer-bottom a:hover {
    color: var(--white);
}

.back-to-top {
    color: var(--brand-orange);
    font-weight: 800;
}

.search-dialog {
    width: min(calc(100% - 40px), 760px);
    padding: 0;
    overflow: hidden;
    background: var(--white);
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 100px rgb(31 4 24 / 40%);
}

.search-dialog::backdrop {
    background: rgb(31 20 26 / 72%);
    backdrop-filter: blur(7px);
}

.search-dialog__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
}

.search-dialog__header p {
    margin: 0;
    color: var(--primary);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.search-dialog__form {
    padding: 45px;
}

.search-dialog__form label {
    display: block;
    margin-bottom: 18px;
    color: var(--brand-ink);
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 750;
    letter-spacing: -.04em;
    line-height: 1.1;
}

.search-dialog__form > div {
    display: flex;
}

.search-dialog__form input {
    min-width: 0;
    flex: 1;
    height: 58px;
    padding: 0 20px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 999px 0 0 999px;
}

.search-dialog__form button {
    min-width: 110px;
    color: var(--white);
    background: var(--primary);
    border: 0;
    border-radius: 0 999px 999px 0;
    font-weight: 800;
}

.search-dialog__hint,
.search-dialog__status {
    margin: 11px 0 0;
    color: var(--text-soft);
    font-size: .7rem;
}

.search-dialog__status {
    color: var(--success);
    font-weight: 700;
}

@media (max-width: 1180px) {
    .desktop-nav > a,
    .desktop-nav__trigger {
        padding-inline: 9px;
        font-size: .79rem;
    }

    .header-action__label,
    .header-action--language .chevron {
        display: none;
    }

    .header-contact {
        display: none;
    }

    .mega-menu__grid {
        gap: 28px;
    }

    .hero-visual__card--top {
        right: -2%;
    }

    .footer-main {
        grid-template-columns: 1.35fr repeat(3, .8fr);
    }

    .footer-contact {
        grid-column: 2 / -1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
        padding-top: 28px;
        border-top: 1px solid rgb(255 255 255 / 10%);
        gap: 25px;
    }

    .footer-contact h2 {
        grid-column: 1 / -1;
        margin: 0;
    }
}

@media (max-width: 980px) {
    :root {
        --header-height: 72px;
    }

    .container {
        width: min(calc(100% - 36px), var(--container));
    }

    .utility-bar,
    .desktop-nav,
    .header-action--language,
    .header-action__label,
    .header-contact,
    .mega-menu {
        display: none;
    }

    .brand {
        width: 130px;
        height: 58px;
    }

    .header-actions {
        margin-left: auto;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-bottom: 0;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        padding-top: 70px;
        padding-bottom: 58px;
        gap: 18px;
    }

    .hero__content {
        max-width: 760px;
    }

    .hero h1 {
        max-width: 760px;
    }

    .hero-visual {
        min-height: 520px;
    }

    .hero-visual__main {
        width: min(62%, 440px);
    }

    .hero-visual__card--top {
        right: 10%;
    }

    .hero-visual__card--bottom {
        left: 9%;
    }

    .hero-visual__label {
        right: 7%;
    }

    .hero-stats {
        position: relative;
        grid-template-columns: repeat(4, 1fr);
        min-height: 112px;
        width: 100%;
        border-radius: 0;
    }

    .hero-stats__note {
        grid-column: 1 / -1;
        max-width: none;
        margin: 8px 0 0;
        text-align: center;
    }

    .section {
        padding: 86px 0;
    }

    .section-heading--split {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .solution-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 320px repeat(2, 210px);
    }

    .solution-card--large {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .solution-card--export {
        grid-column: 1 / 3;
    }

    .professional__grid,
    .private-label__grid,
    .quality__grid {
        grid-template-columns: 1fr;
    }

    .professional__visual {
        width: min(100%, 590px);
        margin-inline: auto;
    }

    .professional__content,
    .private-label__copy {
        max-width: 760px;
    }

    .brand-section__grid {
        grid-template-columns: 1fr;
    }

    .brand-section__copy {
        max-width: 760px;
    }

    .brand-family-card {
        max-width: 800px;
        transform: none;
    }

    .private-label__visual {
        width: min(100%, 650px);
        margin-inline: auto;
    }

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

    .value-card:nth-child(2) {
        border-right: 0;
    }

    .value-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }

    .global-section__map {
        right: -15%;
        opacity: .6;
    }

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

    .story-card--feature {
        grid-column: 1 / -1;
    }

    .quality__grid {
        gap: 45px;
    }

    .catalog__card {
        padding: 55px;
    }

    .catalog__visual {
        right: -14%;
        width: 60%;
        opacity: .78;
    }

    .catalog__copy {
        max-width: 60%;
    }

    .contact-cta__inner,
    .career-strip__inner,
    .newsletter {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .footer-main {
        grid-template-columns: 1.2fr repeat(3, 1fr);
    }
}

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

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .prototype-notice__inner {
        min-height: 42px;
        padding-right: 38px;
    }

    .prototype-notice p {
        font-size: .62rem;
        line-height: 1.35;
    }

    .prototype-notice p span {
        display: none;
    }

    .brand {
        width: 115px;
        height: 52px;
    }

    .header-action--search {
        display: none;
    }

    .hero__grid {
        padding-top: 54px;
    }

    .hero h1 {
        font-size: clamp(2.9rem, 14vw, 4.5rem);
    }

    .hero__lead {
        font-size: .96rem;
    }

    .hero__actions {
        display: grid;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 400px;
    }

    .hero-visual__halo {
        width: 350px;
        height: 350px;
    }

    .hero-visual__main {
        width: min(76%, 330px);
    }

    .hero-visual__card {
        width: 100px;
        padding: 5px;
    }

    .hero-visual__card--top {
        top: 12px;
        right: 1%;
    }

    .hero-visual__card--bottom {
        bottom: 18px;
        left: 1%;
    }

    .hero-visual__label {
        right: 0;
        bottom: 46px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 22px 18px;
    }

    .hero-stat {
        padding: 11px 14px;
        border-bottom: 1px solid var(--border);
    }

    .hero-stat:nth-child(2) {
        border-right: 0;
    }

    .hero-stat:nth-child(3) {
        padding-left: 14px;
        border-bottom: 0;
    }

    .hero-stat:nth-child(4) {
        border-right: 0;
        border-bottom: 0;
    }

    .hero-stats__note {
        padding-top: 10px;
        border-top: 1px solid var(--border);
    }

    .section {
        padding: 68px 0;
    }

    h2 {
        font-size: clamp(2.05rem, 11vw, 3.2rem);
    }

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

    .section-heading--with-action {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .solution-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .solution-card,
    .solution-card--large,
    .solution-card--export {
        grid-column: auto;
        grid-row: auto;
        min-height: 245px;
    }

    .solution-card--large {
        min-height: 335px;
    }

    .category-scroller {
        grid-template-columns: repeat(6, 220px);
        margin-right: -14px;
        margin-left: -14px;
        padding-right: 14px;
        padding-left: 14px;
        scroll-padding-inline: 14px;
        scroll-snap-type: x proximity;
    }

    .category-card {
        min-width: 220px;
        scroll-snap-align: start;
    }

    .category-card > a {
        min-height: 360px;
    }

    .professional__grid {
        gap: 50px;
    }

    .professional__visual {
        min-height: 420px;
    }

    .professional__badge {
        right: 0;
        width: 92px;
        height: 92px;
    }

    .brand-section__grid {
        gap: 42px;
    }

    .brand-family-card {
        padding: 25px;
    }

    .private-label__grid {
        gap: 48px;
    }

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

    .process-list li:nth-child(odd) {
        margin-right: 0;
    }

    .private-label__visual {
        min-height: 440px;
    }

    .package {
        width: 150px;
        height: 235px;
    }

    .package--one {
        top: 80px;
        left: 13%;
    }

    .package--two {
        right: 12%;
        bottom: 55px;
    }

    .package strong {
        font-size: 1.05rem;
    }

    .private-label__stamp {
        top: 30px;
        right: 18px;
        width: 92px;
        height: 92px;
    }

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

    .value-card,
    .value-card:nth-child(2),
    .value-card:nth-child(-n+2) {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .value-card:last-child {
        border-bottom: 0;
    }

    .value-card__icon {
        margin-bottom: 24px;
    }

    .global-section {
        min-height: 590px;
    }

    .global-section__inner {
        width: auto;
        margin-left: 14px;
    }

    .global-section__map {
        top: auto;
        right: -15%;
        bottom: -50px;
        width: 110vw;
        height: 260px;
        transform: rotate(-5deg);
    }

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

    .story-card--feature {
        grid-column: auto;
    }

    .quality__cards article {
        padding: 21px;
    }

    .catalog {
        padding-top: 10px;
    }

    .catalog__card {
        display: block;
        min-height: 670px;
        padding: 42px 28px;
        border-radius: 26px;
    }

    .catalog__copy {
        max-width: none;
    }

    .catalog__visual {
        top: auto;
        right: -16%;
        bottom: -24%;
        width: 130%;
        height: 70%;
        opacity: 1;
    }

    .contact-cta {
        padding: 70px 0;
    }

    .career-strip {
        padding: 68px 0;
    }

    .career-strip__inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-cta__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .newsletter__copy {
        align-items: flex-start;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: 1 / -1;
        display: block;
    }

    .footer-contact h2 {
        margin-bottom: 18px;
    }

    .footer-bottom__inner {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 24px;
        padding-bottom: 24px;
        gap: 15px;
    }

    .footer-bottom nav {
        flex-wrap: wrap;
        gap: 8px 16px;
    }

    .search-dialog__form {
        padding: 32px 22px;
    }

    .search-dialog__form > div {
        display: grid;
    }

    .search-dialog__form input,
    .search-dialog__form button {
        width: 100%;
        border-radius: 999px;
    }

    .search-dialog__form button {
        min-height: 52px;
        margin-top: 8px;
    }
}

@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;
    }
}
