:root {
    --green: #1b4d3e;
    --green-deep: #10372c;
    --gold: #c5a059;
    --cream: #f7f5f0;
    --ink: #121212;
    --slate: #2c3531;
    --body: #1a1a1a;
    --muted: #8c8578;
    --serif: "DM Serif Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
    --container: 1240px;
    --gutter: clamp(20px, 4vw, 56px);
    --section: clamp(76px, 10vw, 150px)
}

.page-hero {
    padding: 190px 0 95px;
    background: var(--green-deep) center/cover;
    color: #fff
}

.page-hero h1 {
    font: 400 clamp(54px, 7vw, 92px)/.98 var(--serif);
    margin: 0;
    letter-spacing: -.04em
}

.page-hero p:not(.eyebrow) {
    max-width: 560px;
    color: rgb(255 255 255/.75);
    margin: 20px 0 0
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--body);
    font: 400 16px/1.65 var(--sans)
}

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

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

.container {
    width: min(var(--container), calc(100% - (var(--gutter) * 2)));
    margin-inline: auto
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden
}

.site-header {
    position: absolute;
    z-index: 10;
    inset-inline: 0;
    top: 0;
    color: #fff;
    border-bottom: 1px solid rgb(255 255 255/.18);
    transition: .35s ease
}

.site-header.is-sticky {
    position: fixed;
    background: rgb(16 55 44/.96);
    box-shadow: 0 8px 30px rgb(0 0 0/.12);
    backdrop-filter: blur(10px)
}

.header-inner {
    height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: max-content
}

.brand-mark {
    width: 34px;
    height: 40px;
    display: flex;
    align-items: flex-end;
    gap: 4px
}

.brand-mark i {
    width: 7px;
    background: var(--gold);
    transform: skew(-11deg)
}

.brand-mark i:nth-child(1) {
    height: 19px
}

.brand-mark i:nth-child(2) {
    height: 31px
}

.brand-mark i:nth-child(3) {
    height: 39px
}

.brand-name {
    line-height: .8;
    letter-spacing: .05em;
    display: grid
}

.brand-name strong {
    font-size: 18px
}

.brand-name em {
    font-size: 9px;
    font-style: normal;
    letter-spacing: .31em;
    margin-block-start: 7px
}

.site-nav__list {
    display: flex;
    gap: clamp(20px, 2.6vw, 43px);
    list-style: none;
    padding: 0;
    margin: 0
}

.site-nav a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em
}

.site-nav__list a {
    padding-block: 10px;
    position: relative
}

.site-nav__list a:after {
    content: "";
    position: absolute;
    height: 1px;
    inset-inline: 0;
    bottom: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: .25s
}

.site-nav__list a:hover:after,
.site-nav .current-menu-item a:after {
    transform: scaleX(1)
}

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

.language-switch {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em
}

.language-switch span {
    color: var(--gold)
}

.language-switch b {
    color: rgb(255 255 255/.4);
    font-weight: 400;
    margin-inline: 3px
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px 22px;
    min-height: 51px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .045em;
    text-transform: uppercase;
    transition: transform .25s, background .25s, color .25s
}

.button span,
.text-link span {
    font-size: 18px;
    line-height: 0;
    transition: transform .25s
}

.button:hover span,
.text-link:hover span {
    transform: translate(3px, -3px)
}

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

.button--gold {
    background: var(--gold);
    color: var(--ink)
}

.button--gold:hover {
    background: #d4b26d
}

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    color: inherit;
    padding: 5px;
    cursor: pointer
}

.menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    margin: 5px
}

.mobile-quote {
    display: none
}

.hero {
    min-height: 800px;
    height: max(100vh, 800px);
    position: relative;
    color: #fff;
    display: flex;
    align-items: flex-end;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center
}

.hero__wash {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(7 20 16/.88) 0%, rgb(10 26 21/.62) 44%, rgb(10 20 16/.15) 80%), linear-gradient(0deg, rgb(3 13 10/.4), transparent 45%)
}

.hero__content {
    position: relative;
    padding-block: 180px 120px;
    max-width: var(--container);
    width: 100%
}

.eyebrow {
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin: 0 0 21px
}

.eyebrow--light {
    color: #fff
}

.eyebrow--gold {
    color: var(--gold)
}

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

.hero h1 {
    font: 400 clamp(56px, 7vw, 102px)/.96 var(--serif);
    letter-spacing: -.04em;
    max-width: 780px;
    margin-bottom: 28px
}

.hero__copy {
    font-size: 17px;
    line-height: 1.75;
    max-width: 605px;
    color: rgb(255 255 255/.84);
    margin-bottom: 39px
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap
}

.text-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-block: 10px;
    border-bottom: 1px solid var(--gold)
}

.text-link--light {
    color: #fff
}

.hero__note {
    position: absolute;
    inset-inline-end: var(--gutter);
    bottom: 55px;
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    writing-mode: vertical-rl
}

.hero__line {
    height: 55px;
    width: 1px;
    background: var(--gold)
}

.scroll-cue {
    position: absolute;
    inset-inline-start: var(--gutter);
    bottom: 52px;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px
}

.scroll-cue span {
    height: 32px;
    width: 1px;
    background: #fff
}

.section {
    padding-block: var(--section)
}

h2 {
    font: 400 clamp(42px, 5vw, 72px)/1 var(--serif);
    letter-spacing: -.035em;
    margin-bottom: 28px
}

h2 em {
    color: var(--gold);
    font-style: italic
}

.intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(340px, .87fr);
    gap: clamp(54px, 9vw, 145px);
    align-items: center
}

.intro__media {
    position: relative;
    padding-inline-end: 37px;
    padding-block-start: 44px
}

.intro__media:before {
    content: "";
    position: absolute;
    inset: 0 70px 72px 0;
    background: var(--green)
}

.intro__media img {
    width: 100%;
    height: 610px;
    object-fit: cover;
    position: relative
}

.media-stamp {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 145px;
    height: 145px;
    background: var(--gold);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.media-stamp span {
    font: 46px var(--serif)
}

.media-stamp small {
    text-transform: uppercase;
    font-size: 9px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: .1em
}

.intro__content>p {
    max-width: 510px;
    color: #5f5d57;
    margin-bottom: 34px
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    border-top: 1px solid #d9d5cd
}

.benefit-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding: 18px 0;
    border-bottom: 1px solid #d9d5cd
}

.benefit-list>li>span {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700
}

.benefit-list h3 {
    font: 600 14px/1.35 var(--sans);
    margin-bottom: 4px
}

.benefit-list p {
    font-size: 13px;
    line-height: 1.5;
    color: #706d66;
    margin: 0
}

.products {
    background: #ece9e1
}

.section-heading--split {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 56px;
    gap: 30px
}

.section-heading--split>p {
    max-width: 365px;
    color: #65625b;
    margin: 0
}

.product-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.product-card {
    height: 600px;
    position: relative;
    overflow: hidden;
    color: #fff
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s
}

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

.product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(8 19 15/.83), transparent 60%)
}

.product-card__content {
    position: absolute;
    inset-inline: 44px;
    bottom: 39px
}

.product-card__content p {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 8px
}

.product-card h3 {
    font: 400 44px/1 var(--serif);
    margin-bottom: 15px
}

.product-card__content span {
    font-size: 13px;
    line-height: 1.5;
    max-width: 350px;
    display: block;
    color: rgb(255 255 255/.83)
}

.product-card__content a {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .09em;
    font-size: 10px;
    color: #fff;
    margin-top: 18px
}

.product-card__content b {
    font-size: 19px;
    color: var(--gold);
    margin-inline-start: 7px
}

.why {
    background: var(--green-deep);
    color: #fff;
    position: relative;
    overflow: hidden
}

.why__pattern {
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgb(197 160 89/.25);
    border-radius: 50%;
    right: -215px;
    top: -190px
}

.why__pattern:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgb(197 160 89/.16);
    border-radius: 50%;
    inset: 68px
}

.section-heading--light {
    margin-bottom: 65px
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgb(255 255 255/.2)
}

.feature {
    padding: 29px 28px 14px;
    border-inline-end: 1px solid rgb(255 255 255/.2);
    min-height: 252px
}

.feature:last-child {
    border: 0
}

.feature>span {
    font-size: 10px;
    color: var(--gold);
    font-weight: 700
}

.feature svg {
    display: block;
    width: 40px;
    height: 40px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.35;
    margin: 22px 0
}

.feature h3 {
    font-size: 17px;
    margin-bottom: 9px
}

.feature p {
    font-size: 13px;
    color: rgb(255 255 255/.67);
    line-height: 1.6
}

.process__grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: clamp(55px, 12vw, 180px)
}

.process__heading>p:not(.eyebrow) {
    color: #68655e;
    max-width: 360px
}

.process__heading img {
    width: 250px;
    height: 153px;
    object-fit: cover;
    margin-top: 45px
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 0
}

.process-list li {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    padding: 25px 0 30px;
    border-top: 1px solid #d9d5cd
}

.process-list li:last-child {
    border-bottom: 1px solid #d9d5cd
}

.process-list span {
    font: 400 31px/1 var(--serif);
    color: var(--gold)
}

.process-list h3 {
    font-size: 20px;
    margin: 0 0 7px
}

.process-list p {
    font-size: 14px;
    color: #6c6962;
    margin: 0;
    max-width: 420px
}

.showcase {
    padding-block: 20px var(--section);
    background: #ece9e1
}

.showcase__intro {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    align-items: end;
    gap: 30px;
    padding-block: 75px 45px
}

.showcase__intro h2 {
    margin: 0
}

.showcase__intro>p:last-child {
    font-size: 14px;
    color: #65625b;
    margin: 0
}

.gallery {
    display: grid;
    grid-template-columns: .8fr .7fr 1.25fr;
    grid-template-rows: 215px 215px;
    gap: 18px
}

.gallery figure {
    position: relative;
    margin: 0;
    overflow: hidden
}

.gallery__tall {
    grid-row: span 2
}

.gallery__wide {
    grid-row: span 2
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.gallery figure:hover img {
    transform: scale(1.06)
}

.gallery figcaption {
    position: absolute;
    inset-inline-start: 19px;
    bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
    opacity: 0;
    transform: translateY(7px);
    transition: .3s
}

.gallery figure:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(0 0 0/.5), transparent 50%);
    opacity: 0;
    transition: .3s
}

.gallery figure:hover:after,
.gallery figure:hover figcaption {
    opacity: 1
}

.gallery figcaption {
    z-index: 1
}

.partnership {
    position: relative;
    background: var(--ink);
    color: #fff;
    min-height: 590px;
    display: flex;
    align-items: center;
    overflow: hidden
}

.partnership__image {
    position: absolute;
    inset: 0 0 0 49%;
    background: linear-gradient(90deg, var(--ink) 0%, transparent 25%), url('https://images.unsplash.com/photo-1610832958506-aa56368176cf?auto=format&fit=crop&w=1200&q=85') center/cover
}

.partnership__inner {
    position: relative;
    padding-block: 100px;
    max-width: var(--container);
    width: 100%
}

.partnership h2 {
    max-width: 610px
}

.partnership h2 em {
    color: var(--gold)
}

.partnership__inner>p:not(.eyebrow) {
    max-width: 490px;
    color: rgb(255 255 255/.68);
    margin-bottom: 35px
}

.partnership-note {
    padding-block: 85px;
    background: var(--cream)
}

.partnership-note>.container {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 55px
}

.partnership-note h2 {
    margin: 0
}

.partnership-note div div {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px
}

.partnership-note p:last-child {
    max-width: 310px;
    color: #65625b;
    margin: 0;
    font-size: 14px
}

.final-cta {
    background: var(--green);
    color: #fff;
    text-align: center;
    padding-block: 110px
}

.final-cta h2 {
    margin-bottom: 36px
}

.final-cta h2 em {
    color: var(--gold)
}

.site-footer {
    background: #0e2820;
    color: #fff;
    padding-top: 72px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .65fr .85fr;
    gap: 50px;
    padding-bottom: 58px
}

.brand--footer {
    margin-bottom: 19px
}

.footer-brand>p {
    max-width: 290px;
    font-size: 13px;
    color: rgb(255 255 255/.63);
    margin: 0
}

.footer-label {
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .13em;
    font-size: 10px;
    margin-bottom: 16px
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0
}

.footer-links li {
    font-size: 13px;
    color: rgb(255 255 255/.7);
    margin-bottom: 9px
}

.footer-links a:hover {
    color: var(--gold)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-block: 19px;
    border-top: 1px solid rgb(255 255 255/.14);
    font-size: 10px;
    color: rgb(255 255 255/.5)
}

.footer-bottom div {
    display: flex;
    gap: 25px
}

.page-shell {
    padding: 180px 0 100px;
    min-height: 60vh
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s ease
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

@media(max-width:900px) {
    .header-inner {
        height: 76px
    }

    .header-cta {
        display: none
    }

    .menu-toggle {
        display: block
    }

    .site-nav {
        position: fixed;
        inset: 76px 0 auto;
        background: var(--green-deep);
        padding: 26px var(--gutter) 32px;
        transform: translateY(-130%);
        opacity: 0;
        visibility: hidden;
        transition: .3s
    }

    .site-nav.is-open {
        transform: none;
        opacity: 1;
        visibility: visible
    }

    .site-nav__list {
        display: block
    }

    .site-nav__list li {
        border-bottom: 1px solid rgb(255 255 255/.13)
    }

    .site-nav__list a {
        display: block;
        padding-block: 15px;
        font-size: 16px
    }

    .site-nav__list a:after {
        display: none
    }

    .mobile-quote {
        display: inline-flex !important;
        margin-top: 26px;
        color: var(--gold)
    }

    .hero {
        min-height: 700px;
        height: 100vh
    }

    .hero__note {
        display: none
    }

    .hero__content {
        padding-block: 155px 90px
    }

    .intro__grid,
    .process__grid {
        grid-template-columns: 1fr;
        gap: 55px
    }

    .intro__media {
        max-width: 610px
    }

    .process__heading {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 30px
    }

    .process__heading .eyebrow,
    .process__heading h2 {
        grid-column: 1
    }

    .process__heading>p:not(.eyebrow) {
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: end
    }

    .process__heading img {
        grid-column: 1/3;
        width: 100%;
        height: 220px
    }

    .features {
        grid-template-columns: 1fr 1fr
    }

    .feature:nth-child(2) {
        border: 0
    }

    .feature:nth-child(-n+2) {
        border-bottom: 1px solid rgb(255 255 255/.2)
    }

    .showcase__intro {
        grid-template-columns: 1fr 1fr
    }

    .showcase__intro>p:last-child {
        grid-column: 2
    }

    .partnership__image {
        inset-inline-start: 35%;
        opacity: .4
    }

    .partnership-note>.container {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr
    }
}

@media(max-width:600px) {
    .language-switch {
        display: none
    }

    .header-inner {
        gap: 15px
    }

    .hero {
        min-height: 680px
    }

    .hero__content {
        padding-left: 40px;
        padding-block: 150px 70px
    }

    .hero h1 {
        font-size: 54px
    }

    .hero__copy {
        font-size: 15px
    }

    .scroll-cue {
        padding-left: 20px;
        bottom: 25px
    }

    .section-heading--split,
    .partnership-note div div {
        display: block
    }

    .section-heading--split>p {
        margin-top: 20px
    }

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

    .product-card {
        height: 490px
    }

    .product-card__content {
        inset-inline: 25px;
        bottom: 28px
    }

    .product-card h3 {
        font-size: 38px
    }

    .intro__media {
        padding-inline-end: 23px;
        padding-block-start: 25px
    }

    .intro__media img {
        height: 460px
    }

    .media-stamp {
        width: 105px;
        height: 105px
    }

    .media-stamp span {
        font-size: 35px
    }

    .process__heading {
        display: block
    }

    .process__heading>p:not(.eyebrow) {
        margin-bottom: 25px
    }

    .process__heading img {
        width: 100%;
        height: 190px;
        margin-top: 20px
    }

    .process-list li {
        grid-template-columns: 56px 1fr;
        gap: 15px
    }

    .showcase__intro {
        display: block;
        padding-block: 60px 35px
    }

    .showcase__intro>p:last-child {
        margin-top: 20px
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 185px 185px
    }

    .gallery__wide {
        grid-column: span 2;
        grid-row: auto
    }

    .gallery__tall {
        grid-row: span 2
    }

    .gallery figure:not(.gallery__tall):not(.gallery__wide) {
        display: none
    }

    .partnership {
        min-height: 540px
    }

    .partnership__inner {
        padding-left: 30px;
        padding-block: 80px
    }

    .partnership__image {
        inset-inline-start: 0;
        opacity: .2
    }

    .partnership h2 {
        font-size: 48px
    }

    .partnership-note {
        padding-block: 65px
    }

    .partnership-note p:last-child {
        margin-top: 20px
    }

    .final-cta {
        padding-block: 80px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 25px
    }

    .footer-brand {
        grid-column: span 2
    }

    .footer-bottom {
        display: block;
        line-height: 1.7
    }

    .footer-bottom div {
        margin-top: 7px
    }

    .features {
        grid-template-columns: 1fr
    }

    .feature,
    .feature:nth-child(2) {
        border-inline-end: 0;
        border-bottom: 1px solid rgb(255 255 255/.2)
    }

    .feature:last-child {
        border-bottom: 0
    }

    .feature {
        min-height: auto;
        padding: 28px 0
    }

    .section-heading--light {
        margin-bottom: 35px
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

/* Phase 6 responsive rhythm: shared gutters, section spacing and resilient media. */
:root { --responsive-gutter:40px; --responsive-section:96px; --responsive-gap:32px; }
.container { padding-inline:var(--responsive-gutter); }
img { max-inline-size:100%; block-size:auto; }
.catalog-card__media, .single-product__media { overflow:hidden; }
.catalog-card__media { aspect-ratio:4 / 3; }
.catalog-card__media img { inline-size:100%; block-size:100%; object-fit:cover; object-position:center; }
.single-product__media img { inline-size:100%; max-block-size:620px; object-fit:cover; object-position:center; }
@media (max-width:1024px) { :root { --responsive-gutter:32px; --responsive-section:72px; --responsive-gap:24px; } .section { padding-block:var(--responsive-section); } }
@media (max-width:600px) { :root { --responsive-gutter:20px; --responsive-section:56px; --responsive-gap:20px; } .section { padding-block:var(--responsive-section); } .site-header { padding-inline:var(--responsive-gutter); } .catalog-grid, .contact-info-grid, .rfq-form__grid { gap:var(--responsive-gap); } .catalog-card__body { padding:20px; } .single-product__media { aspect-ratio:4 / 3; } .single-product__media img { inline-size:100%; block-size:100%; max-block-size:none; object-fit:cover; } .footer-grid { gap:32px; } .footer-links--contact li { overflow-wrap:anywhere; } .contact-info-grid article { min-block-size:auto; } }

/* Phase 1 design-system refinements */
:root {
    --sans: "Manrope", Arial, sans-serif;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-6: 48px;
    --space-8: 64px;
    --space-10: 80px;
    --space-12: 96px;
    --space-15: 120px;
    --container: 1280px
}

.site-header {
    background: var(--cream);
    color: var(--green);
    border-color: rgb(27 77 62/.13)
}

.site-header.is-sticky {
    background: rgb(247 245 240/.94);
    color: var(--green);
    box-shadow: 0 8px 28px rgb(18 18 18/.08)
}

.header-actions .button--gold {
    background: var(--green);
    color: var(--cream)
}

.header-actions .button--gold:hover {
    background: var(--green-deep);
    box-shadow: inset 3px 0 var(--gold)
}

.brand-mark i {
    background: var(--gold)
}

.hero {
    padding-top: 80px
}

.hero .button--gold,
.partnership .button--gold,
.final-cta .button--gold {
    background: var(--cream);
    color: var(--green)
}

.hero .button--gold:hover,
.partnership .button--gold:hover,
.final-cta .button--gold:hover {
    background: var(--gold);
    color: var(--ink)
}

.value-strip {
    background: var(--cream);
    border-bottom: 1px solid #ddd8cf
}

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

.value-strip__grid>div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-block: 25px;
    border-inline-end: 1px solid #ddd8cf
}

.value-strip__grid>div:not(:first-child) {
    padding-inline-start: 26px
}

.value-strip__grid>div:last-child {
    border: 0
}

.value-strip span {
    color: var(--gold);
    font: 400 18px/1 var(--serif)
}

.value-strip p {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .075em;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
    color: var(--green)
}

.intro__content>p {
    font-size: 15px;
    line-height: 1.8
}

.feature svg {
    display: none
}

.feature h3 {
    margin-top: 56px;
    position: relative
}

.feature h3:before {
    content: "";
    position: absolute;
    top: -25px;
    inset-inline-start: 0;
    width: 32px;
    height: 1px;
    background: var(--gold)
}

.process-intro {
    text-align: center;
    max-width: 620px;
    margin-inline: auto;
    margin-bottom: 60px
}

.process-intro>p:last-child {
    color: #68655e;
    font-size: 15px
}

.process-list--timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid #d9d5cd;
    margin: 0;
    padding: 0;
    position: relative
}

.process-list--timeline:before {
    content: "";
    position: absolute;
    top: -1px;
    inset-inline-start: 0;
    width: 72%;
    height: 1px;
    background: var(--gold)
}

.process-list--timeline li {
    display: block;
    border: 0;
    padding: 29px 28px 12px 0;
    position: relative
}

.process-list--timeline li:not(:first-child) {
    padding-inline-start: 28px;
    border-inline-start: 1px solid #d9d5cd
}

.process-list--timeline li:before {
    content: "";
    position: absolute;
    top: -5px;
    inset-inline-start: -5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold)
}

.process-list--timeline li:first-child:before {
    inset-inline-start: 0
}

.process-list--timeline h3 {
    font-size: 16px;
    margin-top: 28px
}

.process-list--timeline p {
    font-size: 13px
}

.final-cta {
    background: var(--cream);
    color: var(--green)
}

.final-cta h2 em {
    color: var(--gold)
}

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

@media(max-width:900px) {
    .value-strip__grid {
        grid-template-columns: 1fr 1fr
    }

    .value-strip__grid>div:nth-child(2) {
        border-inline-end: 0
    }

    .value-strip__grid>div:nth-child(-n+2) {
        border-bottom: 1px solid #ddd8cf
    }

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

    .process-list--timeline li:nth-child(3) {
        border-inline-start: 0
    }

    .process-list--timeline li:nth-child(-n+2) {
        border-bottom: 1px solid #d9d5cd
    }

    .process-list--timeline:before {
        width: 48%
    }
}

@media(max-width:600px) {
    .site-header {
        background: var(--cream)
    }

    .site-nav {
        background: var(--green-deep);
        color: #fff
    }

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

    .value-strip__grid>div,
    .value-strip__grid>div:nth-child(2) {
        border-inline-end: 0;
        border-bottom: 1px solid #ddd8cf;
        padding: 18px 0
    }

    .value-strip__grid>div:last-child {
        border-bottom: 0
    }

    .process-intro {
        text-align: start;
        margin-bottom: 36px
    }

    .process-list--timeline {
        grid-template-columns: 1fr;
        border-top: 0;
        padding-inline-start: 31px
    }

    .process-list--timeline:before {
        width: 1px;
        height: 100%;
        top: 0;
        inset-inline-start: 4px
    }

    .process-list--timeline li,
    .process-list--timeline li:not(:first-child) {
        border: 0 !important;
        padding: 0 0 27px 0
    }

    .process-list--timeline li:before,
    .process-list--timeline li:first-child:before {
        top: 6px;
        inset-inline-start: -31px
    }

    .process-list--timeline h3 {
        margin-top: 0
    }

    .process-list--timeline span {
        font-size: 25px
    }

    .process-list--timeline p {
        max-width: 360px
    }
}

/* About page — Phase 2 */
.about-hero {
    min-height: 640px;
    padding-top: 80px;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden
}

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

.about-hero__media {
    background: url('https://images.unsplash.com/photo-1464965911861-746a04b4bca6?auto=format&fit=crop&w=2200&q=88') center/cover
}

.about-hero__overlay {
    background: linear-gradient(90deg, rgb(10 31 25/.92), rgb(12 20 17/.7) 48%, rgb(12 18 15/.26))
}

.about-hero__content {
    position: relative;
    padding-block: 110px 78px
}

.about-hero h1 {
    font: 400 clamp(54px, 6.4vw, 88px)/.97 var(--serif);
    letter-spacing: -.045em;
    margin: 0 0 25px
}

.about-hero__content>p:not(.eyebrow) {
    font-size: 16px;
    max-width: 620px;
    line-height: 1.75;
    color: rgb(255 255 255/.84);
    margin-bottom: 34px
}

.about-intro__grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: clamp(56px, 10vw, 155px);
    align-items: center
}

.about-intro__media {
    height: 610px;
    position: relative;
    padding-block-start: 37px;
    padding-inline-end: 37px
}

.about-intro__media:before {
    content: "";
    position: absolute;
    inset: 0 54px 55px 0;
    background: var(--green)
}

.about-intro__media img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-intro__rule {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 156px;
    height: 156px;
    background: var(--gold)
}

.about-intro__rule:after {
    content: "";
    display: block;
    width: 1px;
    height: 86px;
    background: var(--green);
    margin: 35px auto
}

.about-intro__copy>p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.82;
    color: #57564f;
    margin-bottom: 17px
}

.about-what {
    background: #ece9e1
}

.about-section-head {
    max-width: 715px;
    margin-bottom: 54px
}

.about-section-head--light {
    color: #fff
}

.about-what__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 22px;
    align-items: start
}

.about-image-card {
    position: relative;
    height: 440px;
    overflow: hidden;
    color: #fff
}

.about-image-card--offset {
    margin-top: 60px
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s
}

.about-image-card:hover img {
    transform: scale(1.055)
}

.about-image-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(7 15 12/.86), transparent 63%)
}

.about-image-card>div {
    position: absolute;
    z-index: 1;
    inset-inline: 26px;
    bottom: 25px
}

.about-image-card span {
    font: 400 20px var(--serif);
    color: var(--gold)
}

.about-image-card h3 {
    font: 400 32px/1 var(--serif);
    margin: 12px 0
}

.about-image-card p {
    font-size: 12px;
    line-height: 1.55;
    color: rgb(255 255 255/.78);
    margin: 0;
    max-width: 250px
}

.about-approach {
    background: var(--green-deep);
    color: #fff
}

.about-principles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgb(255 255 255/.19)
}

.about-principles article {
    min-height: 240px;
    padding: 26px 25px;
    border-inline-end: 1px solid rgb(255 255 255/.19)
}

.about-principles article:last-child {
    border: 0
}

.about-principles span,
.about-partner__items span {
    color: var(--gold);
    font: 400 22px var(--serif)
}

.about-principles h3 {
    font-size: 18px;
    margin: 54px 0 10px;
    position: relative
}

.about-principles h3:before {
    content: "";
    position: absolute;
    top: -25px;
    inset-inline-start: 0;
    width: 30px;
    height: 1px;
    background: var(--gold)
}

.about-principles p {
    font-size: 13px;
    line-height: 1.65;
    color: rgb(255 255 255/.66);
    margin: 0
}

.quality__grid {
    display: grid;
    grid-template-columns: 1fr .96fr;
    gap: clamp(55px, 9vw, 140px);
    align-items: center
}

.quality__media {
    height: 590px;
    position: relative
}

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

.quality__media span {
    position: absolute;
    bottom: 0;
    inset-inline-end: 0;
    background: var(--gold);
    padding: 24px 27px;
    color: var(--green);
    font: 28px/1.1 var(--serif)
}

.quality__copy>p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.8;
    color: #5e5a54;
    margin-bottom: 28px
}

.quality__copy ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #d9d5cd
}

.quality__copy li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 13px;
    padding-block: 16px;
    border-bottom: 1px solid #d9d5cd
}

.quality__copy li>span {
    font: 400 17px var(--serif);
    color: var(--gold)
}

.quality__copy h3 {
    font-size: 14px;
    margin: 0 0 3px
}

.quality__copy li p {
    font-size: 12px;
    color: #706c65;
    margin: 0;
    line-height: 1.5
}

.about-process {
    background: #ece9e1
}

.about-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    max-width: 960px;
    margin-inline: auto
}

.about-timeline:before {
    content: "";
    position: absolute;
    inset-inline-start: 50%;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: var(--gold)
}

.about-timeline li {
    width: 50%;
    position: relative;
    padding: 0 70px 68px 0;
    text-align: end
}

.about-timeline li:nth-child(even) {
    margin-inline-start: 50%;
    padding: 0 0 68px 70px;
    text-align: start
}

.about-timeline li:before {
    content: "";
    position: absolute;
    top: 6px;
    inset-inline-end: -5px;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%
}

.about-timeline li:nth-child(even):before {
    inset-inline-start: -5px
}

.about-timeline span {
    font: 400 27px var(--serif);
    color: var(--gold)
}

.about-timeline h3 {
    font-size: 19px;
    margin: 7px 0
}

.about-timeline p {
    font-size: 13px;
    line-height: 1.65;
    color: #6b6861;
    margin: 0
}

.about-partner {
    background: var(--ink);
    color: #fff
}

.about-partner__grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(60px, 10vw, 150px);
    align-items: center
}

.about-partner__items {
    border-top: 1px solid rgb(255 255 255/.2)
}

.about-partner__items article {
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 88px;
    border-bottom: 1px solid rgb(255 255 255/.2)
}

.about-partner__items h3 {
    margin: 0;
    font: 400 24px var(--serif)
}

.about-final {
    text-align: center;
    padding: 105px 0;
    background: var(--cream);
    color: var(--green)
}

.about-final>.container {
    max-width: 800px
}

.about-final h2 {
    margin-bottom: 22px
}

.about-final>div>p:not(.eyebrow) {
    max-width: 570px;
    margin: 0 auto 32px;
    color: #5c5b56
}

.about-final .hero__actions {
    justify-content: center
}

.about-final .button--gold {
    background: var(--green);
    color: var(--cream)
}

.about-final .button--gold:hover {
    background: var(--green-deep)
}

@media(max-width:900px) {
    .about-hero {
        min-height: 570px
    }

    .about-intro__grid,
    .quality__grid,
    .about-partner__grid {
        grid-template-columns: 1fr;
        gap: 55px
    }

    .about-intro__media {
        max-width: 650px
    }

    .about-what__grid {
        grid-template-columns: 1fr 1fr
    }

    .about-image-card--offset {
        margin-top: 0;
        grid-column: span 2;
        height: 370px
    }

    .about-principles {
        grid-template-columns: 1fr 1fr
    }

    .about-principles article:nth-child(2) {
        border-inline-end: 0
    }

    .about-principles article:nth-child(-n+2) {
        border-bottom: 1px solid rgb(255 255 255/.19)
    }

    .quality__media {
        max-width: 650px;
        height: 490px
    }

    .about-partner__grid {
        gap: 40px
    }
}

@media(max-width:600px) {
    .about-hero {
        min-height: 605px
    }

    .about-hero__content {
        padding-block: 105px 55px
    }

    .about-hero h1 {
        font-size: 51px
    }

    .about-hero__content>p:not(.eyebrow) {
        font-size: 14px
    }

    .about-intro__media {
        height: 440px;
        padding-inline-end: 22px;
        padding-block-start: 23px
    }

    .about-intro__media:before {
        inset: 0 42px 38px 0
    }

    .about-intro__rule {
        width: 100px;
        height: 100px
    }

    .about-intro__rule:after {
        height: 54px;
        margin: 23px auto
    }

    .about-what__grid {
        grid-template-columns: 1fr
    }

    .about-image-card,
    .about-image-card--offset {
        height: 390px;
        grid-column: auto
    }

    .about-principles {
        grid-template-columns: 1fr
    }

    .about-principles article,
    .about-principles article:nth-child(2) {
        min-height: auto;
        border-inline-end: 0;
        border-bottom: 1px solid rgb(255 255 255/.19);
        padding: 25px 0
    }

    .about-principles article:last-child {
        border-bottom: 0
    }

    .about-principles h3 {
        margin-top: 44px
    }

    .quality__media {
        height: 395px
    }

    .quality__media span {
        padding: 18px;
        font-size: 23px
    }

    .about-timeline {
        padding-inline-start: 34px
    }

    .about-timeline:before {
        inset-inline-start: 4px
    }

    .about-timeline li,
    .about-timeline li:nth-child(even) {
        width: 100%;
        margin: 0;
        padding: 0 0 35px 0;
        text-align: start
    }

    .about-timeline li:before,
    .about-timeline li:nth-child(even):before {
        inset-inline-start: -34px;
        top: 5px
    }

    .about-timeline h3 {
        margin-top: 4px
    }

    .about-partner__items h3 {
        font-size: 20px
    }

    .about-final {
        padding: 78px 0
    }
}

/* Products — Phase 3 */
.brand--image {
    display: block;
    width: 220px;
    height: 54px
}

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

.brand--footer {
    background: var(--cream);
    padding: 7px 10px;
    width: 250px;
    height: 72px;
    filter: none
}

.products-hero {
    position: relative;
    min-height: 490px;
    padding-top: 80px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden
}

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

.products-hero__media {
    background: url('https://images.unsplash.com/photo-1573246123716-6b1782bfc499?auto=format&fit=crop&w=2200&q=88') center/cover
}

.products-hero__overlay {
    background: linear-gradient(90deg, rgb(11 30 24/.92), rgb(14 24 20/.69) 53%, rgb(12 18 15/.2))
}

.products-hero__content {
    position: relative;
    padding-block: 95px 65px
}

.products-hero h1 {
    font: 400 clamp(52px, 6.4vw, 84px)/.98 var(--serif);
    letter-spacing: -.045em;
    margin: 0 0 24px
}

.products-hero h1 em {
    color: var(--gold);
    font-style: italic
}

.products-hero__content>p:not(.eyebrow) {
    max-width: 555px;
    color: rgb(255 255 255/.81);
    font-size: 16px;
    line-height: 1.75;
    margin: 0
}

.catalog {
    background: var(--cream)
}

.catalog-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    border-bottom: 1px solid #ded9d0;
    padding-bottom: 28px;
    margin-bottom: 70px
}

.catalog-filters button {
    appearance: none;
    border: 1px solid #d6d0c5;
    color: var(--green);
    background: transparent;
    padding: 12px 18px;
    font: 700 11px/1 var(--sans);
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: .25s
}

.catalog-filters button:hover,
.catalog-filters button.is-active {
    border-color: var(--green);
    background: var(--green);
    color: var(--cream)
}

.catalog__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 52px
}

.catalog__head h2 {
    margin: 0
}

.catalog__head>p {
    max-width: 340px;
    color: #67635c;
    font-size: 14px;
    margin: 0
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px 23px
}

.catalog-card {
    min-width: 0
}

.catalog-card.is-hidden {
    display: none
}

.catalog-card__media {
    height: auto;
    aspect-ratio: 1/.91;
    display: block;
    overflow: hidden;
    background: #e3ded3
}

.catalog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.catalog-card:hover .catalog-card__media img {
    transform: scale(1.055)
}

.product-placeholder {
    height: 100%;
    width: 100%;
    display: grid;
    place-content: center;
    text-align: center;
    background: linear-gradient(145deg, #e4ded2, #cfc5b4);
    color: var(--green);
    position: relative;
    overflow: hidden
}

.product-placeholder:before,
.product-placeholder:after {
    content: "";
    position: absolute;
    border: 1px solid rgb(27 77 62/.18);
    border-radius: 50%
}

.product-placeholder:before {
    width: 240px;
    height: 240px;
    inset-inline-end: -85px;
    bottom: -105px
}

.product-placeholder:after {
    width: 150px;
    height: 150px;
    inset-inline-start: -55px;
    top: -65px
}

.product-placeholder span {
    font: 78px/1 var(--serif);
    position: relative;
    z-index: 1;
    color: var(--gold)
}

.product-placeholder small {
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 9px;
    font-weight: 800
}

.catalog-card__body {
    padding-top: 20px
}

.catalog-card__body .eyebrow {
    font-size: 9px;
    margin-bottom: 9px
}

.catalog-card__body h2 {
    font: 400 33px/1 var(--serif);
    margin: 0 0 11px;
    color: var(--green)
}

.catalog-card__body h2 a:hover {
    color: var(--gold)
}

.catalog-card__body>p:not(.eyebrow) {
    color: #6c6861;
    font-size: 13px;
    line-height: 1.65;
    min-height: 43px;
    margin: 0 0 15px
}

.catalog-card__body .text-link {
    font-size: 10px
}

.catalog-editorial {
    padding-block: 100px;
    background: #e9e5dc
}

.catalog-editorial__grid {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: clamp(58px, 11vw, 165px);
    align-items: center
}

.catalog-editorial__image {
    height: 410px;
    position: relative
}

.catalog-editorial__image:after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--gold);
    right: -22px;
    bottom: -22px;
    z-index: 0
}

.catalog-editorial__image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.catalog-editorial h2 {
    margin-bottom: 20px
}

.catalog-editorial p:last-child {
    max-width: 370px;
    color: #65615a
}

.product-sourcing-cta {
    background: var(--green-deep);
    color: #fff;
    position: relative;
    overflow: hidden
}

.product-sourcing-cta:before {
    content: "";
    position: absolute;
    width: 510px;
    height: 510px;
    border: 1px solid rgb(197 160 89/.2);
    border-radius: 50%;
    right: -215px;
    bottom: -295px
}

.product-sourcing-cta__inner {
    position: relative;
    padding-block: 105px
}

.product-sourcing-cta h2 {
    margin-bottom: 20px
}

.product-sourcing-cta h2 em {
    color: var(--gold)
}

.product-sourcing-cta p:not(.eyebrow) {
    max-width: 500px;
    color: rgb(255 255 255/.7);
    margin-bottom: 33px
}

.product-sourcing-cta .button--gold {
    background: var(--gold);
    color: var(--ink)
}

.single-product {
    padding: 145px 0 108px;
    background: var(--cream)
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #77726a;
    font-size: 11px;
    margin-bottom: 42px
}

.breadcrumbs a {
    color: var(--green);
    font-weight: 700
}

.breadcrumbs a:hover {
    color: var(--gold)
}

.breadcrumbs span:last-child {
    color: #8c8578
}

.single-product__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(55px, 9vw, 142px);
    align-items: center
}

.single-product__media {
    aspect-ratio: 1/.93;
    background: #e3ded3
}

.single-product__media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.single-product__content h1 {
    font: 400 clamp(52px, 5vw, 72px)/1 var(--serif);
    letter-spacing: -.04em;
    color: var(--green);
    margin: 0 0 20px
}

.single-product__intro {
    font-size: 17px;
    line-height: 1.75;
    color: #55534e;
    margin-bottom: 19px
}

.single-product__description {
    font-size: 14px;
    line-height: 1.75;
    color: #6a6760;
    max-width: 540px;
    margin-bottom: 30px
}

.single-product .button--gold {
    background: var(--green);
    color: var(--cream)
}

.related-products {
    background: #e9e5dc
}

.related-products__head {
    margin-bottom: 42px
}

.related-products__head h2 {
    margin-bottom: 0
}

@media(max-width:900px) {
    .brand--image {
        width: 188px;
        height: 50px
    }

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

    .catalog-editorial__grid,
    .single-product__grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .catalog-editorial__image {
        max-width: 650px
    }

    .single-product__media {
        max-width: 650px
    }

    .products-hero {
        min-height: 455px
    }

    .catalog__head {
        margin-bottom: 38px
    }
}

@media(max-width:600px) {
    .brand--image {
        width: 151px;
        height: 46px
    }

    .brand--footer {
        width: 205px;
        height: 52px
    }

    .products-hero {
        min-height: 440px
    }

    .products-hero__content {
        padding-block: 90px 50px
    }

    .products-hero h1 {
        font-size: 50px
    }

    .products-hero__content>p:not(.eyebrow) {
        font-size: 14px
    }

    .catalog-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 17px;
        margin-bottom: 42px
    }

    .catalog-filters button {
        flex: 0 0 auto;
        min-height: 43px
    }

    .catalog__head {
        display: block;
        margin-bottom: 34px
    }

    .catalog__head>p {
        margin-top: 18px
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 38px
    }

    .catalog-card__media {
        aspect-ratio: 1/.76
    }

    .catalog-editorial {
        padding-block: 70px
    }

    .catalog-editorial__image {
        height: 280px
    }

    .catalog-editorial__image:after {
        width: 70px;
        height: 70px;
        right: -8px;
        bottom: -8px
    }

    .product-sourcing-cta__inner {
        padding-block: 76px
    }

    .single-product {
        padding-block: 120px 75px
    }

    .breadcrumbs {
        margin-bottom: 28px
    }

    .single-product__grid {
        gap: 34px
    }

    .single-product__media {
        aspect-ratio: 1/.78
    }

    .single-product__content h1 {
        font-size: 51px
    }

    .single-product__intro {
        font-size: 15px
    }

    .product-sourcing-cta .hero__actions,
    .single-product .hero__actions {
        gap: 19px
    }
}

/* Contact and RFQ — Phase 4 */
.contact-hero {
    background: var(--ink);
    color: #fff;
    min-height: 505px;
    padding-top: 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden
}

.contact-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgb(16 55 44/.98), rgb(16 55 44/.78) 48%, rgb(18 18 18/.96))
}

.contact-hero__shape {
    position: absolute;
    width: 620px;
    height: 620px;
    border: 1px solid rgb(197 160 89/.24);
    border-radius: 50%;
    inset-inline-end: -165px;
    top: -230px
}

.contact-hero__shape:before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border: 1px solid rgb(197 160 89/.16);
    border-radius: 50%;
    inset: 94px
}

.contact-hero__content {
    position: relative;
    padding-block: 94px 65px
}

.contact-hero h1 {
    font: 400 clamp(56px, 6vw, 84px)/.97 var(--serif);
    letter-spacing: -.045em;
    margin: 0 0 23px
}

.contact-hero h1 em {
    color: var(--gold);
    font-style: italic
}

.contact-hero__content>p:not(.eyebrow) {
    max-width: 605px;
    color: rgb(255 255 255/.8);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px
}

.contact-hero .button--gold {
    background: var(--gold);
    color: var(--ink)
}

.contact-intro {
    padding-bottom: 95px
}

.contact-intro>.container {
    max-width: 1000px;
    margin-inline: auto
}

.contact-intro h2 {
    max-width: 780px;
    margin-bottom: 24px
}

.contact-intro p:last-child {
    max-width: 670px;
    color: #625f58;
    font-size: 16px;
    line-height: 1.8;
    margin: 0
}

.contact-information {
    background: #e9e5dc;
    padding-block: 85px
}

.contact-information__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 35px;
    margin-bottom: 47px
}

.contact-information__head h2 {
    margin: 0
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #cbc5b9
}

.contact-info-grid article {
    padding: 28px 25px 23px 0;
    border-inline-end: 1px solid #cbc5b9;
    min-height: 185px
}

.contact-info-grid article:not(:first-child) {
    padding-inline-start: 25px
}

.contact-info-grid article:last-child {
    border-inline-end: 0
}

.contact-info-grid svg {
    display: block;
    width: 31px;
    height: 31px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.3;
    margin-bottom: 25px
}

.contact-info-grid .eyebrow {
    font-size: 9px;
    margin-bottom: 7px
}

.contact-info-grid a,
.contact-info-grid span {
    display: block;
    color: var(--green);
    font: 600 13px/1.55 var(--sans);
    overflow-wrap: anywhere
}

.contact-info-grid a:hover {
    color: var(--gold)
}

.rfq {
    background: var(--cream);
    padding-block: var(--section)
}

.rfq__grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: clamp(50px, 9vw, 140px);
    align-items: start
}

.rfq__intro {
    position: sticky;
    top: 120px
}

.rfq__intro h2 {
    margin-bottom: 22px
}

.rfq__intro>p:not(.eyebrow) {
    color: #635f58;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 28px
}

.rfq__whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--green)
}

.rfq__whatsapp span {
    font-size: 17px;
    color: var(--gold)
}

.rfq__panel {
    background: #eeeae1;
    padding: clamp(24px, 4vw, 45px)
}

.rfq-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px 19px
}

.rfq-field {
    min-width: 0
}

.rfq-field--full {
    grid-column: 1/-1
}

.rfq-field label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .045em;
    margin-bottom: 8px;
    color: var(--green)
}

.rfq-field label b {
    color: var(--gold);
    font-size: 15px;
    line-height: 0
}

.rfq-field input,
.rfq-field select,
.rfq-field textarea {
    width: 100%;
    border: 1px solid #cbc5b9;
    border-radius: 0;
    background: var(--cream);
    color: var(--body);
    font: 500 14px/1.5 var(--sans);
    padding: 13px 14px;
    min-height: 51px;
    transition: border-color .2s, box-shadow .2s
}

.rfq-field textarea {
    min-height: 150px;
    resize: vertical
}

.rfq-field select {
    appearance: auto
}

.rfq-field input:focus,
.rfq-field select:focus,
.rfq-field textarea:focus {
    outline: 0;
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgb(197 160 89/.38)
}

.rfq-field.has-error input,
.rfq-field.has-error select,
.rfq-field.has-error textarea {
    border-color: #9f3434
}

.rfq-error {
    display: block;
    color: #8c2525;
    font-size: 11px;
    line-height: 1.45;
    margin-top: 6px
}

.rfq-submit {
    border: 0;
    cursor: pointer;
    margin-top: 28px;
    background: var(--green);
    color: var(--cream);
    width: 100%
}

.rfq-submit:hover {
    background: var(--green-deep);
    box-shadow: inset 3px 0 var(--gold)
}

.rfq-honeypot {
    position: absolute !important;
    inline-size: 1px !important;
    block-size: 1px !important;
    overflow: hidden !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important
}

.rfq-notice {
    padding: 10px 0
}

.rfq-notice h3 {
    font: 400 36px/1.08 var(--serif);
    color: var(--green);
    margin: 0 0 17px
}

.rfq-notice p {
    color: #5d5952;
    line-height: 1.8
}

.rfq-notice--error {
    border-inline-start: 3px solid #9f3434;
    padding: 12px 16px;
    background: #faeeee;
    color: #6a1d1d;
    margin-bottom: 25px;
    font-size: 13px
}

.rfq-notice--error strong,
.rfq-notice--error span {
    display: block
}

.rfq-notice--error span {
    font-size: 12px;
    margin-top: 5px
}

.rfq-notice--success .hero__actions {
    margin-top: 26px
}

.rfq-notice--success .button--gold {
    background: var(--green);
    color: var(--cream)
}

.contact-cta {
    background: var(--ink);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden
}

.contact-cta:after {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    border: 1px solid rgb(197 160 89/.2);
    border-radius: 50%;
    left: 50%;
    bottom: -385px;
    transform: translateX(-50%)
}

.contact-cta__inner {
    position: relative;
    z-index: 1;
    padding-block: 105px;
    max-width: 820px
}

.contact-cta h2 {
    margin-bottom: 19px
}

.contact-cta h2 em {
    color: var(--gold)
}

.contact-cta p:not(.eyebrow) {
    max-width: 490px;
    margin: 0 auto 30px;
    color: rgb(255 255 255/.68)
}

.contact-cta .hero__actions {
    justify-content: center
}

.contact-cta .button--gold {
    background: var(--gold);
    color: var(--ink)
}

@media(max-width:900px) {
    .contact-info-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-info-grid article:nth-child(2) {
        border-inline-end: 0
    }

    .contact-info-grid article:nth-child(-n+2) {
        border-bottom: 1px solid #cbc5b9
    }

    .rfq__grid {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .rfq__intro {
        position: static;
        max-width: 580px
    }
}

@media(max-width:600px) {
    .contact-hero {
        min-height: 490px
    }

    .contact-hero__content {
        padding-block: 90px 54px
    }

    .contact-hero h1 {
        font-size: 52px
    }

    .contact-hero__content>p:not(.eyebrow) {
        font-size: 14px
    }

    .contact-information {
        padding-block: 65px
    }

    .contact-information__head {
        display: block;
        margin-bottom: 33px
    }

    .contact-info-grid {
        grid-template-columns: 1fr
    }

    .contact-info-grid article,
    .contact-info-grid article:not(:first-child) {
        min-height: auto;
        padding: 23px 0;
        border-inline-end: 0;
        border-bottom: 1px solid #cbc5b9
    }

    .contact-info-grid article:last-child {
        border-bottom: 0
    }

    .contact-info-grid svg {
        margin-bottom: 13px
    }

    .rfq-form__grid {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .rfq-field--full {
        grid-column: auto
    }

    .rfq__panel {
        padding: 22px 17px
    }

    .rfq-submit {
        min-height: 54px
    }

    .contact-cta__inner {
        padding-block: 78px
    }

    .contact-cta .hero__actions {
        gap: 18px
    }
}

/* Phase 4 verification refinements */
.contact-info-grid article {
    min-height: 150px;
    padding-block: 24px 20px
}

.contact-info-grid svg {
    margin-bottom: 18px
}

.rfq {
    scroll-margin-top: 104px
}

@media(max-width:600px) {

    .contact-info-grid article,
    .contact-info-grid article:not(:first-child) {
        min-height: auto;
        padding-block: 23px
    }

    .rfq {
        scroll-margin-top: 88px
    }
}

/* Compact bilingual language control: always visible, including mobile. */
.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    font: 800 11px/1 var(--sans);
    letter-spacing: .06em;
    color: var(--green)
}

.language-switch b {
    font-weight: 500;
    color: var(--muted)
}

.language-switch a,
.language-switch span {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    color: inherit;
    text-decoration: none
}

.language-switch .is-current {
    color: var(--gold);
    border-bottom: 1px solid currentColor
}

.language-switch .is-unavailable {
    color: var(--muted);
    cursor: not-allowed
}

.language-switch a:hover {
    color: var(--gold)
}

@media(max-width:600px) {
    .language-switch {
        display: inline-flex !important;
        gap: 5px;
        font-size: 10px
    }

    .language-switch a,
    .language-switch span {
        min-height: 38px
    }

    .header-actions {
        gap: 10px
    }

    .header-actions .language-switch {
        order: -1
    }
}
