﻿:root {
    --primary-color: #24583f;
    --primary-dark: #173f2c;
    --secondary-color: #c58b3a;
    --accent-color: #8faf65;
    --coffee-brown: #6f4e37;
    --cream-color: #f7f3ea;
    --light-color: #f8faf8;
    --dark-color: #1f2924;
    --muted-color: #6b756f;
    --white-color: #ffffff;
    --danger-color: #c0392b;
    --success-color: #218c5a;
    --shadow: 0 18px 45px rgba(31, 41, 36, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--dark-color);
    background: var(--white-color);
    font-family: "Noto Sans", Arial, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(197, 139, 58, 0.75);
    outline-offset: 3px;
}

img {
    height: auto;
    max-width: 100%;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 20;
    padding: 10px 14px;
    color: var(--white-color);
    background: var(--primary-dark);
    border-radius: 8px;
}

.skip-link:focus {
    top: 12px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

.top-bar {
    color: var(--white-color);
    background: var(--primary-dark);
    font-size: 0.9rem;
}

.top-bar__inner,
.navbar__inner,
.hero-grid,
.process-grid,
.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.top-bar__inner {
    padding: 8px 0;
}

.language-selector {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.language-selector select {
    min-height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 4px 32px 4px 12px;
    color: var(--white-color);
    background: var(--primary-dark);
    font: inherit;
}

.language-selector option {
    color: var(--dark-color);
    background: var(--white-color);
}

.origin-hero {
    position: relative;
    min-height: 620px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white-color);
    isolation: isolate;
}

.origin-hero__image,
.origin-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.origin-hero__image {
    object-fit: cover;
    z-index: -2;
}

.origin-hero__overlay {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(23, 63, 44, 0.72), rgba(23, 63, 44, 0.38), rgba(23, 63, 44, 0.08)),
        linear-gradient(0deg, rgba(23, 63, 44, 0.42), rgba(23, 63, 44, 0.04));
}

.origin-hero__content {
    max-width: 780px;
    padding: 120px 0 92px;
}

.origin-hero__content h1 {
    margin: 0 0 20px;
    font-size: clamp(2.5rem, 6vw, 5.4rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.origin-hero__content p {
    max-width: 660px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.16rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.origin-hero__button {
    color: var(--white-color);
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.origin-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.origin-showcase-card,
.origin-process-card {
    overflow: hidden;
    border: 1px solid rgba(36, 88, 63, 0.12);
    border-radius: 28px;
    background: var(--white-color);
    box-shadow: var(--shadow);
}

.origin-showcase-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.origin-showcase-card__media {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    overflow: hidden;
}

.origin-showcase-card__media img {
    display: block;
    transition: transform 0.35s ease;
}

.origin-showcase-card__media:hover img,
.origin-showcase-card__media:focus-visible img {
    transform: scale(1.04);
}

.origin-showcase-card__zoom {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--white-color);
    background: rgba(23, 63, 44, 0.78);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.origin-showcase-card__media:hover .origin-showcase-card__zoom,
.origin-showcase-card__media:focus-visible .origin-showcase-card__zoom {
    opacity: 1;
}

.origin-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.origin-lightbox[hidden] {
    display: none;
}

.origin-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 28, 22, 0.78);
    backdrop-filter: blur(4px);
}

.origin-lightbox__dialog {
    position: relative;
    z-index: 1;
    width: min(960px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border-radius: 24px;
    background: var(--white-color);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    padding: 18px;
}

.origin-lightbox__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: var(--white-color);
    background: rgba(23, 63, 44, 0.88);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.origin-lightbox__image {
    display: block;
    width: 100%;
    max-height: calc(100vh - 140px);
    object-fit: contain;
    border-radius: 16px;
    background: #101814;
}

.origin-lightbox__caption {
    margin: 14px 4px 4px;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.05rem;
}

body.lightbox-open {
    overflow: hidden;
}

.origin-showcase-card__body {
    padding: 26px;
}

.origin-showcase-card h3 {
    margin: 0 0 12px;
    color: var(--primary-dark);
    font-size: 1.7rem;
}

.origin-showcase-card p,
.origin-process-card p {
    color: var(--muted-color);
}

.origin-focus {
    display: grid;
    gap: 14px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(36, 88, 63, 0.12);
}

.origin-focus strong {
    color: var(--primary-color);
}

.origin-focus-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.origin-focus-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted-color);
    font-size: 0.95rem;
    line-height: 1.45;
}

.origin-focus-icon {
    display: inline-grid;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    place-items: center;
    border-radius: 12px;
    color: var(--primary-color);
    background: rgba(36, 88, 63, 0.08);
}

.origin-focus-icon svg {
    width: 20px;
    height: 20px;
}

.origin-process-grid {
    display: grid;
    gap: 24px;
}

.origin-process-card {
    display: grid;
    grid-template-columns: minmax(260px, 42%) 1fr;
    align-items: stretch;
}

.origin-process-card__media {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    min-height: 270px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    overflow: hidden;
}

.origin-process-card img,
.origin-process-card__media img {
    width: 100%;
    height: 100%;
    min-height: 270px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.origin-process-card__media:hover img,
.origin-process-card__media:focus-visible img {
    transform: scale(1.04);
}

.origin-process-card__media:hover .origin-showcase-card__zoom,
.origin-process-card__media:focus-visible .origin-showcase-card__zoom {
    opacity: 1;
}

.origin-process-card div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px;
}

.origin-process-card h3 {
    margin: 0 0 12px;
    color: var(--primary-dark);
    font-size: 1.65rem;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(36, 88, 63, 0.12);
    backdrop-filter: blur(12px);
}

.navbar__inner {
    min-height: 76px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand__logo {
    display: block;
    width: auto;
    height: 52px;
    max-width: min(240px, 52vw);
    object-fit: contain;
}

.brand__mark {
    display: grid;
    width: 42px;
    height: 42px;
    color: var(--white-color);
    background: var(--primary-color);
    border-radius: 50%;
    place-items: center;
}

.brand__text {
    font-size: 1.25rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-menu a:not(.btn) {
    color: var(--muted-color);
    font-weight: 600;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    border: 1px solid rgba(36, 88, 63, 0.18);
    border-radius: 10px;
    padding: 10px 14px;
    color: var(--primary-color);
    background: var(--white-color);
    font-weight: 700;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
}

.btn-primary {
    color: var(--white-color);
    background: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-dark);
}

.btn-outline {
    color: var(--primary-color);
    border-color: rgba(36, 88, 63, 0.28);
    background: var(--white-color);
}

.hero-section {
    position: relative;
    isolation: isolate;
    padding: 110px 0;
    min-height: min(78vh, 760px);
    display: flex;
    align-items: center;
    background-color: #2a3d32;
    background-image:
        linear-gradient(120deg, rgba(18, 32, 27, 0.72) 12%, rgba(27, 48, 39, 0.58) 48%, rgba(27, 48, 39, 0.28) 100%),
        url("../images/home/coffee-plant-berry.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-section .hero-grid {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-section .eyebrow {
    color: #e2c08a;
}

.hero-section h1,
.hero-section .hero-copy p {
    color: #ffffff;
}

.hero-section h1 {
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.hero-section .hero-copy p {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-section .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
    background: transparent;
}

.hero-section .btn-outline:hover,
.hero-section .btn-outline:focus-visible {
    color: var(--dark-color);
    border-color: #ffffff;
    background: #ffffff;
}

.hero-section .hero-card {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(248, 250, 248, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(10, 18, 14, 0.28);
}

.hero-grid {
    align-items: stretch;
}

.hero-copy,
.hero-card {
    flex: 1;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0 0 14px;
    color: var(--dark-color);
    line-height: 1.15;
}

h1 {
    max-width: 760px;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin: 0 0 18px;
    color: var(--muted-color);
}

.hero-copy p {
    max-width: 680px;
    font-size: 1.15rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-card,
.info-card,
.origin-card,
.stat-card,
.cta-panel {
    border: 1px solid rgba(36, 88, 63, 0.12);
    border-radius: 24px;
    background: var(--white-color);
    box-shadow: var(--shadow);
}

.hero-card {
    max-width: 420px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: center;
}

.hero-card__eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-card h2 {
    margin-bottom: 20px;
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
}

.hero-card__features {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-card__features li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px;
    border-radius: 14px;
    background: rgba(36, 88, 63, 0.05);
    border: 1px solid rgba(36, 88, 63, 0.08);
}

.hero-card__icon {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 12px;
    color: var(--primary-color);
    background: rgba(36, 88, 63, 0.1);
}

.hero-card__icon svg {
    width: 22px;
    height: 22px;
}

.hero-card__features strong {
    display: block;
    margin-bottom: 2px;
    color: var(--dark-color);
    font-size: 0.98rem;
    line-height: 1.3;
}

.hero-card__features span {
    display: block;
    color: var(--muted-color);
    font-size: 0.88rem;
    line-height: 1.4;
}

.hero-card ul,
.site-footer ul {
    margin: 0;
    padding-left: 20px;
}

.hero-card__features {
    padding-left: 0;
}

.site-footer li + li {
    margin-top: 10px;
}

.section {
    padding: 78px 0;
}

.section-muted {
    background: var(--light-color);
}

.section-dark {
    color: var(--white-color);
    background: var(--primary-dark);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-heading--compact {
    margin-bottom: 22px;
}

.section-heading--compact p {
    margin-bottom: 0;
}

.card-grid,
.stats-grid,
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.card-grid--origins {
    align-items: start;
}

.info-card,
.origin-card {
    padding: 28px;
}

.origin-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 22px 22px 20px;
    background:
        radial-gradient(circle at top right, rgba(197, 139, 58, 0.08), transparent 42%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(245, 241, 232, 0.92));
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.origin-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    content: "";
}

.origin-card:hover {
    transform: translateY(-4px);
    border-color: rgba(36, 88, 63, 0.22);
    box-shadow: 0 16px 36px rgba(23, 63, 44, 0.12);
}

.origin-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.origin-card__label {
    color: var(--secondary-color);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.origin-card h3 {
    margin: 0 0 4px;
    color: var(--primary-dark);
    font-size: 1.35rem;
    line-height: 1.2;
}

.origin-card__region {
    margin: 0 0 10px;
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
}

.origin-card__summary {
    margin: 0 0 16px;
    color: var(--muted-color);
    font-size: 0.92rem;
    line-height: 1.5;
}

.origin-card__flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 38px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(36, 88, 63, 0.12);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 4px 12px rgba(15, 28, 22, 0.08);
}

.origin-card__flag img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.origin-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--primary-color);
    font-size: 0.88rem;
    font-weight: 800;
    transition: gap 0.2s ease, color 0.2s ease;
}

.origin-card__link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.origin-card__link:hover,
.origin-card__link:focus-visible {
    color: var(--primary-dark);
    gap: 10px;
}

.origin-card__link:hover svg,
.origin-card__link:focus-visible svg {
    transform: translateX(2px);
}

.info-card--media {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.info-card__media {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #1b2621;
    cursor: zoom-in;
}

.info-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.info-card__media:hover img,
.info-card__media:focus-visible img {
    transform: scale(1.04);
}

.info-card__zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(23, 63, 44, 0.88);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.info-card__media:hover .info-card__zoom,
.info-card__media:focus-visible .info-card__zoom {
    opacity: 1;
}

.info-card__body {
    padding: 22px 24px 24px;
}

.info-card__body p:last-child {
    margin-bottom: 0;
}

.process-grid {
    align-items: flex-start;
}

.process-grid > * {
    flex: 1;
}

.process-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: process;
}

.process-list li {
    position: relative;
    margin-bottom: 14px;
    padding: 18px 18px 18px 58px;
    border-radius: 18px;
    background: var(--light-color);
    counter-increment: process;
}

.process-list li::before {
    position: absolute;
    left: 18px;
    top: 16px;
    display: grid;
    width: 28px;
    height: 28px;
    color: var(--white-color);
    background: var(--primary-color);
    border-radius: 50%;
    content: counter(process);
    font-weight: 800;
    place-items: center;
}

.process-list--modern {
    position: relative;
    display: grid;
    gap: 14px;
}

.process-list--modern::before {
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 35px;
    width: 2px;
    background: linear-gradient(180deg, rgba(36, 88, 63, 0.28), rgba(197, 139, 58, 0.45));
    content: "";
}

.process-list--modern li {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin-bottom: 0;
    padding: 18px 20px;
    border: 1px solid rgba(36, 88, 63, 0.12);
    border-radius: 18px;
    background: var(--white-color);
    box-shadow: 0 10px 24px rgba(23, 63, 44, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.process-list--modern li:hover {
    transform: translateX(4px);
    border-color: rgba(36, 88, 63, 0.22);
    box-shadow: 0 14px 30px rgba(23, 63, 44, 0.12);
}

.process-list--modern li::before {
    display: none;
}

.process-list__icon {
    display: inline-grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 14px;
    color: var(--primary-color);
    background: linear-gradient(160deg, rgba(36, 88, 63, 0.12), rgba(197, 139, 58, 0.14));
    border: 1px solid rgba(36, 88, 63, 0.1);
}

.process-list__icon svg {
    width: 24px;
    height: 24px;
}

.process-list__content {
    display: grid;
    gap: 4px;
}

.process-list__step {
    color: var(--secondary-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.process-list__content strong {
    color: var(--dark-color);
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 700;
}

.process-list--modern li:nth-child(1) .process-list__icon {
    color: #24583f;
}

.process-list--modern li:nth-child(2) .process-list__icon {
    color: #1f4f7a;
}

.process-list--modern li:nth-child(3) .process-list__icon {
    color: #6b3f2a;
}

.process-list--modern li:nth-child(4) .process-list__icon {
    color: #24583f;
}

.stat-card {
    padding: 30px;
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
}

.stat-card strong {
    display: block;
    font-size: 2.4rem;
}

.stat-card span {
    color: rgba(255, 255, 255, 0.78);
}

.cta-panel {
    padding: 34px;
    background: var(--cream-color);
}

.cta-panel > div {
    flex: 1 1 auto;
    min-width: 0;
}

.btn-cta {
    flex: 0 0 auto;
    gap: 10px;
    min-height: 52px;
    padding: 14px 26px;
    border-radius: 14px;
    white-space: nowrap;
    color: var(--white-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 10px 24px rgba(36, 88, 63, 0.28);
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-cta__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.btn-cta:hover,
.btn-cta:focus-visible {
    color: var(--white-color);
    background: linear-gradient(135deg, var(--primary-dark), #143528);
    box-shadow: 0 14px 30px rgba(23, 63, 44, 0.34);
    transform: translateY(-2px);
}

.btn-cta:hover .btn-cta__icon,
.btn-cta:focus-visible .btn-cta__icon {
    transform: translateX(3px);
}

.cta-panel.origin-cta {
    background:
        linear-gradient(135deg, rgba(36, 88, 63, 0.96), rgba(23, 63, 44, 0.94)),
        radial-gradient(circle at 90% 10%, rgba(197, 139, 58, 0.28), transparent 32%);
    border-color: transparent;
    box-shadow: var(--shadow);
}

.cta-panel.origin-cta .eyebrow,
.cta-panel.origin-cta h2,
.cta-panel.origin-cta p {
    color: var(--white-color);
}

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: var(--dark-color);
}

.site-footer h2 {
    color: var(--white-color);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.site-footer .footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: 8px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: underline;
    text-decoration-color: rgba(196, 165, 116, 0.55);
    text-underline-offset: 0.22em;
    text-decoration-thickness: 1px;
    font-weight: 600;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.footer-links a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c4a574;
    flex-shrink: 0;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #ffffff;
    text-decoration-color: #c4a574;
}

.footer-links a.email-highlight {
    text-decoration-color: rgba(59, 140, 255, 0.65);
}

.footer-links a.email-highlight::before {
    background: #3b8cff;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 14px;
}

.footer-brand__logo {
    display: block;
    width: auto;
    height: 48px;
    max-width: 220px;
    object-fit: contain;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
    padding: 54px 0 28px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0;
}

.footer-bottom__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 24px;
}

.footer-bottom p {
    margin: 0;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-decoration: none;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
    color: #c4a574;
    text-decoration: underline;
}

.page-hero {
    padding: 86px 0;
    background:
        linear-gradient(135deg, rgba(36, 88, 63, 0.9), rgba(23, 63, 44, 0.94)),
        radial-gradient(circle at top right, rgba(197, 139, 58, 0.3), transparent 36%);
}

.page-hero--about {
    position: relative;
    isolation: isolate;
    min-height: min(68vh, 620px);
    display: flex;
    align-items: center;
    padding: 100px 0 92px;
    background-color: #2a3d32;
    background-image:
        linear-gradient(105deg, rgba(12, 22, 18, 0.72) 0%, rgba(18, 32, 27, 0.58) 38%, rgba(27, 48, 39, 0.32) 68%, rgba(27, 48, 39, 0.12) 100%),
        url("../images/about/about-background.png");
    background-position: center 42%;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-hero--about .container {
    position: relative;
    z-index: 1;
}

.page-hero--about .eyebrow {
    color: #e2c08a;
}

.page-hero h1,
.page-hero p {
    color: var(--white-color);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
}

.page-hero--about h1 {
    max-width: 720px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.page-hero--about p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.page-hero--products {
    position: relative;
    isolation: isolate;
    min-height: min(62vh, 580px);
    display: flex;
    align-items: center;
    padding: 96px 0 88px;
    background-color: #2a3d32;
    background-image:
        linear-gradient(108deg, rgba(14, 24, 20, 0.72) 0%, rgba(20, 36, 30, 0.58) 34%, rgba(27, 48, 39, 0.32) 62%, rgba(27, 48, 39, 0.12) 100%),
        url("../images/products/products-hero-background.png");
    background-position: center 48%;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-hero--products .container {
    position: relative;
    z-index: 1;
}

.page-hero--products .eyebrow {
    color: #e2c08a;
}

.page-hero--products h1 {
    max-width: 700px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.page-hero--products p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.page-hero--sustainability {
    position: relative;
    isolation: isolate;
    min-height: min(66vh, 600px);
    display: flex;
    align-items: center;
    padding: 98px 0 90px;
    background-color: #243830;
    background-image:
        linear-gradient(106deg, rgba(11, 20, 16, 0.74) 0%, rgba(16, 30, 24, 0.58) 36%, rgba(24, 42, 34, 0.3) 66%, rgba(27, 48, 39, 0.1) 100%),
        url("../images/sustainability/sustainability-hero-background.png");
    background-position: center 44%;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-hero--sustainability .container {
    position: relative;
    z-index: 1;
}

.page-hero--sustainability .eyebrow {
    color: #e2c08a;
}

.page-hero--sustainability h1 {
    max-width: 720px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.page-hero--sustainability p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.page-hero--traceability {
    position: relative;
    isolation: isolate;
    min-height: min(66vh, 600px);
    display: flex;
    align-items: center;
    padding: 98px 0 90px;
    background-color: #2a3d32;
    background-image:
        linear-gradient(106deg, rgba(11, 20, 16, 0.74) 0%, rgba(16, 30, 24, 0.58) 36%, rgba(24, 42, 34, 0.3) 66%, rgba(27, 48, 39, 0.1) 100%),
        url("../images/traceability/traceability-hero-background.png");
    background-position: center 46%;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-hero--traceability .container {
    position: relative;
    z-index: 1;
}

.page-hero--traceability .eyebrow {
    color: #e2c08a;
}

.page-hero--traceability h1 {
    max-width: 720px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.page-hero--traceability p {
    max-width: 640px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.page-hero--contact {
    position: relative;
    isolation: isolate;
    min-height: min(64vh, 580px);
    display: flex;
    align-items: center;
    padding: 96px 0 88px;
    background-color: #2a3d32;
    background-image:
        linear-gradient(108deg, rgba(14, 24, 20, 0.72) 0%, rgba(20, 36, 30, 0.58) 34%, rgba(27, 48, 39, 0.32) 62%, rgba(27, 48, 39, 0.12) 100%),
        url("../images/contact/contact-hero-background.png");
    background-position: center 48%;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-hero--contact .container {
    position: relative;
    z-index: 1;
}

.page-hero--contact .eyebrow {
    color: #e2c08a;
}

.page-hero--contact h1 {
    max-width: 700px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.page-hero--contact p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.narrow-container {
    max-width: 840px;
}

.split-grid,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 32px;
    align-items: start;
}

.panel-card,
.contact-form,
.origin-detail-card {
    border: 1px solid rgba(36, 88, 63, 0.12);
    border-radius: 24px;
    background: var(--white-color);
    box-shadow: var(--shadow);
}

.panel-card,
.contact-form {
    padding: 30px;
}

.contact-form {
    position: relative;
    overflow: hidden;
    padding-top: 34px;
    border: 1px solid rgba(36, 88, 63, 0.14);
    background:
        radial-gradient(circle at top left, rgba(36, 88, 63, 0.08), transparent 38%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(245, 241, 232, 0.94)),
        var(--white-color);
    box-shadow: 0 16px 36px rgba(23, 63, 44, 0.1);
}

.contact-form::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    content: "";
}

.contact-form__header {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    margin-bottom: 22px;
}

.contact-form__badge {
    display: inline-grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 16px;
    color: var(--primary-color);
    background: rgba(36, 88, 63, 0.1);
    box-shadow: inset 0 0 0 1px rgba(36, 88, 63, 0.14);
}

.contact-form__badge svg {
    width: 26px;
    height: 26px;
}

.contact-form__title {
    min-width: 0;
}

.contact-form__eyebrow {
    display: inline-block;
    margin-bottom: 4px;
    color: var(--secondary-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-form h2 {
    margin: 0 0 6px;
    color: var(--primary-dark);
    font-size: 1.42rem;
    line-height: 1.2;
}

.contact-form__lead {
    margin: 0;
    color: var(--muted-color);
    font-size: 0.92rem;
    line-height: 1.5;
}

.contact-form__fields {
    display: grid;
    gap: 16px;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.contact-form .form-row {
    margin-bottom: 0;
}

.contact-form .form-row label {
    margin-bottom: 7px;
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-form .form-row input,
.contact-form .form-row textarea {
    border: 1px solid rgba(36, 88, 63, 0.14);
    border-radius: 14px;
    padding: 13px 15px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: inset 0 1px 2px rgba(23, 63, 44, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form .form-row input::placeholder,
.contact-form .form-row textarea::placeholder {
    color: rgba(107, 117, 111, 0.82);
}

.contact-form .form-row input:hover,
.contact-form .form-row textarea:hover {
    border-color: rgba(36, 88, 63, 0.24);
    background: var(--white-color);
}

.contact-form .form-row input:focus,
.contact-form .form-row textarea:focus {
    border-color: var(--secondary-color);
    background: var(--white-color);
    box-shadow: 0 0 0 4px rgba(197, 139, 58, 0.14);
}

.contact-form .form-row--message textarea {
    min-height: 148px;
    resize: vertical;
}

.contact-form .admin-alert {
    margin-bottom: 18px;
}

.contact-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(36, 88, 63, 0.1);
}

.contact-form .form-note {
    margin: 0;
    max-width: 26rem;
    color: var(--muted-color);
    font-size: 0.88rem;
    line-height: 1.45;
}

.contact-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 24px;
    border: 0;
    border-radius: 14px;
    color: var(--white-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 10px 24px rgba(36, 88, 63, 0.28);
    font: inherit;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form__submit-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
    background: linear-gradient(135deg, var(--primary-dark), #143528);
    box-shadow: 0 14px 30px rgba(23, 63, 44, 0.34);
    transform: translateY(-2px);
}

.contact-form__submit:hover .contact-form__submit-icon,
.contact-form__submit:focus-visible .contact-form__submit-icon {
    transform: translateX(3px);
}

.buyer-card {
    border: 1px solid rgba(36, 88, 63, 0.14);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(245, 241, 232, 0.92)),
        var(--white-color);
    box-shadow: 0 16px 36px rgba(23, 63, 44, 0.1);
}

.buyer-card__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.buyer-card h3 {
    margin-bottom: 18px;
    color: var(--primary-dark);
    font-size: 1.45rem;
}

.buyer-card__list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.buyer-card__list li {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(36, 88, 63, 0.1);
    background: rgba(36, 88, 63, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.buyer-card__list li:hover {
    transform: translateY(-2px);
    border-color: rgba(36, 88, 63, 0.22);
    background: rgba(36, 88, 63, 0.07);
}

.buyer-card__icon {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 12px;
    color: var(--primary-color);
    background: rgba(36, 88, 63, 0.1);
}

.buyer-card__icon svg {
    width: 22px;
    height: 22px;
}

.buyer-card__list li:nth-child(1) .buyer-card__icon {
    color: #8b5a2b;
    background: rgba(197, 139, 58, 0.16);
}

.buyer-card__list li:nth-child(2) .buyer-card__icon {
    color: #24583f;
    background: rgba(36, 88, 63, 0.12);
}

.buyer-card__list li:nth-child(3) .buyer-card__icon {
    color: #1f4f7a;
    background: rgba(59, 140, 255, 0.12);
}

.buyer-card__list li:nth-child(4) .buyer-card__icon {
    color: #6b3f2a;
    background: rgba(139, 90, 43, 0.14);
}

.buyer-card__list span:last-child {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 0.98rem;
    line-height: 1.35;
}

.guidance-card {
    position: relative;
    overflow: hidden;
    padding: 22px 20px 18px;
    border: 1px solid rgba(36, 88, 63, 0.14);
    background:
        radial-gradient(circle at top right, rgba(197, 139, 58, 0.08), transparent 42%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(245, 241, 232, 0.94)),
        var(--white-color);
    box-shadow: 0 12px 28px rgba(23, 63, 44, 0.08);
}

.guidance-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    content: "";
}

.guidance-card__header {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.guidance-card__badge {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    color: var(--secondary-color);
    background: rgba(197, 139, 58, 0.16);
    box-shadow: inset 0 0 0 1px rgba(197, 139, 58, 0.22);
}

.guidance-card__badge svg {
    width: 20px;
    height: 20px;
}

.guidance-card__title {
    min-width: 0;
}

.guidance-card__eyebrow {
    display: inline-block;
    margin-bottom: 2px;
    color: var(--secondary-color);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.guidance-card h2 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 1.2rem;
    line-height: 1.2;
}

.guidance-card__intro {
    margin: 0 0 12px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(36, 88, 63, 0.1);
    background: rgba(36, 88, 63, 0.05);
    color: var(--muted-color);
    font-size: 0.88rem;
    line-height: 1.45;
}

.guidance-card__list-label {
    margin: 0 0 6px;
    color: var(--primary-dark);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.guidance-card__list {
    display: grid;
    gap: 0;
    margin: 0 0 12px;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(36, 88, 63, 0.1);
    background: rgba(255, 255, 255, 0.72);
    list-style: none;
}

.guidance-card__list li {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    padding: 6px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.guidance-card__list li + li {
    border-top: 1px solid rgba(36, 88, 63, 0.08);
}

.guidance-card__list li:hover {
    transform: none;
    box-shadow: none;
}

.guidance-card__icon {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 8px;
    color: var(--primary-color);
    background: rgba(36, 88, 63, 0.1);
}

.guidance-card__icon svg {
    width: 15px;
    height: 15px;
}

.guidance-card__list li:nth-child(1) .guidance-card__icon {
    color: #24583f;
    background: rgba(36, 88, 63, 0.12);
}

.guidance-card__list li:nth-child(2) .guidance-card__icon {
    color: #1f4f7a;
    background: rgba(59, 140, 255, 0.12);
}

.guidance-card__list li:nth-child(3) .guidance-card__icon {
    color: #6b3f2a;
    background: rgba(139, 90, 43, 0.14);
}

.guidance-card__list li:nth-child(4) .guidance-card__icon {
    color: #8b5a2b;
    background: rgba(197, 139, 58, 0.16);
}

.guidance-card__list span:last-child {
    color: var(--dark-color);
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.3;
}

.guidance-card__cta {
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(197, 139, 58, 0.24);
    background: linear-gradient(145deg, rgba(23, 63, 44, 0.96), rgba(36, 88, 63, 0.92));
    color: rgba(255, 255, 255, 0.92);
}

.guidance-card__cta-label {
    display: block;
    margin-bottom: 2px;
    color: var(--secondary-color);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.guidance-card__cta-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    line-height: 1.35;
}

.guidance-card__email-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(197, 139, 58, 0.45);
    color: var(--white-color) !important;
    background: rgba(197, 139, 58, 0.18);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none !important;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.guidance-card__email-btn:hover,
.guidance-card__email-btn:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(197, 139, 58, 0.7);
    background: rgba(197, 139, 58, 0.28);
    color: var(--white-color) !important;
    text-decoration: none !important;
}

.guidance-card__email-icon {
    display: inline-grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.12);
}

.guidance-card__email-icon svg {
    width: 14px;
    height: 14px;
}

.check-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 30px;
}

.contact-email {
    margin: 22px 0 0;
    font-weight: 700;
}

.office-card__email {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    color: inherit;
    font-weight: inherit;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.office-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(36, 88, 63, 0.12);
    border-radius: 16px;
    padding: 16px;
    background:
        linear-gradient(180deg, rgba(245, 241, 232, 0.45), rgba(255, 255, 255, 0.98)),
        var(--white-color);
    box-shadow: 0 8px 20px rgba(23, 63, 44, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.office-card::before {
    position: absolute;
    top: 0;
    inset-inline: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    content: "";
}

.office-card:hover {
    transform: translateY(-3px);
    border-color: rgba(36, 88, 63, 0.22);
    box-shadow: 0 12px 28px rgba(23, 63, 44, 0.11);
}

.office-card__top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.office-card__flag {
    width: 46px;
    height: 32px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(36, 88, 63, 0.12);
    background: rgba(36, 88, 63, 0.06);
    box-shadow: 0 2px 8px rgba(15, 28, 22, 0.06);
}

.office-card__flag img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-card__country {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    padding: 4px 10px;
    border-radius: 999px;
    color: var(--secondary-color);
    background: rgba(197, 139, 58, 0.12);
    border: 1px solid rgba(197, 139, 58, 0.18);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.2;
}

html:not([lang="en"]) .office-card__country {
    letter-spacing: 0;
    text-transform: none;
    font-size: 0.74rem;
}

.office-card__name {
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(36, 88, 63, 0.1);
    color: var(--primary-dark);
    font-size: clamp(0.92rem, 1.8vw, 1rem);
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-wrap: balance;
}

.office-card__details {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted-color);
}

.office-card__details li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(36, 88, 63, 0.04);
    border: 1px solid rgba(36, 88, 63, 0.08);
    list-style: none;
}

.office-card__details li + li {
    margin-top: 0;
}

.office-card__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    max-width: 32px;
    max-height: 32px;
    border-radius: 9px;
    color: var(--primary-color);
    background: rgba(36, 88, 63, 0.1);
}

.office-card__icon svg {
    display: block;
    width: 17px;
    height: 17px;
    max-width: 17px;
    max-height: 17px;
    flex-shrink: 0;
}

.office-card__value {
    flex: 1;
    min-width: 0;
    color: var(--dark-color);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: start;
}

.office-card__phones {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    unicode-bidi: isolate;
}

.office-card__sep {
    color: rgba(36, 88, 63, 0.45);
}

.office-card__details a {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.88rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.office-card__details li > span:last-child:not(.office-card__icon):not(.office-card__phones) {
    color: var(--dark-color);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.45;
}

.footer-offices {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    padding: 22px 0 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-office {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.04);
    min-width: 0;
}

.footer-office__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-office__flag {
    display: inline-flex;
    width: 34px;
    height: 24px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
}

.footer-office__flag img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-office__header strong {
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-office__name,
.footer-office__address {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-office__name {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.footer-office__phones {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.footer-office__sep {
    color: rgba(255, 255, 255, 0.45);
}

.footer-office__phone {
    display: inline-block;
    color: #7eb6ff;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
}

.footer-office__phone:hover,
.footer-office__phone:focus-visible {
    color: #a8d0ff;
    text-decoration: underline;
}

.check-list li::before {
    position: absolute;
    left: 0;
    top: 2px;
    display: grid;
    width: 20px;
    height: 20px;
    color: var(--white-color);
    background: var(--success-color);
    border-radius: 50%;
    content: "✓";
    font-size: 0.78rem;
    font-weight: 800;
    place-items: center;
}

.origin-list {
    display: grid;
    gap: 24px;
}

.origin-detail-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: 28px;
    padding: 30px;
}

.origin-focus {
    padding: 24px;
    border-radius: 18px;
    background: var(--cream-color);
}

.form-row {
    margin-bottom: 18px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-weight: 700;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border: 1px solid rgba(36, 88, 63, 0.22);
    border-radius: 14px;
    padding: 12px 14px;
    color: var(--dark-color);
    background: var(--white-color);
    font: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(197, 139, 58, 0.16);
}

.form-note {
    font-size: 0.92rem;
}

.catalogue-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.catalogue-filters,
.product-card,
.product-summary-card,
.product-gallery,
.product-copy {
    border: 1px solid rgba(36, 88, 63, 0.12);
    border-radius: 24px;
    background: var(--white-color);
    box-shadow: var(--shadow);
}

.catalogue-filters {
    position: sticky;
    top: 98px;
    overflow: hidden;
    padding: 22px 20px 20px;
    border: 1px solid rgba(36, 88, 63, 0.14);
    background:
        radial-gradient(circle at top right, rgba(197, 139, 58, 0.08), transparent 40%),
        linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(245, 241, 232, 0.94));
    box-shadow: 0 16px 36px rgba(23, 63, 44, 0.1);
}

.catalogue-filters::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    content: "";
}

.catalogue-filters__header {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.catalogue-filters__badge {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 12px;
    color: var(--primary-color);
    background: rgba(36, 88, 63, 0.1);
    box-shadow: inset 0 0 0 1px rgba(36, 88, 63, 0.12);
}

.catalogue-filters__badge svg {
    width: 22px;
    height: 22px;
}

.catalogue-filters__title {
    min-width: 0;
}

.catalogue-filters__eyebrow {
    display: inline-block;
    margin-bottom: 2px;
    color: var(--secondary-color);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.catalogue-filters h2 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 1.2rem;
    line-height: 1.2;
}

.catalogue-filters__form {
    display: grid;
    gap: 12px;
}

.catalogue-filters .form-row {
    margin-bottom: 0;
}

.catalogue-filters .form-row label {
    margin-bottom: 6px;
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.catalogue-filters .form-row input,
.catalogue-filters .form-row select {
    width: 100%;
    border: 1px solid rgba(36, 88, 63, 0.14);
    border-radius: 12px;
    padding: 11px 14px;
    color: var(--dark-color);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 1px 2px rgba(23, 63, 44, 0.04);
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.catalogue-filters .form-row input::placeholder {
    color: rgba(107, 117, 111, 0.82);
}

.catalogue-filters .form-row input:hover,
.catalogue-filters .form-row select:hover {
    border-color: rgba(36, 88, 63, 0.24);
    background: var(--white-color);
}

.catalogue-filters .form-row input:focus,
.catalogue-filters .form-row select:focus {
    border-color: var(--secondary-color);
    background: var(--white-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(197, 139, 58, 0.14);
}

.catalogue-filters__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    margin-top: 4px;
    padding-top: 14px;
    border-top: 1px solid rgba(36, 88, 63, 0.1);
}

.catalogue-filters__apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 11px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(36, 88, 63, 0.22);
    font-size: 0.92rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.catalogue-filters__apply svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.catalogue-filters__apply:hover,
.catalogue-filters__apply:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(23, 63, 44, 0.28);
}

.catalogue-filters__apply:hover svg,
.catalogue-filters__apply:focus-visible svg {
    transform: translateX(2px);
}

.catalogue-filters__clear {
    min-height: 46px;
    padding: 11px 16px;
    border-radius: 12px;
    font-size: 0.92rem;
}

.form-row select {
    width: 100%;
    border: 1px solid rgba(36, 88, 63, 0.22);
    border-radius: 14px;
    padding: 12px 14px;
    color: var(--dark-color);
    background: var(--white-color);
    font: inherit;
}

.filter-actions,
.catalogue-toolbar,
.pagination-bar,
.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.catalogue-toolbar {
    margin-bottom: 18px;
}

.catalogue-toolbar p {
    margin: 0;
    font-weight: 700;
}

.loading-indicator {
    color: var(--secondary-color);
    font-weight: 700;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(36, 88, 63, 0.22);
    box-shadow: 0 22px 44px rgba(23, 63, 44, 0.14);
}

.product-card__media {
    display: block;
    position: relative;
    overflow: hidden;
}

.product-card img,
.related-product-image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--cream-color);
    transition: transform 0.35s ease;
}

.product-card:hover img {
    transform: scale(1.04);
}

.product-card__badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    color: var(--primary-dark);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 14px rgba(15, 28, 22, 0.14);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 22px 20px;
}

.product-card__body h2 {
    margin-bottom: 8px;
    font-size: 1.12rem;
    line-height: 1.35;
}

.product-card__body h2 a {
    color: inherit;
    text-decoration: none;
}

.product-card__body h2 a:hover,
.product-card__body h2 a:focus-visible {
    color: var(--primary-color);
}

.product-card__body p {
    margin-bottom: 14px;
    font-size: 0.92rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.product-card__chip {
    padding: 6px 11px;
    border-radius: 999px;
    color: var(--primary-dark);
    background: rgba(36, 88, 63, 0.08);
    border: 1px solid rgba(36, 88, 63, 0.1);
    font-size: 0.78rem;
    font-weight: 700;
}

.product-card__footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(36, 88, 63, 0.1);
}

.product-card__price {
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-product {
    min-height: 40px;
    padding: 9px 16px;
    border: 0;
    border-radius: 10px;
    color: var(--white-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(36, 88, 63, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-product:hover,
.btn-product:focus-visible {
    color: var(--white-color);
    background: linear-gradient(135deg, var(--primary-dark), #143528);
    box-shadow: 0 10px 22px rgba(23, 63, 44, 0.28);
    transform: translateY(-1px);
}

.product-meta,
.spec-list {
    display: grid;
    gap: 10px;
    margin: 18px 0;
}

.product-meta div,
.spec-list div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(36, 88, 63, 0.1);
    padding-bottom: 8px;
}

.product-meta dt,
.spec-list dt {
    color: var(--muted-color);
    font-weight: 700;
}

.product-meta dd,
.spec-list dd {
    margin: 0;
    text-align: right;
}

.empty-state {
    grid-column: 1 / -1;
    border: 1px dashed rgba(36, 88, 63, 0.28);
    border-radius: 24px;
    padding: 36px;
    text-align: center;
}

.pagination-bar {
    margin-top: 24px;
}

.pagination-bar button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.product-detail-grid,
.product-detail-layout {
    display: grid;
    gap: 30px;
}

.product-detail-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    align-items: center;
}

.product-detail-layout {
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
}

.product-summary-card,
.product-gallery,
.product-copy {
    padding: 28px;
}

.product-gallery img {
    width: 100%;
    border-radius: 18px;
    background: var(--cream-color);
}

.lot-card {
    display: grid;
    gap: 4px;
    border-bottom: 1px solid rgba(36, 88, 63, 0.12);
    padding: 14px 0;
}

.lot-card:last-child {
    border-bottom: 0;
}

.lot-card span {
    color: var(--muted-color);
}

:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
}

a.email-highlight,
.office-card__details a.email-highlight,
.contact-email a.email-highlight,
.site-footer a.email-highlight {
    display: inline !important;
    margin-left: 4px;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: #1d6fd8 !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    font-weight: 800 !important;
    text-decoration: underline !important;
}

a.email-highlight:hover,
a.email-highlight:focus-visible,
.office-card__details a.email-highlight:hover,
.office-card__details a.email-highlight:focus-visible,
.contact-email a.email-highlight:hover,
.contact-email a.email-highlight:focus-visible,
.site-footer a.email-highlight:hover,
.site-footer a.email-highlight:focus-visible {
    color: #3b8cff !important;
    background: transparent !important;
    background-color: transparent !important;
    text-decoration: underline !important;
}

