.site-header {
    position: sticky;
    top: 0;
    background: rgba(244, 235, 223, 0.96);
    border-bottom: 1px solid rgba(107, 61, 46, 0.24);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.header-offset {
    display: none;
    height: 0;
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--nespresso-espresso-black);
    flex: 0 1 auto;
    max-width: none;
    min-width: 0;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
}

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

.logo-invert {
    filter: none;
}

.brand-monogram {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: var(--nespresso-dark-roast);
    color: var(--nespresso-foam-white);
    line-height: 1;
}

.brand-monogram img {
    width: 72%;
    height: 72%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.brand-monogram-light {
    background: var(--nespresso-foam-white);
    color: var(--nespresso-dark-roast);
}

.brand-monogram-light img {
    filter: none;
}

.brand-lockup {
    display: grid;
    gap: 0.12rem;
    line-height: 1;
}

.brand-lockup span {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    max-width: none;
    margin-bottom: 0.6rem;
}

.footer-logo .brand-lockup {
    color: var(--nespresso-foam-white);
    text-transform: uppercase;
}

.site-nav {
    position: fixed;
    inset: 78px 0 auto;
    background: var(--nespresso-foam-white);
    border-top: 1px solid rgba(107, 61, 46, 0.2);
    padding: 1rem 1.25rem 1.25rem;
    display: grid;
    gap: 0.35rem;
    transform: translateY(-112%);
    opacity: 0;
    pointer-events: none;
    min-width: 0;
    transition: transform var(--transition-medium), opacity var(--transition-medium);
}

.site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.site-nav.is-minimal {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    padding: 0;
    border: 0;
    background: transparent;
    display: flex;
    justify-content: flex-end;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    color: var(--nespresso-espresso-black);
    padding: 0.72rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.96rem;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-dropdown {
    position: relative;
    display: grid;
}

.nav-dropdown-toggle {
    cursor: pointer;
    border: 0;
    background: transparent;
    font: inherit;
}

.nav-caret {
    width: 0.42rem;
    height: 0.42rem;
    margin-left: 0.2rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform var(--transition-fast);
}

.nav-dropdown.is-open .nav-caret,
.nav-dropdown:focus-within .nav-caret {
    transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown-menu {
    display: none;
    min-width: 220px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(107, 61, 46, 0.22);
    background: var(--nespresso-foam-white);
    padding: 0.45rem;
    box-shadow: var(--shadow-hover);
}

.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: grid;
}

.nav-dropdown-link {
    display: flex;
    align-items: center;
    min-height: 40px;
    border-radius: var(--radius-sm);
    padding: 0.58rem 0.7rem;
    color: var(--nespresso-espresso-black);
    font-size: 0.88rem;
    line-height: 1.25;
    transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-dropdown-link:hover,
.nav-dropdown-link.is-active {
    color: var(--nespresso-foam-white);
    background: var(--nespresso-dark-brown);
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--nespresso-foam-white);
    background: var(--nespresso-dark-brown);
}

.nav-user {
    color: var(--nespresso-dark-brown);
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    align-items: center;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(107, 61, 46, 0.36);
    background: transparent;
    color: var(--nespresso-espresso-black);
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
}

.menu-toggle:hover {
    background: var(--nespresso-light-taupe);
    border-color: var(--nespresso-dark-brown);
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
    height: 46px;
    padding-block: 0;
    padding-inline: 1.35rem;
    text-align: center;
    white-space: nowrap;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    border: 1px solid transparent;
    overflow: hidden;
    vertical-align: middle;
}

.button::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
    z-index: -1;
}

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

.button:hover::before {
    transform: scaleX(1);
}

.button-primary {
    color: var(--nespresso-foam-white);
    background: var(--site-accent);
    border-color: var(--site-accent);
    box-shadow: none;
}

.button-primary::before {
    background: rgba(244, 235, 223, 0.14);
}

.button-secondary {
    color: var(--nespresso-espresso-black);
    border-color: var(--nespresso-dark-blue);
    background: var(--nespresso-light-blue);
}

.button-secondary::before {
    background: var(--nespresso-foam-white);
}

.button-ghost {
    color: var(--ink-900);
    border-color: rgba(18, 18, 18, 0.22);
    background: transparent;
}

.button-ghost::before {
    background: rgba(18, 18, 18, 0.06);
}

.button-brand-ghost {
    min-width: 230px;
    height: 56px;
    padding-inline: 2.75rem;
    color: inherit;
    border-color: currentColor;
    background: transparent;
    font-size: 1.12rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.15;
}

.button-brand-ghost::before {
    background: currentColor;
    opacity: 0.08;
}

.button-cta {
    background: var(--site-accent);
    color: var(--nespresso-foam-white);
    flex: 0 0 auto;
}

.js body.is-home-loading {
    overflow: hidden;
}

.js body.is-home-loading .cookie-banner {
    display: none;
}

.site-loader {
    display: none;
}

.js .site-loader {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    align-content: center;
    gap: clamp(1.5rem, 4vw, 2.4rem);
    padding: 1.5rem;
    background: var(--nespresso-foam-white);
    color: var(--nespresso-espresso-black);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.js .site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-capsule-shell {
    position: relative;
    width: clamp(96px, 12vw, 148px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}

.loader-capsule-canvas {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 156%;
    height: 156%;
    max-width: none;
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: none;
}

.loader-capsule {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 22%, rgba(248, 229, 154, 0.92) 0 13%, rgba(248, 229, 154, 0) 34%),
        radial-gradient(circle at 72% 78%, rgba(71, 36, 38, 0.34) 0 18%, rgba(71, 36, 38, 0) 42%),
        linear-gradient(135deg, #B5BE00 0%, #D6C732 42%, #6F7C12 100%);
    box-shadow:
        inset 0 0 0 2px rgba(244, 235, 223, 0.42),
        inset 0 0 0 18px rgba(71, 36, 38, 0.12),
        inset 0 -18px 28px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
    animation: loader-capsule-spin 1.45s linear infinite;
}

.loader-capsule-fallback {
    position: absolute;
    inset: 0;
    display: none;
    transition: opacity 0.28s ease;
}

.js .site-loader.is-3d-ready .loader-capsule-fallback {
    opacity: 0;
}

.loader-capsule::before {
    content: '';
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    border: 2px solid rgba(244, 235, 223, 0.44);
    box-shadow: inset 0 0 18px rgba(71, 36, 38, 0.18);
}

.loader-capsule::after {
    content: 'FINEZZO  FINEZZO  FINEZZO';
    position: absolute;
    inset: 18% -18%;
    display: grid;
    place-items: center;
    color: rgba(244, 235, 223, 0.66);
    font-family: var(--font-body);
    font-size: clamp(0.68rem, 1.4vw, 1rem);
    font-weight: 700;
    letter-spacing: 0.34em;
    transform: rotate(-14deg);
}

.loader-capsule-label {
    position: relative;
    z-index: 1;
    color: var(--nespresso-foam-white);
    font-family: var(--font-body);
    font-size: clamp(0.76rem, 1.5vw, 1.05rem);
    font-weight: 700;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
}

.loader-capsule-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    width: 30%;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    background: var(--nespresso-foam-white);
    transform: translate(-50%, -50%);
}

.loader-capsule-mark img {
    width: 72%;
    height: 72%;
    object-fit: contain;
}

.loader-progress {
    width: min(420px, calc(100vw - 3rem));
    display: grid;
    gap: 0.65rem;
}

.loader-progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nespresso-dark-roast);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.loader-progress-track {
    height: 4px;
    overflow: hidden;
    background: rgba(71, 36, 38, 0.18);
}

.loader-progress-bar {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--nespresso-dark-roast);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.16s linear;
}

@keyframes loader-capsule-spin {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(-8deg);
    }

    50% {
        transform: rotateX(8deg) rotateY(180deg) rotateZ(8deg);
    }

    100% {
        transform: rotateX(0deg) rotateY(360deg) rotateZ(-8deg);
    }
}

.hero {
    position: relative;
    overflow: hidden;
    color: var(--nespresso-foam-white);
    padding-block: clamp(2.4rem, 5vw, 5.8rem);
    background: var(--nespresso-dark-roast);
}

.hero-home {
    --hero-home-image: url('/assets/images/home/friends-chatting-over-coffee-in-cafe-2026-03-18-11-45-20-utc.webp');
    background-image: var(--hero-home-image);
    background-position: center 44%;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(71, 36, 38, 0.76);
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero-copy h1 {
    margin-bottom: 1rem;
    color: var(--nespresso-foam-white);
    font-size: 3.1rem;
    line-height: 0.85;
    max-width: 11ch;
    text-wrap: balance;
}

.hero-copy .lead {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.55rem;
    line-height: 1.2;
    color: var(--nespresso-foam-white);
    max-width: 32ch;
}

.hero-brand-bridge {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.95rem;
    width: fit-content;
    max-width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(244, 235, 223, 0.42);
    background: rgba(71, 36, 38, 0.72);
}

.hero-partner-logo {
    width: 108px;
    height: auto;
    flex-shrink: 0;
    background: var(--true-white);
    border-radius: 4px;
    padding: 0.2rem 0.32rem;
}

.hero-bridge-lockup {
    color: var(--nespresso-foam-white);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-brand-bridge p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--nespresso-foam-white);
    max-width: 48ch;
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.brand-connector {
    border-block: 1px solid var(--nespresso-dark-purple);
    background: var(--nespresso-light-lavender);
}

.brand-connector-inner {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.35rem;
    text-align: center;
}

.brand-tagline,
.footer-brand-invitation {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
    color: var(--nespresso-dark-purple);
}

.brand-tagline {
    font-size: 1.6rem;
    line-height: 0.92;
}

.brand-explore-actions {
    margin-top: 1.75rem;
    justify-content: center;
}

.hero-experience .brand-explore-actions {
    margin-top: 2.5rem;
}

.brand-connector .button-brand-ghost {
    color: var(--site-accent);
}

.hero-what-stage .button-brand-ghost {
    color: var(--nespresso-foam-white);
    border-color: rgba(244, 235, 223, 0.82);
}

.hero-tertiary-link {
    margin-top: 0.8rem;
}

.hero-quick-form {
    margin-top: 0.75rem;
    display: grid;
    gap: 0.58rem;
}

.hero-quick-form label {
    display: grid;
    gap: 0.32rem;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--nespresso-foam-white);
}

.hero-quick-form input,
.hero-quick-form select {
    width: 100%;
    border: 1px solid rgba(107, 61, 46, 0.34);
    border-radius: var(--radius-sm);
    background: var(--nespresso-foam-white);
    color: var(--ink-900);
    padding: 0.65rem 0.72rem;
}

.hero-quick-form input:focus,
.hero-quick-form select:focus {
    border-color: var(--nespresso-dark-purple);
    box-shadow: 0 0 0 3px rgba(71, 43, 116, 0.18);
}

.hero-quick-form .checkbox-label {
    margin-top: 0.1rem;
    font-size: 0.79rem;
    color: var(--nespresso-foam-white);
}

.hero-quick-form .checkbox-label input {
    width: 1rem;
    height: 1rem;
}

.hero-inline-support {
    margin-top: 0.52rem;
    font-size: 0.82rem;
}

.quick-enquiry-panel {
    padding: 1rem;
}

.quick-enquiry-panel summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--ink-900);
    list-style: none;
}

.quick-enquiry-panel summary::-webkit-details-marker {
    display: none;
}

.quick-enquiry-intro {
    margin-top: 0.65rem;
    margin-bottom: 0.55rem;
    color: var(--ink-700);
}

.quick-enquiry-panel .hero-quick-form label {
    color: var(--ink-700);
}

.quick-enquiry-panel .hero-quick-form .checkbox-label {
    color: var(--ink-500);
}

.brochure-drawer {
    --brochure-drawer-width: min(930px, calc(100vw - 3rem));
    --brochure-tab-width: 2.5rem;
    --brochure-tab-height: 16rem;
    position: fixed;
    top: 55%;
    right: 0;
    z-index: 1080;
    width: var(--brochure-drawer-width);
    transform: translateY(-50%);
    pointer-events: none;
}

.brochure-drawer.is-open .brochure-drawer-panel {
    transform: translateX(0);
}

.brochure-drawer-toggle {
    position: absolute;
    top: 0;
    left: calc(100% - var(--brochure-tab-width));
    z-index: 2;
    width: var(--brochure-tab-width);
    height: var(--brochure-tab-height);
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: var(--radius-sm);
    border-bottom-left-radius: var(--radius-sm);
    border: 0;
    background: var(--nespresso-dark-roast);
    color: var(--nespresso-foam-white);
    box-shadow: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.8rem;
    font-weight: 600;
    pointer-events: auto;
    transition: left var(--transition-medium), background var(--transition-fast), color var(--transition-fast);
}

.brochure-drawer.is-open .brochure-drawer-toggle {
    left: calc(var(--brochure-tab-width) * -1);
}

.brochure-drawer-toggle:hover,
.brochure-drawer-toggle:focus-visible {
    background: var(--site-accent);
    color: var(--nespresso-foam-white);
}

.brochure-drawer-toggle span {
    display: block;
    min-width: 11.5rem;
    transform: rotate(-90deg);
    white-space: nowrap;
}

.brochure-drawer-toggle span:last-child,
.brochure-drawer.is-open .brochure-drawer-toggle span:first-child {
    display: none;
}

.brochure-drawer.is-open .brochure-drawer-toggle span:last-child {
    display: block;
}

.brochure-drawer-panel {
    width: 100%;
    min-height: 18rem;
    max-height: min(84vh, 640px);
    overflow-y: auto;
    border-top-left-radius: var(--radius-sm);
    border-bottom-left-radius: var(--radius-sm);
    border: 0;
    background: var(--nespresso-dark-roast);
    color: var(--nespresso-foam-white);
    box-shadow: none;
    padding: clamp(2rem, 4vw, 2.6rem) clamp(2.25rem, 5vw, 4.8rem);
    pointer-events: auto;
    transform: translateX(100%);
    transition: transform var(--transition-medium);
}

.brochure-drawer-panel h2 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: var(--nespresso-foam-white);
    font-size: 1.95rem;
    line-height: 1.2;
    letter-spacing: 0;
}

.brochure-drawer .quick-enquiry-intro {
    margin-top: 0;
    margin-bottom: 0.65rem;
    color: var(--nespresso-foam-white);
    max-width: 64ch;
}

.brochure-drawer .hero-quick-form {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-top: 1.15rem;
}

.brochure-form label {
    color: var(--nespresso-foam-white);
    font-size: 0;
}

.brochure-form input:not([type="checkbox"]) {
    border: 0;
    border-radius: 0;
    background: var(--nespresso-foam-white);
    color: var(--nespresso-espresso-black);
    font-size: 1rem;
    padding: 0.72rem 0.8rem;
}

.brochure-form input:not([type="checkbox"])::placeholder {
    color: var(--ink-500);
}

.brochure-form input:not([type="checkbox"]):focus {
    box-shadow: 0 0 0 3px rgba(214, 154, 45, 0.35);
}

.brochure-form .checkbox-label {
    color: var(--nespresso-foam-white);
    font-size: 0.82rem;
    line-height: 1.45;
}

.brochure-form .checkbox-label input {
    width: 1rem;
    flex: 0 0 auto;
    margin-top: 0.2rem;
}

.brochure-form .form-note,
.brochure-form button,
.brochure-form .checkbox-label {
    grid-column: auto;
}

.brochure-form .form-note {
    color: var(--nespresso-foam-white);
}

.brochure-form button {
    justify-self: end;
    border-radius: 4px;
    background: var(--site-accent);
    color: var(--nespresso-foam-white);
    box-shadow: none;
}

.brochure-form button::before {
    background: var(--nespresso-light-yellow);
}

.brochure-form button:hover {
    color: var(--nespresso-espresso-black);
}

.hero-testimonials {
    margin-top: 0.95rem;
    min-height: 92px;
}

.hero-quote {
    display: none;
    border-left: 2px solid var(--nespresso-dark-gold);
    padding-left: 0.7rem;
}

.hero-quote.is-active {
    display: block;
}

.hero-quote blockquote {
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--nespresso-foam-white);
}

.hero-quote figcaption {
    margin-top: 0.35rem;
    font-size: 0.78rem;
    color: var(--nespresso-foam-white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.testimonial-ribbon {
    --testimonial-columns: 1;
    --testimonial-gap: 1rem;
    border-radius: var(--radius-md);
    border: 0;
    background: transparent;
    padding: clamp(0.75rem, 1.5vw, 1.05rem);
    box-shadow: none;
    overflow: hidden;
}

.testimonial-carousel-viewport {
    overflow: hidden;
}

.testimonial-carousel-track {
    display: flex;
    gap: var(--testimonial-gap);
    transform: translateX(var(--testimonial-offset, 0));
    transition: transform var(--transition-medium);
    will-change: transform;
}

.testimonial-carousel-card {
    --testimonial-accent: var(--nespresso-dark-brown);
    --testimonial-tint: var(--nespresso-light-taupe);
    position: relative;
    flex: 0 0 100%;
    min-height: 210px;
    margin: 0;
    border: 1px solid var(--testimonial-accent);
    border-top: 3px solid var(--testimonial-accent);
    border-radius: var(--brand-card-radius);
    background: var(--testimonial-tint);
    padding: 1.15rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: none;
    overflow: hidden;
}

.testimonial-carousel-card::before {
    content: '“';
    position: absolute;
    top: 0.18rem;
    right: 0.72rem;
    color: var(--nespresso-foam-white);
    font-family: Georgia, serif;
    font-size: 4.4rem;
    line-height: 1;
    pointer-events: none;
}

.testimonial-carousel-card blockquote {
    position: relative;
    z-index: 1;
    color: var(--ink-900);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
}

.testimonial-carousel-card figcaption {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(18, 18, 18, 0.1);
    color: var(--ink-700);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.testimonial-carousel-card figcaption::before {
    content: '';
    display: inline-block;
    width: 0.52rem;
    height: 0.52rem;
    margin-right: 0.38rem;
    background: var(--testimonial-accent);
    vertical-align: 0.02em;
}

.testimonial-carousel-card:nth-child(1) {
    --testimonial-accent: var(--nespresso-dark-berry);
    --testimonial-tint: var(--nespresso-light-pink);
}

.testimonial-carousel-card:nth-child(2) {
    --testimonial-accent: var(--nespresso-dark-purple);
    --testimonial-tint: var(--nespresso-light-lavender);
}

.testimonial-carousel-card:nth-child(3) {
    --testimonial-accent: var(--nespresso-dark-blue);
    --testimonial-tint: var(--nespresso-light-blue);
}

.testimonial-carousel-card:nth-child(4) {
    --testimonial-accent: var(--nespresso-dark-brown);
    --testimonial-tint: var(--nespresso-light-taupe);
}

.testimonial-carousel-card:nth-child(5) {
    --testimonial-accent: var(--nespresso-dark-green);
    --testimonial-tint: var(--nespresso-light-sage);
}

.testimonial-carousel-card:nth-child(6) {
    --testimonial-accent: var(--nespresso-dark-gold);
    --testimonial-tint: var(--nespresso-light-yellow);
}

.testimonial-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
}

.testimonial-carousel-dot {
    width: 0.58rem;
    height: 0.58rem;
    border: 1px solid rgba(18, 18, 18, 0.24);
    border-radius: var(--radius-sm);
    background: var(--nespresso-foam-white);
    padding: 0;
    cursor: pointer;
    transition: width var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.testimonial-carousel-dot:hover,
.testimonial-carousel-dot:focus-visible {
    border-color: var(--nespresso-dark-gold);
    transform: translateY(-1px);
}

.testimonial-carousel-dot.is-active {
    width: 1.5rem;
    background: var(--nespresso-dark-gold);
    border-color: var(--nespresso-dark-gold);
}

.hero-visual {
    aspect-ratio: 1 / 1;
    padding: 0.7rem;
    border-radius: 0;
    border: 1px solid rgba(244, 235, 223, 0.5);
    background: var(--nespresso-foam-white);
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.hero-visual:hover,
.hero-visual:focus-visible {
    border-color: var(--nespresso-dark-gold);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
}

.trust-bar {
    background: var(--nespresso-dark-blue);
    border-top: 1px solid rgba(244, 235, 223, 0.32);
    border-bottom: 1px solid rgba(244, 235, 223, 0.32);
}

.trust-items {
    min-height: 62px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 1rem;
    align-items: center;
    padding-block: 0.9rem;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    --trust-tint: var(--nespresso-light-blue);
    width: 1.1rem;
    height: 1.1rem;
    padding: 0.15rem;
    border-radius: var(--radius-sm);
    background: var(--trust-tint);
    border: 1px solid var(--trust-tint);
}

.trust-item:nth-child(2) .trust-icon {
    --trust-tint: var(--nespresso-light-yellow);
}

.trust-item:nth-child(3) .trust-icon {
    --trust-tint: var(--nespresso-light-lavender);
}

.trust-item:nth-child(4) .trust-icon {
    --trust-tint: var(--nespresso-light-sage);
}

.trust-item p {
    color: var(--nespresso-foam-white);
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-layout-section {
    background: var(--nespresso-foam-white);
}

.brand-layout-grid {
    display: grid;
    gap: clamp(0.95rem, 1.6vw, 1.35rem);
}

.brand-layout-block {
    position: relative;
    min-height: clamp(340px, 62vw, 520px);
    display: grid;
    align-content: space-between;
    gap: 1rem;
    overflow: hidden;
    padding: clamp(1.15rem, 2.5vw, 2rem);
    isolation: isolate;
}

.brand-layout-block h2,
.brand-layout-block h3 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    color: inherit;
    line-height: 0.84;
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand-layout-block h2 {
    max-width: 9ch;
    font-size: clamp(3rem, 7vw, 7.7rem);
}

.brand-layout-block h3 {
    max-width: 9ch;
    font-size: clamp(2.4rem, 5vw, 5.7rem);
}

.brand-layout-kicker {
    margin-bottom: 0.6rem;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.brand-layout-mark {
    width: clamp(2.4rem, 4vw, 3.2rem);
    height: clamp(2.4rem, 4vw, 3.2rem);
    display: grid;
    place-items: center;
    background: var(--nespresso-foam-white);
}

.brand-layout-mark img {
    width: 72%;
    height: 72%;
    filter: none;
    object-fit: contain;
}

.brand-layout-mark-dark {
    background: var(--nespresso-dark-roast);
}

.brand-layout-mark-dark img {
    filter: brightness(0) invert(1);
}

.brand-layout-image-window {
    width: min(68%, 280px);
    aspect-ratio: 1;
    margin: 0 auto;
    overflow: hidden;
    background: var(--nespresso-foam-white);
}

.brand-layout-image-window img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-layout-copy {
    background: var(--nespresso-dark-gold);
    color: var(--nespresso-espresso-black);
    justify-items: end;
    text-align: right;
}

.brand-layout-copy h2,
.brand-layout-copy .brand-layout-kicker {
    color: var(--nespresso-dark-roast);
}

.brand-layout-hero-image {
    background: var(--nespresso-dark-green);
    color: var(--nespresso-foam-white);
    justify-items: center;
    text-align: center;
}

.brand-layout-hero-image .brand-layout-kicker {
    color: var(--nespresso-light-sage);
}

.brand-layout-text-over {
    min-height: clamp(420px, 72vw, 580px);
    align-content: end;
    background: var(--nespresso-dark-berry);
    color: var(--nespresso-foam-white);
}

.brand-layout-text-over::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(178, 47, 102, 0.15), rgba(178, 47, 102, 0.76));
}

.brand-layout-text-over > img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.02);
}

.brand-layout-text-over h3 {
    max-width: 8ch;
    color: var(--nespresso-foam-white);
}

.brand-layout-text-over h3,
.brand-layout-image-first h3,
.brand-layout-split-bottom h3 {
    font-size: clamp(2.4rem, 3.6vw, 4.35rem);
}

.brand-layout-text-over .brand-layout-kicker {
    color: var(--nespresso-light-pink);
}

.brand-layout-image-first {
    background: var(--nespresso-dark-purple);
    color: var(--nespresso-foam-white);
}

.brand-layout-image-first .brand-layout-kicker {
    color: var(--nespresso-light-lavender);
}

.brand-layout-image-first .brand-layout-image-window {
    width: min(74%, 300px);
    background: var(--nespresso-light-lavender);
}

.brand-layout-image-first .brand-layout-image-window img {
    object-fit: contain;
    padding: clamp(0.8rem, 2vw, 1.25rem);
}

.brand-layout-image-first .brand-layout-mark {
    justify-self: end;
}

.brand-layout-image-set {
    min-height: clamp(420px, 72vw, 580px);
    padding: 0;
    background: var(--nespresso-dark-red);
    color: var(--nespresso-foam-white);
    grid-template-rows: 0.9fr 1.1fr;
}

.brand-layout-split {
    position: relative;
    min-height: 0;
    padding: clamp(1rem, 2vw, 1.45rem);
    overflow: hidden;
}

.brand-layout-split-top {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
    background: var(--nespresso-dark-blue);
}

.brand-layout-split-top > img {
    width: min(72%, 210px);
    aspect-ratio: 1;
    justify-self: end;
    object-fit: contain;
}

.brand-layout-split-bottom {
    display: grid;
    align-content: end;
    background: var(--nespresso-dark-red);
}

.brand-layout-split-bottom img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.48;
}

.brand-layout-split-bottom h3 {
    position: relative;
    z-index: 1;
    max-width: 9ch;
    color: var(--nespresso-foam-white);
}

.section-heading {
    display: grid;
    gap: 0.65rem;
    margin-bottom: clamp(1.75rem, 3vw, 3rem);
}

.section-heading h2 {
    max-width: 13ch;
    text-wrap: balance;
}

.section-heading .lead,
.section-heading p:not(.kicker) {
    max-width: 44ch;
}

.card-grid {
    display: grid;
    gap: clamp(1rem, 1.8vw, 1.35rem);
}

.card {
    background: var(--nespresso-foam-white);
    border: 1px solid rgba(18, 18, 18, 0.08);
    border-radius: var(--brand-card-radius);
    padding: clamp(1.15rem, 1.8vw, 1.55rem);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--nespresso-dark-gold);
}

.mini-icon {
    width: 1.45rem;
    height: 1.45rem;
    color: var(--accent-strong);
}

.icon-orb {
    width: 2.45rem;
    height: 2.45rem;
    display: inline-grid;
    place-items: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--nespresso-dark-gold);
    background: var(--nespresso-light-yellow);
    box-shadow: none;
}

.env-card .icon-orb {
    margin-bottom: 0.55rem;
}

.env-card .mini-icon {
    width: 1.6rem;
    height: 1.6rem;
}

.env-card:hover {
    border-color: var(--nespresso-dark-blue);
    box-shadow: none;
}

.env-card,
.value-card {
    --card-accent: var(--nespresso-dark-brown);
    --card-tint: var(--nespresso-light-taupe);
    background: var(--card-tint);
    border-color: var(--card-accent);
}

.env-card .icon-orb,
.value-card .icon-orb {
    border-color: var(--card-accent);
    background: var(--nespresso-foam-white);
}

.env-card:nth-child(1) {
    --card-accent: var(--nespresso-dark-blue);
    --card-tint: var(--nespresso-light-blue);
}

.env-card:nth-child(2) {
    --card-accent: var(--nespresso-dark-purple);
    --card-tint: var(--nespresso-light-lavender);
}

.env-card:nth-child(3) {
    --card-accent: var(--nespresso-dark-brown);
    --card-tint: var(--nespresso-light-taupe);
}

.value-card {
    border-left: 8px solid var(--card-accent);
}

.value-card:nth-child(1) {
    --card-accent: var(--nespresso-dark-brown);
    --card-tint: var(--nespresso-light-taupe);
}

.value-card:nth-child(2) {
    --card-accent: var(--nespresso-dark-blue);
    --card-tint: var(--nespresso-light-blue);
}

.value-card:nth-child(3) {
    --card-accent: var(--nespresso-dark-green);
    --card-tint: var(--nespresso-light-sage);
}

.value-card:nth-child(4) {
    --card-accent: var(--nespresso-dark-berry);
    --card-tint: var(--nespresso-light-pink);
}

.value-card .value-eyebrow,
.value-card .lyreco-note-brand {
    color: var(--card-accent);
}

.value-card .lyreco-inline-note {
    border-left-color: var(--card-accent);
}

.env-card .mini-icon,
.value-card .mini-icon,
.stat-card .mini-icon {
    margin-bottom: 0.5rem;
}

.value-eyebrow {
    margin-bottom: 0.35rem;
    color: var(--nespresso-dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.72rem;
    font-weight: 700;
}

.lyreco-inline-note {
    margin-top: 0.4rem;
    border-left: 3px solid var(--nespresso-dark-blue);
    padding-left: 0.55rem;
    font-size: 0.88rem;
    color: var(--ink-700);
}

.lyreco-note-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-right: 0.4rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--nespresso-dark-blue);
}

.lyreco-note-brand img {
    width: auto;
    height: 14px;
    background: var(--true-white);
    border-radius: 3px;
    padding: 0.08rem 0.2rem;
}

.icon-dot {
    width: 11px;
    height: 11px;
    display: inline-block;
    border-radius: var(--radius-sm);
    margin-bottom: 0.65rem;
    background: var(--nespresso-dark-gold);
    box-shadow: none;
}

.card h3,
.card h2 {
    margin-bottom: 0.5rem;
}

.card h3 {
    font-size: 1.55rem;
    line-height: 1;
}

.card p {
    line-height: 1.28;
}

.stats-grid {
    display: grid;
    gap: 1rem;
}

.stat-card {
    --stat-accent: var(--nespresso-dark-blue);
    padding: 1.4rem;
    border-radius: var(--brand-card-radius);
    border: 1px solid var(--stat-accent);
    background: var(--nespresso-light-blue);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.stat-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 3.3rem;
    line-height: 0.85;
    margin-bottom: 0.45rem;
    color: var(--stat-accent);
}

.stat-source-note {
    margin-top: 0.85rem;
    font-size: 0.82rem;
    color: var(--ink-500);
}

.stat-evidence {
    margin-top: 0.4rem;
    font-size: 0.77rem;
    color: var(--ink-500);
}

.stat-card .mini-icon {
    width: 1.75rem;
    height: 1.75rem;
    padding: 0.35rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--stat-accent);
    background: var(--nespresso-foam-white);
}

.stat-card:nth-child(1) {
    --stat-accent: var(--nespresso-dark-gold);
    background: var(--nespresso-light-yellow);
}

.stat-card:nth-child(2) {
    --stat-accent: var(--nespresso-light-blue);
    background: var(--nespresso-dark-blue);
    color: var(--nespresso-foam-white);
}

.stat-card:nth-child(3) {
    --stat-accent: var(--nespresso-dark-green);
    background: var(--nespresso-light-sage);
}

.stat-card:nth-child(4) {
    --stat-accent: var(--nespresso-light-pink);
    background: var(--nespresso-dark-berry);
    color: var(--nespresso-foam-white);
}

.stat-card:nth-child(2) p,
.stat-card:nth-child(4) p,
.stat-card:nth-child(2) .stat-evidence,
.stat-card:nth-child(4) .stat-evidence {
    color: var(--nespresso-foam-white);
}

.stat-card:nth-child(2) .stat-value,
.stat-card:nth-child(4) .stat-value {
    color: var(--stat-accent);
}

.stat-card:nth-child(2) .mini-icon,
.stat-card:nth-child(4) .mini-icon {
    background: transparent;
    filter: brightness(0) invert(1);
}

.machine-grid,
.coffee-grid,
.blog-grid {
    display: grid;
    gap: 1rem;
}

.machine-card,
.coffee-card,
.blog-card {
    --item-accent: var(--nespresso-dark-roast);
    border-radius: var(--brand-card-radius);
    overflow: hidden;
    border: 1px solid var(--item-accent);
    border-top: 8px solid var(--item-accent);
    background: var(--nespresso-foam-white);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.machine-card:hover,
.coffee-card:hover,
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--item-accent);
}

.machine-card > img,
.coffee-card > img,
.blog-card > img {
    width: 100%;
    height: auto;
    object-fit: contain;
    background: var(--item-accent);
}

.machine-card:nth-child(1),
.coffee-card:nth-child(1),
.blog-card:nth-child(1) {
    --item-accent: var(--nespresso-dark-blue);
}

.machine-card:nth-child(2),
.coffee-card:nth-child(2),
.blog-card:nth-child(2) {
    --item-accent: var(--nespresso-dark-brown);
}

.machine-card:nth-child(3),
.coffee-card:nth-child(3),
.blog-card:nth-child(3) {
    --item-accent: var(--nespresso-dark-purple);
}

.coffee-card:nth-child(4),
.blog-card:nth-child(4) {
    --item-accent: var(--nespresso-dark-green);
}

.coffee-card:nth-child(5),
.blog-card:nth-child(5) {
    --item-accent: var(--nespresso-dark-berry);
}

.coffee-card:nth-child(6),
.blog-card:nth-child(6) {
    --item-accent: var(--nespresso-dark-gold);
}

.machine-card-feature > img {
    min-height: 240px;
}

.blog-card img {
    height: 240px;
    object-fit: cover;
    object-position: center;
    background: var(--nespresso-dark-roast);
}

.machine-card-body,
.coffee-card-body,
.blog-card-body {
    padding: 1.1rem;
    display: grid;
    gap: 0.75rem;
}

.machine-card ul {
    list-style: disc;
    margin-left: 1rem;
    color: var(--ink-500);
}

.machine-card li {
    margin-bottom: 0.35rem;
}

.spec-inline {
    display: grid;
    gap: 0.45rem;
    margin-block: 0.25rem;
}

.spec-inline div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(18, 18, 18, 0.08);
    padding-bottom: 0.3rem;
}

.spec-inline dt {
    font-weight: 700;
    color: var(--ink-700);
}

.spec-inline dd {
    color: var(--ink-500);
    text-align: right;
}

.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.machine-summary {
    color: var(--ink-700);
}

.machine-badge {
    width: fit-content;
    border-radius: var(--radius-sm);
    padding: 0.2rem 0.58rem;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--nespresso-espresso-black);
    background: var(--nespresso-light-blue);
    border: 1px solid var(--nespresso-dark-blue);
}

.machine-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    font-size: 0.85rem;
    color: var(--ink-500);
}

.rating-icon {
    flex: 0 0 1rem;
    width: 1rem;
    height: 1rem;
    min-height: 0;
    object-fit: contain;
    background: transparent;
}

.machine-quote {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink-500);
    border-left: 2px solid var(--nespresso-dark-gold);
    padding-left: 0.55rem;
}

.machine-link-wrap {
    margin-top: 0.3rem;
}

.compare-link-wrap {
    margin-top: 0.95rem;
}

.process-list {
    display: grid;
    gap: 1rem;
    counter-reset: steps;
}

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

.process-item {
    --step-accent: var(--nespresso-dark-gold);
    background: var(--nespresso-foam-white);
    border: 1px solid var(--step-accent);
    border-radius: var(--radius-md);
    padding: 1.3rem;
    position: relative;
    padding-left: 3.2rem;
}

.process-item::before {
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    left: 1.2rem;
    top: 1.15rem;
    width: 1.45rem;
    height: 1.45rem;
    border-radius: var(--radius-sm);
    background: var(--step-accent);
    color: var(--ink-900);
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.process-item:nth-child(n+2)::before {
    color: var(--nespresso-foam-white);
}

.process-item .mini-icon {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: var(--step-accent);
}

.process-item:nth-child(2) {
    --step-accent: var(--nespresso-dark-blue);
}

.process-item:nth-child(3) {
    --step-accent: var(--nespresso-dark-green);
}

.process-item:nth-child(4) {
    --step-accent: var(--nespresso-dark-purple);
}

.process-step-cta {
    margin-top: 0.45rem;
    font-size: 0.85rem;
}

.process-cta-wrap {
    margin-top: 1rem;
}

.section-recycling-preview {
    padding-bottom: clamp(1.25rem, 2.5vw, 2.5rem);
}

.section-club-preview {
    padding-top: clamp(1.25rem, 2.5vw, 2.5rem);
}

.recycling-preview {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: stretch;
    gap: clamp(1.2rem, 3vw, 2.5rem);
    border-radius: var(--radius-md);
    border: 1px solid var(--nespresso-dark-green);
    background: var(--nespresso-light-sage);
    padding: clamp(1.3rem, 3vw, 2.4rem);
    box-shadow: var(--shadow-soft);
}

.recycling-copy {
    display: grid;
    align-content: start;
    gap: 0.85rem;
    max-width: 64ch;
}

.recycling-preview .kicker {
    color: var(--nespresso-dark-green);
    margin-bottom: 0;
}

.recycling-preview h2 {
    max-width: 24ch;
}

.recycling-preview p {
    color: var(--ink-700);
}

.recycling-preview .tag-row {
    margin-top: 0.2rem;
}

.recycling-preview .tiny-tag {
    background: var(--nespresso-foam-white);
    border-color: var(--nespresso-dark-green);
}

.recycling-proof {
    display: grid;
    align-content: center;
    gap: 0.85rem;
    padding-left: clamp(1rem, 2vw, 1.6rem);
    border-left: 1px solid var(--nespresso-dark-green);
}

.recycling-proof-title {
    color: var(--nespresso-dark-green);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.recycling-check-list {
    display: grid;
    gap: 0.7rem;
}

.recycling-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: var(--ink-700);
    font-size: 0.92rem;
    line-height: 1.35;
}

.recycling-check-list img {
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 auto;
    margin-top: 0.12rem;
}

.newsletter-preview {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: var(--radius-lg);
    background: var(--nespresso-dark-roast);
    color: var(--nespresso-foam-white);
    padding: 1.5rem;
    box-shadow: var(--shadow-hover);
}

.newsletter-preview h2,
.newsletter-preview p {
    color: inherit;
}

.newsletter-preview .tag-row {
    margin-top: 0.75rem;
}

.club-preview {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(1rem, 3vw, 2rem);
    overflow: hidden;
    border: 1px solid var(--nespresso-light-pink);
    background: var(--nespresso-dark-berry);
    padding: clamp(1.35rem, 3vw, 2.25rem);
}

.club-copy {
    min-width: 0;
}

.club-preview .kicker {
    color: var(--nespresso-light-pink);
}

.club-preview h2 {
    max-width: none;
}

.club-preview .feature-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem 1rem;
    margin-top: 1rem;
    margin-left: 0;
    list-style: none;
}

.club-preview .feature-list li {
    position: relative;
    padding-left: 1rem;
    color: var(--nespresso-foam-white);
    font-size: 0.92rem;
    line-height: 1.35;
}

.club-preview .feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.38rem;
    height: 0.38rem;
    border-radius: var(--radius-sm);
    background: var(--nespresso-light-pink);
}

.club-preview .button {
    min-width: 160px;
}

.feature-list {
    display: grid;
    gap: 0.35rem;
    list-style: disc;
    margin-left: 1rem;
}

.club-audience {
    margin-top: 0.55rem;
    font-size: 0.88rem;
    color: var(--nespresso-foam-white);
}

.floating-consultation {
    position: fixed;
    right: 0.95rem;
    bottom: 0.95rem;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.52rem 0.9rem;
    border: 1px solid var(--nespresso-dark-red);
    background: var(--nespresso-dark-red);
    color: var(--nespresso-foam-white);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: none;
    gap: 0.4rem;
}

.floating-consultation:hover {
    transform: translateY(-1px);
}

.floating-icon {
    width: 1rem;
    height: 1rem;
}

.floating-label {
    white-space: nowrap;
}

.filters {
    display: grid;
    gap: 0.85rem;
}

.filters-chip-layout {
    gap: 1rem;
}

.machine-filter-section .filters-chip-layout {
    align-items: stretch;
}

.filter-group {
    margin: 0;
    border: 1px solid rgba(18, 18, 18, 0.12);
    border-radius: var(--radius-md);
    padding: 0.8rem;
    display: grid;
    gap: 0.55rem;
    background: var(--nespresso-foam-white);
}

.filter-group legend {
    padding-inline: 0.35rem;
    font-weight: 700;
    color: var(--ink-700);
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(18, 18, 18, 0.2);
    background: var(--nespresso-foam-white);
    padding: 0.4rem 0.65rem;
    font-size: 0.88rem;
    line-height: 1.25;
}

.filter-chip input {
    flex: 0 0 auto;
    width: auto;
    margin: 0;
}

.filter-chip span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.filter-chip input:checked + span {
    color: var(--nespresso-dark-brown);
    font-weight: 700;
}

.filters label {
    display: grid;
    gap: 0.4rem;
    color: var(--ink-700);
    font-weight: 700;
}

.filters .filter-chip {
    display: inline-flex;
    gap: 0.45rem;
    font-weight: 500;
}

.filters select,
.site-form input,
.site-form textarea,
.site-form select {
    width: 100%;
    border: 1px solid rgba(18, 18, 18, 0.2);
    border-radius: var(--radius-sm);
    background: var(--nespresso-foam-white);
    padding: 0.78rem 0.85rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.site-form textarea {
    resize: vertical;
    min-height: 110px;
}

.filters select:focus,
.site-form input:focus,
.site-form textarea:focus,
.site-form select:focus {
    border-color: var(--nespresso-dark-purple);
    box-shadow: 0 0 0 4px rgba(71, 43, 116, 0.18);
}

.site-form input:hover,
.site-form textarea:hover,
.site-form select:hover {
    transform: translateY(-1px);
}

.form-step {
    border: 1px solid rgba(18, 18, 18, 0.1);
    border-radius: var(--radius-md);
    padding: 0.9rem;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.form-step legend {
    font-weight: 700;
    color: var(--ink-700);
    padding: 0 0.25rem;
}

.radio-grid {
    display: grid;
    gap: 0.6rem;
}

.choice-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(18, 18, 18, 0.2);
    background: var(--nespresso-foam-white);
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.choice-pill input {
    width: auto;
    margin: 0;
}

.choice-pill input:checked + span {
    color: var(--nespresso-dark-brown);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.support-check-list {
    list-style: disc;
    margin-left: 1rem;
    display: grid;
    gap: 0.45rem;
    color: var(--ink-500);
}

.step-progress {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0.9rem;
    margin-bottom: 0.9rem;
}

.step-progress li {
    font-size: 0.78rem;
    text-align: center;
    border: 1px solid rgba(18, 18, 18, 0.14);
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.5rem;
    background: var(--nespresso-foam-white);
}

.filter-empty {
    margin-top: 1rem;
    color: var(--ink-500);
}

.filter-summary {
    margin-top: 0.75rem;
    margin-bottom: 0.2rem;
    font-size: 0.88rem;
    color: var(--ink-700);
    padding: 0.45rem 0.7rem;
    border: 1px solid var(--nespresso-dark-blue);
    background: var(--nespresso-light-blue);
    border-radius: var(--radius-sm);
}

.filter-empty p {
    margin-bottom: 0.4rem;
}

.detail-layout {
    display: grid;
    gap: 1rem;
}

.gallery-stack,
.spec-panel {
    border-radius: var(--radius-md);
    background: var(--nespresso-foam-white);
    border: 1px solid rgba(18, 18, 18, 0.08);
    padding: 1rem;
}

.gallery-stack img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.thumb-grid {
    margin-top: 0.75rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.spec-panel {
    display: grid;
    gap: 0.9rem;
    align-content: start;
}

.spec-panel dl {
    display: grid;
    gap: 0.5rem;
}

.spec-panel dl div {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(18, 18, 18, 0.08);
    padding-bottom: 0.4rem;
}

.spec-panel dt {
    font-weight: 700;
}

.spec-panel dd {
    color: var(--ink-500);
    text-align: right;
}

.accordion-list {
    display: grid;
    gap: 0.65rem;
}

.accordion-list details {
    border-radius: var(--radius-md);
    border: 1px solid rgba(18, 18, 18, 0.12);
    background: var(--nespresso-foam-white);
    padding: 0.85rem 1rem;
}

.accordion-list summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.accordion-list summary::-webkit-details-marker {
    display: none;
}

.accordion-list details p {
    margin-top: 0.65rem;
    color: var(--ink-500);
}

.accordion-list details img {
    margin-top: 0.65rem;
    margin-bottom: 0.65rem;
    border-radius: var(--radius-md);
}

.editorial-hero,
.support-hero,
.enquiry-hero,
.landing-hero {
    background: var(--nespresso-dark-roast);
    color: var(--nespresso-foam-white);
}

.enquiry-hero {
    padding: clamp(1.25rem, 4vw, 2.5rem);
    border-radius: var(--radius-md);
}

.editorial-hero h1,
.editorial-hero p,
.support-hero h1,
.support-hero p,
.enquiry-hero h1,
.enquiry-hero p,
.landing-hero h1,
.landing-hero p,
.landing-hero li {
    color: inherit;
}

.landing-hero .card {
    margin-top: 1rem;
    background: var(--nespresso-foam-white);
    color: var(--ink-900);
}

.landing-hero .card h2 {
    color: var(--ink-900);
}

.landing-hero .card p {
    color: var(--ink-500);
}

.editorial-stack {
    display: grid;
    gap: 0.9rem;
}

.editorial-block {
    border-left: 3px solid var(--nespresso-dark-gold);
    padding-left: 1rem;
    max-width: 72ch;
}

.testimonial-card .quote {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.7rem;
    line-height: 1.2;
}

.company-badge {
    width: 2.1rem;
    height: 2.1rem;
    display: grid;
    place-items: center;
    border-radius: var(--radius-sm);
    background: var(--nespresso-light-yellow);
    border: 1px solid var(--nespresso-dark-gold);
    color: var(--ink-700);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.testimonial-card .author {
    margin-top: 0.75rem;
    color: var(--ink-500);
}

.form-layout {
    display: grid;
    gap: 1rem;
}

.single-column {
    grid-template-columns: 1fr;
}

.form-column {
    border-radius: var(--radius-md);
    border: 1px solid rgba(18, 18, 18, 0.08);
    background: var(--nespresso-foam-white);
    padding: 1.2rem;
    box-shadow: var(--shadow-soft);
}

.single-column .form-column {
    width: 100%;
    max-width: 900px;
    margin-inline: auto;
}

.site-form {
    margin-top: 1rem;
    display: grid;
    gap: 0.75rem;
}

.site-form label {
    display: grid;
    gap: 0.35rem;
    font-weight: 700;
    color: var(--ink-700);
}

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

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.65rem;
    font-weight: 500;
    color: var(--ink-500);
}

.checkbox-label input {
    margin-top: 0.2rem;
    width: 1rem;
    height: 1rem;
    accent-color: var(--accent);
}

.form-alert {
    border-radius: var(--radius-md);
    padding: 0.75rem 0.9rem;
    margin-bottom: 0.85rem;
}

.form-alert.success {
    border: 1px solid color-mix(in srgb, var(--success) 30%, white);
    background: var(--success-bg);
    color: var(--success);
}

.form-alert.error {
    border: 1px solid color-mix(in srgb, var(--error) 32%, white);
    background: var(--error-bg);
    color: var(--error);
}

.form-note {
    color: var(--ink-500);
    font-size: 0.9rem;
}

.field-help {
    margin-top: -0.2rem;
    color: var(--ink-500);
    font-size: 0.82rem;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-chips span {
    border: 1px solid rgba(18, 18, 18, 0.14);
    border-radius: var(--radius-sm);
    padding: 0.42rem 0.75rem;
    font-size: 0.87rem;
    background: var(--nespresso-foam-white);
}

.category-chips a {
    border: 1px solid rgba(18, 18, 18, 0.14);
    border-radius: var(--radius-sm);
    padding: 0.42rem 0.75rem;
    font-size: 0.87rem;
    background: var(--nespresso-foam-white);
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.category-chips a:hover {
    background: var(--nespresso-dark-brown);
    border-color: var(--nespresso-dark-brown);
    color: var(--nespresso-foam-white);
}

.table-wrap {
    overflow-x: auto;
}

.cms-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.cms-table th,
.cms-table td {
    text-align: left;
    padding: 0.62rem 0.7rem;
    border-bottom: 1px solid rgba(18, 18, 18, 0.1);
    vertical-align: top;
}

.cms-table th {
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink-500);
}

.cms-table td a {
    color: var(--nespresso-dark-brown);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cms-table td button {
    border: 0;
    color: var(--nespresso-dark-red);
    background: transparent;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.meta {
    color: var(--ink-500);
    font-size: 0.84rem;
    letter-spacing: 0.015em;
    text-transform: uppercase;
}

.cta-block {
    margin-top: 0.35rem;
}

.article-layout {
    display: grid;
    gap: 1rem;
}

.article-content,
.article-sidebar {
    background: var(--nespresso-foam-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(18, 18, 18, 0.1);
    padding: 1.1rem;
}

.article-content img {
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    max-height: 520px;
    object-fit: cover;
    width: 100%;
}

.article-content p {
    margin-bottom: 0.95rem;
}

.article-sidebar ul {
    margin-top: 0.8rem;
    display: grid;
    gap: 0.45rem;
}

.inline-link {
    color: var(--nespresso-dark-brown);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.landing-grid {
    display: grid;
    gap: 1rem;
    align-items: start;
}

.landing-points {
    margin-top: 1rem;
    list-style: disc;
    margin-left: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

.landing-points li {
    margin-bottom: 0.35rem;
}

.landing-form-wrap {
    border-radius: var(--radius-md);
    background: var(--nespresso-foam-white);
    padding: 1rem;
    color: var(--ink-900);
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.tiny-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    border: 1px solid rgba(18, 18, 18, 0.15);
    border-radius: var(--radius-sm);
    padding: 0.2rem 0.55rem;
    font-size: 0.78rem;
    color: var(--ink-700);
    background: var(--nespresso-foam-white);
}

.tag-icon {
    width: 0.9rem;
    height: 0.9rem;
}

.sustainability-hero-grid .hero-visual {
    min-height: 280px;
}

.comparison-table th,
.comparison-table td {
    min-width: 130px;
}

.comparison-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: var(--nespresso-light-taupe);
}

.site-footer {
    background: var(--nespresso-dark-roast);
    color: var(--nespresso-foam-white);
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    gap: 1.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(216, 202, 185, 0.2);
}

.site-footer h2,
.site-footer h3 {
    color: var(--nespresso-foam-white);
    margin-bottom: 0.5rem;
}

.site-footer a {
    color: var(--nespresso-foam-white);
    transition: color var(--transition-fast);
}

.site-footer a:hover {
    color: var(--nespresso-light-yellow);
}

.footer-list {
    display: grid;
    gap: 0.3rem;
}

.footer-brand-invitation {
    margin-top: 1rem;
    margin-bottom: 0;
    color: var(--nespresso-light-yellow);
    font-size: 1rem;
}

.footer-meta {
    display: grid;
    gap: 0.25rem;
    padding-top: 1rem;
    color: var(--nespresso-foam-white);
    font-size: 0.88rem;
}

.footer-distributor {
    color: var(--nespresso-foam-white);
    margin-bottom: 0.45rem;
}

.footer-partner-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.55rem;
}

.footer-partner-brand span {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--nespresso-foam-white);
}

.footer-partner-brand img {
    width: auto;
    height: 24px;
    background: var(--true-white);
    border-radius: 4px;
    padding: 0.2rem 0.35rem;
}

.footer-trustmarks {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(216, 202, 185, 0.2);
}

.footer-trustmarks-title {
    margin-bottom: 0.55rem;
    color: var(--nespresso-foam-white);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-trustmark-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.footer-trustmark {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(244, 235, 223, 0.36);
    background: transparent;
    padding: 0.24rem 0.62rem;
    font-size: 0.79rem;
}

.footer-trustmark img {
    width: 0.95rem;
    height: 0.95rem;
    filter: brightness(0) invert(1);
    opacity: 0.86;
}

.cookie-banner {
    position: fixed;
    inset: auto 1rem 1rem;
    width: min(470px, calc(100% - 2rem));
    background: var(--nespresso-dark-roast);
    color: var(--nespresso-foam-white);
    border: 1px solid rgba(244, 235, 223, 0.35);
    border-radius: var(--radius-md);
    padding: 0.95rem;
    box-shadow: var(--shadow-hover);
    z-index: 1100;
}

.cookie-banner p {
    color: var(--nespresso-foam-white);
}

.cookie-actions {
    margin-top: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.cookie-banner .button-ghost {
    color: var(--nespresso-foam-white);
    border-color: rgba(244, 235, 223, 0.44);
    background: transparent;
}

.cookie-banner .button-ghost::before {
    background: rgba(255, 255, 255, 0.12);
}

.legal-content {
    max-width: 78ch;
    display: grid;
    gap: 0.8rem;
}

/* Reduced site palette: Deep Roast + Berry, with Foam White and Taupe neutrals. */
:root {
    --site-primary: var(--nespresso-dark-roast);
    --site-accent: var(--nespresso-dark-berry);
    --site-accent-soft: var(--nespresso-light-pink);
    --site-surface: var(--nespresso-foam-white);
    --site-surface-muted: var(--nespresso-light-taupe);
}

.brand-connector {
    border-block-color: var(--site-accent);
    background: var(--site-accent-soft);
}

.brand-tagline,
.brand-connector .button-brand-ghost {
    color: var(--site-accent);
}

.trust-bar,
.club-preview {
    background: var(--site-primary);
    border-color: var(--site-accent);
}

.trust-icon,
.trust-item:nth-child(2) .trust-icon,
.trust-item:nth-child(3) .trust-icon,
.trust-item:nth-child(4) .trust-icon {
    --trust-tint: var(--site-accent-soft);
}

.env-card,
.env-card:nth-child(1),
.env-card:nth-child(2),
.env-card:nth-child(3),
.value-card,
.value-card:nth-child(1),
.value-card:nth-child(2),
.value-card:nth-child(3),
.value-card:nth-child(4) {
    --card-accent: var(--site-primary);
    --card-tint: var(--site-surface);
}

.env-card,
.value-card {
    border-color: var(--site-primary);
}

.value-card {
    border-left-color: var(--site-accent);
}

.env-card .icon-orb,
.value-card .icon-orb,
.stat-card .mini-icon {
    border-color: var(--site-accent);
    background: var(--site-accent-soft);
}

.value-card .value-eyebrow,
.value-card .lyreco-note-brand {
    color: var(--site-primary);
}

.value-card .lyreco-inline-note,
.machine-quote,
.editorial-block {
    border-left-color: var(--site-accent);
}

.testimonial-carousel-card,
.testimonial-carousel-card:nth-child(1),
.testimonial-carousel-card:nth-child(2),
.testimonial-carousel-card:nth-child(3),
.testimonial-carousel-card:nth-child(4),
.testimonial-carousel-card:nth-child(5),
.testimonial-carousel-card:nth-child(6) {
    --testimonial-accent: var(--site-primary);
    --testimonial-tint: var(--site-surface);
}

.testimonial-carousel-card {
    border-color: var(--site-primary);
    border-top-color: var(--site-accent);
}

.testimonial-carousel-card::before {
    color: var(--site-accent-soft);
}

.testimonial-carousel-card figcaption::before,
.testimonial-carousel-dot.is-active {
    background: var(--site-accent);
    border-color: var(--site-accent);
}

.stat-card,
.stat-card:nth-child(1),
.stat-card:nth-child(2),
.stat-card:nth-child(3),
.stat-card:nth-child(4) {
    --stat-accent: var(--site-accent);
    background: var(--site-surface-muted);
    border-color: var(--site-primary);
    color: var(--nespresso-espresso-black);
}

.stat-card p,
.stat-card:nth-child(2) p,
.stat-card:nth-child(4) p,
.stat-card .stat-evidence,
.stat-card:nth-child(2) .stat-evidence,
.stat-card:nth-child(4) .stat-evidence {
    color: var(--nespresso-espresso-black);
}

.stat-card .stat-value,
.stat-card:nth-child(2) .stat-value,
.stat-card:nth-child(4) .stat-value {
    color: var(--site-primary);
}

.stat-card:nth-child(2) .mini-icon,
.stat-card:nth-child(4) .mini-icon {
    background: var(--site-accent-soft);
    filter: none;
}

.machine-card,
.machine-card:nth-child(1),
.machine-card:nth-child(2),
.machine-card:nth-child(3),
.coffee-card,
.coffee-card:nth-child(1),
.coffee-card:nth-child(2),
.coffee-card:nth-child(3),
.coffee-card:nth-child(4),
.coffee-card:nth-child(5),
.coffee-card:nth-child(6),
.blog-card,
.blog-card:nth-child(1),
.blog-card:nth-child(2),
.blog-card:nth-child(3),
.blog-card:nth-child(4),
.blog-card:nth-child(5),
.blog-card:nth-child(6) {
    --item-accent: var(--site-primary);
}

.machine-card,
.coffee-card,
.blog-card {
    border-color: var(--site-primary);
    border-top-color: var(--site-accent);
}

.machine-card > img,
.coffee-card > img,
.blog-card > img,
.blog-card img {
    background: var(--site-primary);
}

.brand-gradient-card,
.env-card,
.value-card,
.machine-card,
.coffee-card,
.blog-card {
    --active-brand-card-highlight: var(--site-accent-soft);
    border: 1px solid var(--brand-card-border);
    border-top: 1px solid var(--brand-card-border);
    border-left: 1px solid var(--brand-card-border);
    border-radius: var(--brand-card-radius);
    background: var(--active-brand-card-gradient, var(--brand-card-gradient));
    color: var(--nespresso-foam-white);
    box-shadow: none;
}

.brand-gradient-card-alt,
.value-card,
.blog-card {
    --active-brand-card-gradient: var(--brand-card-gradient-alt);
    --active-brand-card-media-gradient: var(--brand-card-media-gradient-alt);
    --active-brand-card-highlight: var(--nespresso-light-taupe);
}

.brand-gradient-card-blue,
.machine-card {
    --active-brand-card-gradient: var(--brand-card-gradient-blue);
    --active-brand-card-media-gradient: var(--brand-card-media-gradient-blue);
    --active-brand-card-highlight: var(--nespresso-light-blue);
}

.brand-gradient-card-green,
.coffee-card {
    --active-brand-card-gradient: var(--brand-card-gradient-green);
    --active-brand-card-media-gradient: var(--brand-card-media-gradient-green);
    --active-brand-card-highlight: var(--nespresso-light-sage);
}

.brand-gradient-card:hover,
.env-card:hover,
.value-card:hover,
.machine-card:hover,
.coffee-card:hover,
.blog-card:hover {
    border-color: rgba(244, 235, 223, 0.54);
    box-shadow: none;
}

.env-card h3,
.value-card h3,
.machine-card h2,
.machine-card h3,
.coffee-card h2,
.coffee-card h3,
.blog-card h2,
.blog-card h3,
.brand-gradient-card h2,
.brand-gradient-card h3 {
    color: var(--nespresso-foam-white);
}

.env-card p,
.value-card p,
.machine-card p,
.coffee-card p,
.blog-card p,
.machine-card li,
.brand-gradient-card p,
.brand-gradient-card li {
    color: rgba(244, 235, 223, 0.84);
}

.env-card .inline-link,
.value-card .inline-link,
.machine-card .inline-link,
.coffee-card .inline-link,
.blog-card .inline-link,
.machine-link-wrap,
.blog-card .button-secondary {
    color: var(--nespresso-foam-white);
}

.value-card .value-eyebrow,
.value-card .lyreco-note-brand,
.blog-card .meta,
.machine-rating,
.coffee-card .intensity {
    color: var(--active-brand-card-highlight, var(--site-accent-soft));
}

.value-card > .mini-icon {
    width: 2.15rem;
    height: 2.15rem;
    padding: 0.36rem;
    border: 1px solid rgba(244, 235, 223, 0.28);
    border-radius: var(--radius-sm);
    background: var(--active-brand-card-highlight, var(--site-accent-soft));
}

.machine-card .rating-icon {
    filter: brightness(0) invert(1);
    opacity: 0.76;
}

.value-card .lyreco-inline-note,
.machine-quote {
    border-left-color: var(--active-brand-card-highlight, var(--site-accent-soft));
    color: rgba(244, 235, 223, 0.9);
}

.spec-inline div {
    border-bottom-color: rgba(244, 235, 223, 0.16);
}

.spec-inline dt,
.spec-inline dd {
    color: rgba(244, 235, 223, 0.84);
}

.machine-card > img,
.coffee-card > img,
.blog-card > img,
.blog-card img {
    background: var(--active-brand-card-media-gradient, var(--brand-card-media-gradient));
}

.machine-badge,
.filter-summary {
    border-color: var(--site-primary);
    background: var(--site-accent-soft);
    color: var(--nespresso-espresso-black);
}

.process-item,
.process-item:nth-child(2),
.process-item:nth-child(3),
.process-item:nth-child(4) {
    --step-accent: var(--site-accent);
    border-color: var(--site-primary);
}

.process-item:nth-child(n+2)::before {
    color: var(--nespresso-espresso-black);
}

.recycling-preview {
    border-color: var(--site-primary);
    background: var(--site-surface-muted);
}

.recycling-preview .kicker,
.recycling-proof-title {
    color: var(--site-primary);
}

.recycling-preview .tiny-tag,
.recycling-proof {
    border-color: var(--site-accent);
}

.club-preview .kicker,
.club-preview .feature-list li::before,
.footer-brand-invitation {
    color: var(--site-accent-soft);
}

.club-preview .feature-list li::before {
    background: var(--site-accent);
}

.floating-consultation {
    border-color: var(--site-accent);
    background: var(--site-accent);
    color: var(--nespresso-foam-white);
}

[data-reveal] {
    opacity: 1;
    transform: none;
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.58s ease, transform 0.58s ease;
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 720px) {
    .hero-copy h1 {
        font-size: 5.8rem;
    }

    .hero-copy .lead {
        font-size: 2rem;
    }

    .brand-tagline {
        font-size: 2.2rem;
    }

    .stat-value {
        font-size: 4rem;
    }

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

    .hero-quick-form .checkbox-label,
    .hero-quick-form button {
        grid-column: 1 / -1;
    }

    .hero-brand-bridge {
        align-items: center;
    }

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

    .brand-layout-copy,
    .brand-layout-hero-image {
        grid-column: span 3;
        min-height: clamp(460px, 42vw, 640px);
    }

    .brand-layout-text-over,
    .brand-layout-image-first,
    .brand-layout-image-set {
        grid-column: span 2;
        min-height: clamp(480px, 42vw, 620px);
    }

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

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

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

    .testimonial-ribbon {
        --testimonial-columns: 2;
    }

    .testimonial-carousel-card {
        flex-basis: calc((100% - 1rem) / 2);
    }

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

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

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

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

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

    .site-form-wide label:last-of-type,
    .site-form-wide .form-step,
    .site-form-wide .checkbox-label,
    .site-form-wide button,
    .site-form-wide .form-note {
        grid-column: 1 / -1;
    }

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

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

    .article-layout {
        grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    }
}

@media (min-width: 960px) {
    .hero-copy h1 {
        font-size: 6.8rem;
    }

    .hero-copy .lead {
        font-size: 2.2rem;
    }

    .hero-brand-bridge {
        max-width: 92%;
    }

    .brand {
        max-width: none;
    }

    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }

    .trust-items {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        min-height: 56px;
    }

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

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

    .testimonial-ribbon {
        --testimonial-columns: 4;
    }

    .testimonial-carousel-card {
        flex-basis: calc((100% - 3rem) / 4);
    }

    .machine-grid,
    .coffee-grid,
    .blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

    .detail-layout {
        grid-template-columns: minmax(0, 1.4fr) minmax(340px, 0.8fr);
    }

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

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

    .coffee-filter-section .filters-chip-layout {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .machine-filter-section .filters-chip-layout {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .step-progress {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .landing-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
    }
}

@media (max-width: 959px) {
    .recycling-preview,
    .club-preview {
        grid-template-columns: 1fr;
    }

    .recycling-proof {
        padding-top: 1rem;
        padding-left: 0;
        border-top: 1px solid var(--site-accent);
        border-left: 0;
    }

    .club-preview .feature-list {
        grid-template-columns: 1fr;
    }

    .club-preview .button {
        justify-self: start;
    }
}

@media (max-width: 719px) {
    .brand {
        flex-basis: auto;
        min-width: 0;
    }

    .brand-lockup span {
        font-size: 0.66rem;
    }

    .site-nav.is-minimal .button-cta {
        max-width: min(13rem, 58vw);
        height: 44px;
        padding-inline: 0.8rem;
        white-space: normal;
        line-height: 1.08;
        font-size: 0.76rem;
    }

    .hero-brand-bridge {
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.7rem;
    }

    .hero-partner-logo {
        width: 102px;
    }

    .brochure-drawer {
        --brochure-drawer-width: calc(100vw - 2.5rem);
        top: auto;
        bottom: 1rem;
        transform: none;
    }

    .brochure-drawer.is-open .brochure-drawer-panel {
        transform: translateX(0);
    }

    .brochure-drawer-toggle {
        --brochure-tab-height: 13rem;
        font-size: 0.72rem;
    }

    .brochure-drawer-panel {
        max-height: min(82vh, 600px);
        padding: 1.35rem;
    }

    .filter-group {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.45rem;
        padding: 0.7rem;
    }

    .filter-group legend {
        font-size: 0.9rem;
    }

    .filter-chip {
        width: 100%;
        min-height: 38px;
        padding: 0.34rem 0.52rem;
        font-size: 0.82rem;
    }

    .form-column {
        padding: 1rem;
    }

    .recycling-preview,
    .club-preview {
        padding: 1.15rem;
    }

    .recycling-preview h2 {
        max-width: none;
    }

    .club-preview .button {
        width: 100%;
    }

    .cookie-banner {
        inset: auto 0.75rem 0.75rem;
        width: calc(100% - 1.5rem);
        padding: 0.85rem;
    }

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

    .cookie-banner .button {
        width: 100%;
        min-width: 0;
        height: 44px;
        padding-inline: 0.55rem;
        white-space: normal;
        line-height: 1.08;
        font-size: 0.72rem;
    }

    .floating-consultation {
        right: 0.75rem;
        left: auto;
        bottom: 0.6rem;
        width: 46px;
        height: 46px;
        min-height: 46px;
        padding: 0;
        border-radius: var(--radius-sm);
        justify-content: center;
    }

    .floating-consultation .floating-label {
        display: none;
    }

    .floating-consultation .floating-icon {
        width: 1.1rem;
        height: 1.1rem;
    }

    body.has-cookie-banner .floating-consultation {
        opacity: 0;
        pointer-events: none;
        transform: translateY(8px);
    }
}

@media (min-width: 1280px) {
    .hero-copy h1 {
        font-size: 7.6rem;
    }

    .section-heading h2 {
        max-width: 12ch;
    }

    .stat-value {
        font-size: 4.8rem;
    }

    .site-header .container {
        width: 90vw;
    }

    .brand {
        max-width: none;
    }

    .header-inner {
        min-height: 88px;
    }

    .header-offset {
        height: 88px;
    }

    .menu-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        border: 0;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 1 1 auto;
        flex-wrap: nowrap;
        gap: 0.55rem;
        padding: 0;
        overflow: visible;
    }

    .nav-dropdown {
        display: block;
    }

    .nav-dropdown::after {
        content: '';
        position: absolute;
        top: 100%;
        right: 0;
        width: max(100%, 220px);
        height: 0.65rem;
    }

    .nav-dropdown-menu {
        position: absolute;
        top: calc(100% + 0.55rem);
        right: 0;
        z-index: 20;
    }

    .nav-dropdown:hover .nav-caret {
        transform: rotate(225deg) translateY(-1px);
    }

    .nav-dropdown:hover .nav-dropdown-menu {
        display: grid;
    }

    .nav-link {
        flex: 0 0 auto;
        padding-inline: 0.72rem;
        font-size: 0.96rem;
    }

    .button-cta {
        font-size: 0.9rem;
        padding-inline: 1.2rem;
    }
}

/* Interactive home hero */
.hero-experience {
    --hero-header-height: 0px;
    --hero-scroll-travel: 360svh;
    --hero-title-opacity: 1;
    --hero-title-shift: 0px;
    --hero-title-scale: 1;
    --hero-lead-opacity: 1;
    --hero-lead-shift: 0px;
    --hero-lead-scale: 1;
    --hero-what-opacity: 1;
    --hero-what-shift: 0px;
    --hero-what-scale: 1;
    --hero-scene-shift: 0px;
    --hero-scene-scale: 1;
    min-height: calc((100svh - var(--hero-header-height)) + var(--hero-scroll-travel));
    display: block;
    isolation: isolate;
    overflow: visible;
    padding-block: 0;
    background-color: var(--site-primary);
    background-image: none;
}

.hero-experience::before {
    content: none;
}

.hero-experience::after {
    content: none;
}

.hero-pin {
    position: sticky;
    top: var(--hero-header-height);
    min-height: calc(100svh - var(--hero-header-height));
    display: grid;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    padding-block: clamp(3.2rem, 7vw, 7rem);
    background-image: var(--hero-home-image);
    background-position: center 44%;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-pin::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(71, 36, 38, 0.46);
    pointer-events: none;
}

.hero-pin::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 42%;
    pointer-events: none;
}

.hero-scene {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    transform: translate3d(0, var(--hero-scene-shift), 0) scale(var(--hero-scene-scale));
    transform-origin: center;
    transition: transform 0.12s linear;
    will-change: transform;
}

.hero-scene::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(71, 36, 38, 0.16);
    pointer-events: none;
}

.hero-scene-canvas {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero-experience.is-scene-ready .hero-scene-canvas {
    opacity: 0.86;
}

.hero-experience .hero-pin > .container {
    z-index: 2;
}

.hero-experience .hero-grid {
    min-height: clamp(560px, 72vh, 720px);
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    justify-items: center;
}

.hero-experience .hero-copy {
    display: grid;
    align-content: center;
    justify-items: center;
    width: 100%;
    max-width: 100%;
    min-height: min(680px, calc(100svh - var(--hero-header-height) - 8rem));
    margin-inline: auto;
    text-align: center;
    pointer-events: none;
}

.js .hero-experience .hero-copy[data-reveal],
.js .hero-experience .hero-copy[data-reveal].is-visible {
    transform: none;
    opacity: 1;
}

.hero-scroll-stage {
    grid-area: 1 / 1;
    align-self: center;
    will-change: transform, opacity;
}

.hero-title-stage {
    width: 100%;
    opacity: var(--hero-title-opacity);
    transform: translate3d(0, var(--hero-title-shift), 0) scale(var(--hero-title-scale));
    transform-origin: center;
}

.hero-lead-stage {
    opacity: var(--hero-lead-opacity);
    transform: translate3d(0, var(--hero-lead-shift), 0) scale(var(--hero-lead-scale));
    transform-origin: center;
}

.hero-what-stage {
    opacity: var(--hero-what-opacity);
    transform: translate3d(0, var(--hero-what-shift), 0) scale(var(--hero-what-scale));
    transform-origin: center;
}

.hero-experience.is-what-stage .hero-what-stage {
    pointer-events: auto;
}

.hero-experience .kicker {
    min-height: 46px;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.15rem;
    padding: 0 1.45rem;
    border: 1px solid rgba(244, 235, 223, 0.84);
    background: rgba(244, 235, 223, 0.04);
    color: var(--nespresso-foam-white);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.hero-experience .hero-copy h1 {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    color: var(--nespresso-foam-white);
    font-size: clamp(3.9rem, 7.55vw, 7.75rem);
    line-height: 0.86;
    text-align: left;
    text-wrap: auto;
}

.hero-title-composition {
    display: grid;
    justify-items: center;
    gap: clamp(0.08rem, 0.5vw, 0.5rem);
}

.hero-title-line {
    display: flex;
    align-items: baseline;
    box-sizing: border-box;
    width: fit-content;
    max-width: 100%;
    gap: 0.18em;
    color: var(--nespresso-foam-white);
    font-size: 1em;
    line-height: 0.86;
    white-space: nowrap;
}

.hero-title-line-kicker {
    justify-content: flex-start;
    transform: translateX(clamp(-1.1rem, -1.1vw, -0.35rem));
}

.hero-title-line-main {
    justify-content: center;
}

.hero-title-line-bridge {
    justify-content: flex-start;
    transform: translateX(clamp(-2.6rem, -3.8vw, -1.2rem));
}

.hero-title-line-anchor {
    justify-content: flex-start;
    transform: translateX(clamp(1.2rem, 4.2vw, 4.8rem));
}

.hero-title-word {
    display: inline-block;
    transform-origin: center bottom;
}

.hero-experience .hero-copy .lead {
    max-width: 34ch;
    margin-inline: auto;
    color: var(--nespresso-foam-white);
    font-size: clamp(1.42rem, 2.5vw, 2.15rem);
    line-height: 1.16;
}

.hero-scroll-tagline {
    max-width: none;
    margin-inline: auto;
    color: var(--nespresso-foam-white);
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 11vw, 10.5rem);
    font-weight: 700;
    line-height: 0.78;
    white-space: nowrap;
    text-transform: uppercase;
    text-wrap: nowrap;
}

.hero-experience .hero-brand-bridge {
    max-width: min(100%, 650px);
    margin: 1.35rem auto 0;
    border-color: rgba(214, 154, 45, 0.76);
    background: rgba(71, 36, 38, 0.78);
    backdrop-filter: blur(8px);
}

.hero-experience .hero-actions {
    margin-top: 2.5rem;
    justify-content: center;
}

.js .hero-experience {
    --hero-lead-opacity: 0;
    --hero-lead-shift: 108px;
    --hero-lead-scale: 0.98;
    --hero-what-opacity: 0;
    --hero-what-shift: 124px;
    --hero-what-scale: 0.92;
}

.js .hero-experience .hero-title-stage {
    opacity: 0;
    transform: translateY(24px);
}

.js .hero-experience .hero-title-word {
    opacity: 0;
    transform: translateY(0.58em) rotateX(22deg);
}

.js .hero-experience.is-loaded .hero-title-stage,
.js .hero-experience.is-loaded .hero-lead-stage,
.js .hero-experience.is-loaded .hero-what-stage {
    transition: none;
}

.js .hero-experience.is-loaded .hero-title-stage {
    opacity: var(--hero-title-opacity);
    transform: translate3d(0, var(--hero-title-shift), 0) scale(var(--hero-title-scale));
}

.js .hero-experience.is-loaded .hero-title-word {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.2, 0.7, 0.2, 1);
    transition-delay: var(--word-delay);
}

@media (min-width: 960px) {
    .hero-experience .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-experience .hero-copy {
        padding-bottom: clamp(1rem, 4vw, 3.4rem);
    }
}

@media (min-width: 1280px) {
    .hero-experience {
        --hero-header-height: 0px;
        min-height: calc((100svh - var(--hero-header-height)) + var(--hero-scroll-travel));
    }

    .hero-experience .hero-grid {
        min-height: clamp(620px, 76vh, 780px);
    }
}

@media (max-width: 959px) {
    .hero-experience {
        --hero-scroll-travel: 320svh;
    }

    .hero-experience .hero-grid {
        min-height: calc(100svh - var(--hero-header-height) - 5.5rem);
        gap: 0;
        align-items: start;
    }

    .hero-experience .hero-copy {
        min-height: calc(100svh - var(--hero-header-height) - 6rem);
    }
}

@media (max-width: 719px) {
    .hero-pin {
        padding-block: 2.4rem 3.1rem;
    }

    .hero-experience .hero-copy h1 {
        width: min(100%, 540px);
        font-size: clamp(2.35rem, 11.2vw, 4.5rem);
    }

    .hero-title-line {
        width: 100%;
        flex-wrap: wrap;
        white-space: normal;
    }

    .hero-title-line-kicker {
        transform: none;
        font-size: 1em;
    }

    .hero-title-line-main {
        justify-content: flex-start;
        font-size: 1em;
    }

    .hero-title-line-bridge {
        justify-content: flex-start;
        transform: none;
        font-size: 1em;
    }

    .hero-title-line-anchor {
        transform: none;
        font-size: 1em;
    }

    .hero-experience .hero-copy .lead {
        font-size: 1.45rem;
    }

    .hero-scroll-tagline {
        font-size: clamp(2.7rem, 13vw, 5.6rem);
    }

    .hero-experience .hero-brand-bridge {
        width: 100%;
        backdrop-filter: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-scene,
    .hero-experience .hero-copy,
    .hero-scene-canvas,
    .hero-scroll-stage,
    .js .hero-experience .hero-title-word {
        transition: none;
    }

    .hero-experience {
        min-height: auto;
        overflow: hidden;
    }

    .hero-pin {
        position: relative;
        top: auto;
        min-height: calc(100svh - var(--hero-header-height));
    }

    .hero-experience .hero-copy,
    .js .hero-experience .hero-copy[data-reveal],
    .js .hero-experience .hero-copy[data-reveal].is-visible,
    .hero-scroll-stage,
    .js .hero-experience .hero-title-word {
        transform: none;
        opacity: 1;
    }

    .hero-experience .hero-copy {
        display: block;
        min-height: auto;
        pointer-events: auto;
    }

    .hero-scroll-stage {
        grid-area: auto;
    }

    .hero-lead-stage,
    .hero-what-stage {
        margin-top: 1.4rem;
    }
}

/* Header brand lock-up */
.site-header .brand {
    display: inline-grid;
    justify-items: center;
    align-items: center;
    gap: 0.38rem;
    flex: 0 0 auto;
    text-align: center;
    line-height: 1;
}

.site-header .brand-monogram {
    width: 50px;
    height: 50px;
    background: var(--nespresso-espresso-black);
}

.site-header .brand-monogram img {
    width: 70%;
    height: 70%;
    filter: brightness(0) invert(1);
}

.site-header .brand-lockup {
    gap: 0;
    line-height: 1;
}

.site-header .brand-lockup span {
    color: var(--nespresso-espresso-black);
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 500;
    line-height: 1;
}

@media (max-width: 719px) {
    .site-header .brand {
        gap: 0.3rem;
    }

    .site-header .brand-monogram {
        width: 44px;
        height: 44px;
    }

    .site-header .brand-lockup span {
        font-size: 0.72rem;
    }
}

/* Corporate homepage iteration */
.home-corporate {
    --site-primary: #1B1512;
    --site-accent: var(--nespresso-dark-brown);
    --site-accent-soft: #E6D7C7;
    --site-surface: #FFFDF9;
    --site-surface-muted: #F6F1EA;
    --site-border: rgba(27, 21, 18, 0.14);
    background: var(--site-surface);
}

.home-corporate .site-header {
    background: rgba(255, 253, 249, 0.96);
    border-bottom-color: var(--site-border);
}

.home-corporate .button,
.home-corporate .kicker {
    letter-spacing: 0;
}

.home-corporate .button-primary,
.home-corporate .button-cta {
    background: var(--site-primary);
    border-color: var(--site-primary);
    color: var(--true-white);
}

.home-corporate .button-secondary {
    background: var(--site-surface-muted);
    border-color: var(--site-primary);
    color: var(--site-primary);
}

.home-corporate .button-ghost {
    border-color: rgba(27, 21, 18, 0.28);
    color: var(--site-primary);
}

.home-corporate .section {
    padding-block: 4.5rem;
}

.home-corporate h1,
.home-corporate h2,
.home-corporate h3 {
    text-transform: none;
}

.home-corporate h1 {
    font-size: 2.65rem;
    line-height: 0.94;
}

.home-corporate h2 {
    font-size: 2.35rem;
    line-height: 0.98;
}

.home-corporate h3 {
    font-size: 1.3rem;
    line-height: 1.05;
}

.home-corporate .lead {
    color: rgba(27, 21, 18, 0.72);
    font-size: 1.12rem;
    line-height: 1.45;
}

.home-corporate .kicker {
    color: var(--site-accent);
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
}

.home-hero {
    border-bottom: 1px solid var(--site-border);
    background: var(--site-surface-muted);
    color: var(--site-primary);
}

.home-hero-grid {
    display: grid;
    align-items: center;
    gap: 2rem;
    min-height: 680px;
    padding-block: 2rem;
}

.home-hero-copy {
    display: grid;
    gap: 1rem;
    max-width: 700px;
}

.js .home-corporate [data-reveal],
.home-corporate [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
}

.home-hero-copy h1 {
    max-width: 13ch;
}

.home-hero-copy .lead {
    max-width: 58ch;
}

.home-hero-actions {
    margin-top: 0.35rem;
}

.home-hero-assurance {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.6rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--site-border);
}

.home-hero-assurance li {
    display: grid;
    gap: 0.2rem;
}

.home-hero-assurance strong {
    color: var(--site-primary);
    font-size: 0.96rem;
}

.home-hero-assurance span {
    color: rgba(27, 21, 18, 0.68);
    font-size: 0.92rem;
    line-height: 1.35;
}

.home-hero-visual {
    position: relative;
    min-width: 0;
}

.home-hero-image {
    position: relative;
    min-height: 360px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: var(--radius-md);
    background: var(--true-white);
}

.home-hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.88) contrast(0.98);
}

.home-hero-image::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: rgba(255, 253, 249, 0.88);
}

.home-hero-machine {
    position: absolute;
    right: 4%;
    bottom: -1%;
    z-index: 1;
    width: min(52%, 300px);
    max-height: 74%;
    object-fit: contain;
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.22));
}

.home-hero-caption {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    max-width: min(420px, calc(100% - 2rem));
    border: 1px solid rgba(27, 21, 18, 0.16);
    border-radius: var(--radius-md);
    background: rgba(255, 253, 249, 0.94);
    color: var(--site-primary);
    padding: 0.85rem;
}

.home-hero-caption .brand-monogram {
    width: 42px;
    height: 42px;
    background: var(--site-primary);
    flex: 0 0 auto;
}

.home-hero-caption .brand-monogram img {
    filter: brightness(0) invert(1);
}

.home-hero-caption p {
    color: var(--site-accent);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
}

.home-hero-caption strong {
    display: block;
    margin-top: 0.18rem;
    font-size: 0.96rem;
    line-height: 1.22;
}

.home-proof-strip {
    border-bottom: 1px solid var(--site-border);
    background: var(--true-white);
}

.home-proof-grid {
    display: grid;
    gap: 0;
}

.home-proof-grid article {
    display: grid;
    align-content: center;
    gap: 0.28rem;
    min-height: 88px;
    border-bottom: 1px solid var(--site-border);
    padding-block: 1rem;
}

.home-proof-grid span {
    color: var(--site-accent);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
}

.home-proof-grid strong {
    color: var(--site-primary);
    font-size: 1rem;
    line-height: 1.24;
}

.home-section-header {
    display: grid;
    gap: 0.75rem;
    max-width: 760px;
    margin-bottom: 2rem;
}

.home-section-header h2 {
    max-width: 16ch;
}

.home-section-header p:not(.kicker) {
    max-width: 64ch;
    color: rgba(27, 21, 18, 0.7);
    line-height: 1.45;
}

.home-section-header-row {
    max-width: none;
}

.home-pathways {
    background: var(--site-surface);
}

.home-pathway-grid {
    display: grid;
    gap: 1rem;
}

.home-pathway-card {
    display: grid;
    align-content: start;
    gap: 0.75rem;
    min-height: 270px;
    border: 1px solid var(--site-border);
    border-radius: var(--radius-md);
    background: var(--true-white);
    padding: 1.35rem;
}

.home-pathway-card .mini-icon {
    width: 1.8rem;
    height: 1.8rem;
    margin-bottom: 0.25rem;
}

.home-pathway-card p {
    color: rgba(27, 21, 18, 0.68);
    line-height: 1.42;
}

.home-pathway-card .inline-link {
    margin-top: auto;
}

.home-programme {
    border-block: 1px solid var(--site-border);
    background: var(--site-surface-muted);
}

.home-programme-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.home-programme-copy > p:not(.kicker) {
    max-width: 62ch;
    color: rgba(27, 21, 18, 0.7);
    line-height: 1.45;
}

.home-benefit-list {
    display: grid;
    gap: 0;
    margin-top: 1.4rem;
    border-top: 1px solid var(--site-border);
}

.home-benefit-list article {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.9rem;
    border-bottom: 1px solid var(--site-border);
    padding-block: 1rem;
}

.home-benefit-list .mini-icon {
    width: 1.65rem;
    height: 1.65rem;
    margin-top: 0.15rem;
}

.home-benefit-list p {
    margin-top: 0.35rem;
    color: rgba(27, 21, 18, 0.68);
    line-height: 1.42;
}

.home-programme-media {
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: var(--radius-md);
    background: var(--true-white);
}

.home-programme-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.home-machine-section {
    background: var(--site-surface);
}

.home-machine-grid {
    display: grid;
    gap: 1rem;
}

.home-machine-card {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--site-border);
    border-radius: var(--radius-md);
    background: var(--true-white);
}

.home-machine-card figure {
    display: grid;
    place-items: center;
    min-height: 250px;
    background: var(--site-surface-muted);
    border-bottom: 1px solid var(--site-border);
    padding: 1rem;
}

.home-machine-card figure img {
    width: min(78%, 310px);
    aspect-ratio: 1;
    object-fit: contain;
}

.home-machine-card-body {
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
}

.home-machine-type {
    margin-bottom: 0.35rem;
    color: var(--site-accent);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.home-machine-card-body p:not(.home-machine-type) {
    margin-top: 0.45rem;
    color: rgba(27, 21, 18, 0.68);
    line-height: 1.4;
}

.home-machine-specs {
    display: grid;
    gap: 0.45rem;
}

.home-machine-specs div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--site-border);
    padding-top: 0.5rem;
}

.home-machine-specs dt,
.home-machine-specs dd {
    color: rgba(27, 21, 18, 0.72);
    font-size: 0.9rem;
}

.home-machine-specs dt {
    font-weight: 700;
}

.home-machine-specs dd {
    text-align: right;
}

.home-coffee-range {
    background: var(--site-primary);
    color: var(--true-white);
}

.home-coffee-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.home-coffee-copy h2,
.home-coffee-copy p,
.home-coffee-copy li {
    color: var(--true-white);
}

.home-coffee-copy .kicker {
    color: var(--site-accent-soft);
}

.home-coffee-copy > p {
    max-width: 56ch;
    line-height: 1.45;
    opacity: 0.84;
}

.home-coffee-list {
    margin-block: 1.2rem 1.4rem;
    margin-left: 0;
    list-style: none;
}

.home-coffee-list li {
    position: relative;
    padding-left: 1rem;
    line-height: 1.38;
}

.home-coffee-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.54em;
    width: 0.36rem;
    height: 0.36rem;
    background: var(--site-accent-soft);
}

.home-capsule-display {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    background: rgba(255, 253, 249, 0.08);
    padding: 1rem;
}

.home-capsule-display img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: var(--radius-md);
    background: var(--site-surface-muted);
    padding: 0.55rem;
}

.home-service-section {
    border-bottom: 1px solid var(--site-border);
    background: var(--site-surface-muted);
}

.home-service-steps {
    display: grid;
    gap: 1rem;
    counter-reset: home-service;
}

.home-service-steps li {
    position: relative;
    display: grid;
    align-content: start;
    gap: 0.65rem;
    min-height: 240px;
    border: 1px solid var(--site-border);
    border-radius: var(--radius-md);
    background: var(--true-white);
    padding: 1.2rem;
}

.home-service-steps li::before {
    counter-increment: home-service;
    content: counter(home-service);
    width: 2rem;
    height: 2rem;
    display: grid;
    place-items: center;
    margin-bottom: 0.25rem;
    background: var(--site-primary);
    color: var(--true-white);
    font-size: 0.9rem;
    font-weight: 700;
}

.home-service-steps .mini-icon {
    position: absolute;
    right: 1.1rem;
    top: 1.25rem;
    width: 1.45rem;
    height: 1.45rem;
}

.home-service-steps p {
    color: rgba(27, 21, 18, 0.68);
    line-height: 1.42;
}

.home-final-cta {
    background: var(--site-primary);
    color: var(--true-white);
}

.home-final-cta-inner {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

.home-final-cta h2,
.home-final-cta p {
    color: var(--true-white);
}

.home-final-cta .kicker {
    color: var(--site-accent-soft);
}

.home-final-cta p:not(.kicker) {
    max-width: 62ch;
    line-height: 1.45;
    opacity: 0.84;
}

.home-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.home-final-cta .button-primary {
    background: var(--true-white);
    border-color: var(--true-white);
    color: var(--site-primary);
}

.home-final-cta .button-ghost {
    border-color: rgba(255, 255, 255, 0.44);
    color: var(--true-white);
}

.home-corporate .inline-link {
    color: var(--site-primary);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.22em;
}

.home-coffee-range .inline-link,
.home-final-cta .inline-link {
    color: var(--true-white);
}

@media (min-width: 720px) {
    .home-corporate h1 {
        font-size: 3.55rem;
    }

    .home-corporate h2 {
        font-size: 3rem;
    }

    .home-hero-assurance {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .home-proof-grid article {
        border-right: 1px solid var(--site-border);
        padding-inline: 1.1rem;
    }

    .home-pathway-grid,
    .home-machine-grid,
    .home-service-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-section-header-row {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: end;
    }
}

@media (min-width: 960px) {
    .home-corporate h1 {
        font-size: 4.35rem;
    }

    .home-hero-grid {
        grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    }

    .home-proof-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-proof-grid article {
        border-bottom: 0;
    }

    .home-pathway-grid,
    .home-machine-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-programme-grid,
    .home-coffee-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    }

    .home-service-steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .home-final-cta-inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }
}

@media (max-width: 719px) {
    .home-corporate .section {
        padding-block: 3.2rem;
    }

    .home-corporate h1 {
        font-size: 2.25rem;
    }

    .home-corporate h2 {
        font-size: 2.05rem;
    }

    .home-hero-grid {
        min-height: auto;
        gap: 1.35rem;
        padding-block: 2rem 2.4rem;
    }

    .home-hero-copy {
        gap: 0.85rem;
    }

    .home-hero-copy .lead {
        font-size: 1rem;
        line-height: 1.38;
    }

    .home-hero-assurance {
        display: none;
    }

    .home-hero-actions .button,
    .home-final-actions .button {
        width: 100%;
        white-space: normal;
        min-height: 46px;
        height: auto;
        padding-block: 0.75rem;
        line-height: 1.15;
    }

    .home-hero-image {
        min-height: 250px;
        aspect-ratio: 4 / 3;
    }

    .home-hero-machine {
        width: min(58%, 230px);
    }

    .home-hero-caption {
        align-items: flex-start;
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        max-width: none;
    }

    .home-pathway-card,
    .home-service-steps li {
        min-height: 0;
    }

    .home-capsule-display {
        gap: 0.4rem;
        padding: 0.65rem;
    }

    .home-capsule-display img {
        padding: 0.35rem;
    }
}
