@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@100;200;300;400;500;600;700&family=Saira:wght@100;200;300;400;500;600;700&display=swap");

/* =========================================================
   1. DESIGN TOKENS
========================================================= */

:root {
    /* Typography */
    --font-heading: "Saira", "Segoe UI", Arial, sans-serif;
    --font-body: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    --font-subheading: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;

    --fs-h1: clamp(2.4rem, 3.2vw, 3.9rem);
    --fs-h2: clamp(1.9rem, 2.35vw, 2.75rem);
    --fs-h3: clamp(1.45rem, 1.75vw, 2rem);
    --fs-h4: clamp(1.2rem, 1.35vw, 1.55rem);
    --fs-h5: 1.0625rem;
    --fs-h6: 0.975rem;

    --fs-body-lg: 1.0625rem;
    --fs-body: 1rem;
    --fs-body-sm: 0.9rem;
    --fs-caption: 0.8125rem;

    /* Colors */
    --color-primary: #005e20;
    --color-primary-hover: #004a19;

    --color-text: #223126;
    --color-text-soft: #536257;
    --color-text-muted: #6f7c73;
    --color-text-faint: #8a958e;

    --color-bg: #ffffff;
    --color-bg-soft: #f7f8f5;
    --color-bg-muted: #f3f3f0;
    --color-bg-dark: #111111;

    --color-border: rgba(28, 39, 30, 0.12);
    --color-border-soft: rgba(28, 39, 30, 0.08);
    --color-border-strong: rgba(28, 39, 30, 0.18);

    --color-success-soft: rgba(0, 94, 32, 0.08);
    --color-focus: rgba(0, 94, 32, 0.22);

    /* Layout */
    --container-max: 85%;
    --container-max-wide: 90%;
    --content-max: 760px;
    --content-max-narrow: 560px;

    --section-space-sm: 3.5rem;
    --section-space-md: 5rem;
    --section-space-lg: 6.5rem;

    --navbar-height: 94px;
    --navbar-side-padding: 2.75rem;
    --navbar-line-bottom: 18px;
    --logo-max-height: 48px;
    --logo-gap-width: 270px;
    --sidebar-width: 340px;

    /* Radius / Shadow */
    --radius-none: 0;
    --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.10);

    /* Motion */
    --transition-fast: 0.18s ease;
    --transition-base: 0.24s ease;

    /* Hero tokens for shared page layers */
    --hero-min-height: 100vh;
    --hero-overlay-dark: rgba(0, 0, 0, 0.74);
    --hero-overlay-mid: rgba(0, 0, 0, 0.58);
    --hero-overlay-soft: rgba(0, 0, 0, 0.35);
    --hero-overlay-fade: rgba(0, 0, 0, 0.22);

    --hero-text-color: #ffffff;
    --hero-text-muted: rgba(255, 255, 255, 0.82);
    --hero-line-color: rgba(255, 255, 255, 0.55);

    --hero-copy-max: 900px;
    --hero-padding-top: 180px;
    --hero-padding-bottom: 80px;

    /* Floating Actions */
    --floating-action-size: 42px;
    --floating-action-gap: 10px;
    --floating-action-offset-x: 30px;
    --floating-action-offset-y: 30px;

    /* Bootstrap bridge */
    --bs-primary: var(--color-primary);
    --bs-primary-rgb: 0, 94, 32;
    --bs-body-font-family: var(--font-body);
    --bs-body-font-size: 1rem;
    --bs-body-color: var(--color-text-soft);
    --bs-body-bg: var(--color-bg);

    --bs-heading-color: var(--color-text);
    --bs-link-color: var(--color-primary);
    --bs-link-hover-color: var(--color-primary-hover);

    --bs-border-color: var(--color-border);
    --bs-border-radius: 0;
    --bs-border-radius-sm: 0;
    --bs-border-radius-lg: 0;
    --bs-border-radius-xl: 0;
    --bs-border-radius-2xl: 0;
    --bs-border-radius-pill: 0;

    /* Brand Colors */
    --brand-green-strong: rgba(0, 94, 32, 0.96);
    --brand-green-mid: rgba(0, 82, 28, 0.84);
    --brand-green-soft: rgba(0, 74, 25, 0.76);
    --brand-green-deep: rgba(0, 55, 21, 0.88);

    --color-fendt: var(--color-primary);
    --color-valtra: #000;
    --color-geri: #014d94;

    /* Legacy aliases kept for older section blocks */
    --brand-green: var(--color-primary);
    --line-soft: var(--color-border-soft);
    --text-main: var(--color-text);
    --text-body: var(--color-text-soft);
    --text-soft: var(--color-text-muted);
}

@media (max-width: 991.98px) {
    :root {
        --section-space-sm: 2.5rem;
        --section-space-md: 3.75rem;
        --section-space-lg: 5rem;
        --container-max: 90%;
        --container-max-wide: 94%;
    }
}

@media (max-width: 575.98px) {
    :root {
        --section-space-sm: 2rem;
        --section-space-md: 3rem;
        --section-space-lg: 4rem;
    }
}

/* =========================================================
   2. RESET / GLOBAL BASE
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--color-text-soft);
    background: var(--color-bg);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
    height: auto;
}

iframe {
    border: 0;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover,
a:focus {
    color: var(--color-primary-hover);
}

button,
.btn,
.nav-link,
.btn-close {
    transition:
        color var(--transition-fast),
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        transform var(--transition-fast);
}

.btn,
.offcanvas,
.nav-link,
.card,
.card-img,
.card-img-top,
.card-img-bottom,
.form-control,
.form-select,
.dropdown-menu,
.modal-content,
.accordion-item,
.accordion-button,
.list-group-item,
.input-group-text {
    border-radius: 0 !important;
}

/* =========================================================
   3. TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 1rem 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 500;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); }

p {
    margin: 0 0 1rem 0;
    font-size: var(--fs-body);
    line-height: 1.8;
    color: var(--color-text-soft);
}

small,
.text-caption {
    font-size: var(--fs-caption);
    line-height: 1.5;
}

strong,
b {
    font-weight: 700;
    color: inherit;
}

em,
i {
    font-style: italic;
}

hr {
    margin: 2rem 0;
    border: 0;
    border-top: 1px solid var(--color-border);
    opacity: 1;
}

/* =========================================================
   4. LISTS
========================================================= */

ul,
ol {
    margin: 0 0 1rem 0;
    padding-left: 1.2rem;
}

li {
    margin-bottom: 0.35rem;
    color: inherit;
    line-height: 1.7;
}

.ui-list-clean {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ui-list-clean > li {
    margin: 0;
}

.ui-list-divided {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--color-border-soft);
}

.ui-list-divided > li {
    position: relative;
    margin: 0;
    padding: 0.8rem 0 0.8rem 1rem;
    border-bottom: 1px solid var(--color-border-soft);
}

.ui-list-divided > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    transform: translateY(-50%);
}

/* =========================================================
   5. BUTTONS / LINKS
========================================================= */

.btn {
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: none !important;
}

.btn-sm {
    min-height: 38px;
    padding: 0.48rem 0.95rem;
    font-size: 0.875rem;
    line-height: 1.25;
}

.btn:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0.2rem var(--color-focus) !important;
}

.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--color-primary-hover) !important;
    border-color: var(--color-primary-hover) !important;
    color: #ffffff !important;
}

.btn-outline-primary {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    color: #ffffff !important;
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}

.ui-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-text);
    font-size: var(--fs-body-sm);
    font-weight: 600;
    line-height: 1.4;
}

.ui-link:hover,
.ui-link:focus {
    color: var(--color-primary);
}

.ui-link-arrow i,
.ui-link-arrow svg {
    transition: transform var(--transition-fast);
}

.ui-link-arrow:hover i,
.ui-link-arrow:focus i,
.ui-link-arrow:hover svg,
.ui-link-arrow:focus svg {
    transform: translateX(3px);
}

/* =========================================================
   6. FORMS
========================================================= */

label,
.form-label {
    margin-bottom: 0.45rem;
    color: var(--color-text);
    font-size: var(--fs-body-sm);
    font-weight: 600;
    line-height: 1.4;
}

.form-text {
    color: var(--color-text-muted);
    font-size: var(--fs-caption);
    line-height: 1.5;
}

:where(input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="color"]),
       select,
       textarea) {
    width: 100%;
}

.form-control,
.form-select,
textarea.form-control,
input.form-control {
    min-height: 44px;
    padding: 0.65rem 0.85rem;
    border-color: var(--color-border);
    background-color: #ffffff;
    color: var(--color-text);
    box-shadow: none;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-control::placeholder,
.form-select::placeholder,
input::placeholder,
textarea::placeholder {
    color: var(--color-text-faint);
    opacity: 1;
}

.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus,
select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem var(--color-focus);
}

.form-check-input {
    border-radius: 0 !important;
    border-color: var(--color-border-strong);
}

.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem var(--color-focus);
}

/* =========================================================
   7. TABLES
========================================================= */

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 0.9rem 1rem;
    vertical-align: middle;
    border-color: var(--color-border-soft);
}

thead th {
    color: var(--color-text);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.table {
    --bs-table-bg: #ffffff;
    --bs-table-striped-bg: #f8f9fa;
    --bs-table-hover-bg: #f7f8f5;
    --bs-table-border-color: var(--color-border-soft);
    margin-bottom: 0;
}

.table > :not(caption) > * > * {
    padding: 0.9rem 1rem;
}

/* =========================================================
   8. SHARED SECTION PRIMITIVES
========================================================= */

.section-space-sm {
    padding-top: var(--section-space-sm);
    padding-bottom: var(--section-space-sm);
}

.section-space-md {
    padding-top: var(--section-space-md);
    padding-bottom: var(--section-space-md);
}

.section-space-lg {
    padding-top: var(--section-space-lg);
    padding-bottom: var(--section-space-lg);
}

.section-head {
    margin-bottom: 2rem;
}

.section-head > *:last-child {
    margin-bottom: 0;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    color: var(--color-primary);
    font-family: var(--font-subheading);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: "";
    width: 2.5rem;
    height: 1px;
    background: currentColor;
    opacity: 0.65;
}

.section-title {
    margin: 0 0 1rem 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 2.1vw, 2.5rem);
    font-weight: 300;
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.section-title strong {
    font-weight: 700;
}

.section-title--content-max {
    max-width: var(--content-max);
}

.section-subheading {
    max-width: var(--content-max);
    margin: 0;
    color: var(--color-text-soft);
    font-family: var(--font-subheading);
    font-size: var(--fs-body);
    font-weight: 300;
    line-height: 1.75;
}

.section-actions {
    margin-top: 1.5rem;
}

.content-max {
    max-width: var(--content-max);
}

.content-max-narrow {
    max-width: var(--content-max-narrow);
}

/* =========================================================
   9. GLOBAL CARDS / PANELS / ICON PRIMITIVES
========================================================= */

.card {
    border-color: var(--color-border-soft);
    background: #ffffff;
    box-shadow: none;
}

.card-title {
    font-size: 1.2rem;
    line-height: 1.35;
}

.card-text {
    font-size: var(--fs-body);
    line-height: 1.7;
    color: var(--color-text-soft);
}

.ui-card {
    border: 1px solid var(--color-border-soft);
    background: #ffffff;
}

.ui-card-body {
    padding: 1.5rem;
}

.ui-card-title {
    margin: 0 0 0.75rem 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.ui-card-text {
    margin: 0;
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.75;
}

.ui-card-hover {
    transition:
        border-color var(--transition-fast),
        background-color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.ui-card-hover:hover,
.ui-card-hover:focus-within {
    border-color: var(--color-primary);
    background: rgba(0, 94, 32, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.ui-panel {
    padding: 1.5rem;
    border: 1px solid var(--color-border-soft);
    background: var(--color-bg-soft);
}

.ui-panel--white {
    background: #ffffff;
}

.ui-panel--soft {
    background: var(--color-bg-soft);
}

.ui-panel--muted {
    background: var(--color-bg-muted);
}

.ui-icon-box {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    background: var(--color-bg-soft);
    color: var(--color-primary);
    line-height: 1;
    flex: 0 0 auto;
}

/* =========================================================
   10. CONTAINERS
========================================================= */

.container-shell {
    width: min(100%, var(--container-max));
    margin-inline: auto;
}

.container-shell-wide {
    width: 100%;
    max-width: 1680px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
}

.container-shell-wide-pages {
    width: 100%;
    max-width: 1680px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 34px;
    padding-left: 34px;
}

/* =========================================================
   11. NAVBAR
========================================================= */

.site-navbar {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 50;
    background: transparent;
}

.site-navbar-inner {
    position: relative;
    min-height: var(--navbar-height);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 10px;
}

.site-navbar-inner::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: var(--navbar-line-bottom);
    height: 2px;
    width: calc(50% - (var(--logo-gap-width) / 2));
    background: linear-gradient(
        90deg,
        rgba(0, 94, 32, 0.10) 0%,
        rgba(0, 94, 32, 0.68) 18%,
        rgba(0, 94, 32, 0.90) 100%
    );
}

.site-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-logo .logo-white,
.site-logo .logo-black {
    display: none !important;
    height: 42px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

.site-navbar.logo-on-dark .site-logo .logo-white {
    display: block !important;
}

.site-navbar.logo-on-dark .site-logo .logo-black {
    display: none !important;
}

.site-navbar.logo-on-light .site-logo .logo-black {
    display: block !important;
}

.site-navbar.logo-on-light .site-logo .logo-white {
    display: none !important;
}

.site-navbar-inner::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: var(--navbar-line-bottom);
    height: 2px;
    width: calc(50% - (var(--logo-gap-width) / 2));
    background: linear-gradient(
        90deg,
        rgba(0, 94, 32, 0.90) 0%,
        rgba(0, 94, 32, 0.68) 82%,
        rgba(0, 94, 32, 0.10) 100%
    );
}

.navbar-brand-centered {
    position: absolute;
    left: 50%;
    bottom: var(--navbar-line-bottom);
    transform: translate(-50%, 50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar-brand-centered img {
    max-height: var(--logo-max-height);
    width: auto;
}

.navbar-actions {
    position: relative;
    z-index: 3;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
}

.menu-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 42px;
    padding: 0.55rem 0.95rem;
    border: 1px solid rgba(0, 94, 32, 0.18);
    background: #ffffff;
    color: var(--color-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.menu-trigger:hover,
.menu-trigger:focus-visible {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
    outline: none;
}

.menu-trigger-icon,
.menu-trigger i {
    font-size: 1rem;
    line-height: 1;
}

.menu-trigger-label,
.menu-trigger span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
}

/* =========================================================
   12. MENU DRAWER
========================================================= */

.menu-drawer {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
}

.menu-drawer.is-open {
    pointer-events: auto;
}

.menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.menu-drawer.is-open .menu-backdrop {
    opacity: 1;
}

.menu-panel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform: translateX(-100%);
    transition: transform var(--transition-base);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
}

.menu-drawer.is-open .menu-panel {
    transform: translateX(0);
}

.menu-sidebar {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem;
    color: #ffffff;
    background: linear-gradient(
        135deg,
        rgba(0, 55, 21, 0.96) 0%,
        rgba(0, 82, 28, 0.92) 48%,
        rgba(0, 94, 32, 0.88) 100%
    );
    overflow-y: auto;
}

.menu-sidebar-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.menu-close {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.menu-close:hover,
.menu-close:focus-visible {
    background: rgba(255, 255, 255, 0.10);
    outline: none;
}

.menu-close span,
.menu-close i {
    font-size: 1.2rem;
    line-height: 1;
}

.menu-main-nav {
    display: flex;
    flex-direction: column;
}

.menu-main-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    padding: 1rem 0.25rem 1rem 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.menu-main-button:hover,
.menu-main-button:focus-visible {
    color: #ffffff;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    padding-left: 0.6rem;
    outline: none;
}

.menu-main-button.is-active {
    color: #ffffff;
    font-weight: 700;
    padding-left: 0.85rem;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.13) 0%,
        rgba(255, 255, 255, 0.04) 72%,
        rgba(255, 255, 255, 0.00) 100%
    );
}

.menu-main-button.is-active::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(255, 255, 255, 0.86);
}

.menu-main-button-label {
    font-size: 1.06rem;
    line-height: 1.35;
    font-weight: 500;
}

.menu-main-button-arrow {
    font-size: 0.88rem;
    opacity: 0.8;
}

.menu-content {
    overflow-y: auto;
    padding: 2.75rem 3.25rem;
    background: rgba(255, 255, 255, 0.80);
    border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.menu-content-inner {
    max-width: 100%;
}

.menu-brand-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 2.25rem;
    padding-bottom: 1.25rem;
}

.menu-brand-line {
    flex: 1 1 auto;
    height: 2px;
    background: linear-gradient(
        90deg,
        rgba(0, 94, 32, 0.10) 0%,
        rgba(0, 94, 32, 0.75) 100%
    );
}

.menu-brand-line:last-child {
    background: linear-gradient(
        90deg,
        rgba(0, 94, 32, 0.75) 0%,
        rgba(0, 94, 32, 0.10) 100%
    );
}

.menu-brand-logo img {
    max-height: 44px;
    width: auto;
}

.menu-view {
    display: none;
}

.menu-view.is-active {
    display: block;
}

.menu-section-title {
    margin: 0 0 2rem;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(2.05rem, 2.5vw, 2.7rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.015em;
}

.submenu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.submenu-list li + li {
    margin-top: 0.95rem;
}

.submenu-list a {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 100%;
    padding: 0.10rem 0;
    color: var(--color-text-soft);
    font-size: 1.03rem;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.005em;
}

.submenu-list a::after,
.category-button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.12rem;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width var(--transition-fast);
}

.submenu-list a:hover,
.submenu-list a:focus-visible,
.category-button:hover,
.category-button:focus-visible {
    color: var(--color-primary);
    outline: none;
}

.submenu-list a:hover::after,
.submenu-list a:focus-visible::after,
.category-button:hover::after,
.category-button:focus-visible::after {
    width: 100%;
}

.menu-meta {
    margin-top: 3rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--color-border-strong);
}

.menu-meta-title {
    margin-bottom: 0.9rem;
    color: var(--color-text-faint);
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.menu-meta a {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--color-text-soft);
    font-size: 1.03rem;
    font-weight: 500;
    line-height: 1.5;
}

.menu-meta a:hover,
.menu-meta a:focus-visible {
    color: var(--color-primary);
    outline: none;
}

/* =========================================================
   13. BRAND CATALOG (DRAWER)
========================================================= */

.brand-catalog-layout {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 2.5rem;
    align-items: start;
}

.brand-catalog-nav {
    min-width: 0;
}

.category-tab-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.category-button {
    position: relative;
    width: 100%;
    padding: 0 0 0.10rem;
    border: 0;
    background: transparent;
    text-align: left;
    color: var(--color-text-soft);
    font-size: 1.03rem;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.005em;
    cursor: pointer;
}

.category-button + .category-button {
    margin-top: 0.95rem;
}

.category-button.is-active {
    color: var(--color-primary);
    font-weight: 700;
}

.category-button.is-active::after {
    width: 100%;
}

.category-panel {
    display: none;
}

.category-panel.is-active {
    display: block;
}

.product-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 150px));
    gap: 0.9rem;
    justify-content: start;
}

.product-card {
    width: 150px;
    border: 1px solid var(--color-border-soft);
    background: #ffffff;
    overflow: hidden;
    transition:
        border-color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.product-card:hover,
.product-card:focus-within {
    border-color: var(--color-primary);
    background: rgba(0, 94, 32, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.product-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-image-wrap {
    aspect-ratio: 1 / 1;
    height: auto;
    background: #f8f8f8;
    border-bottom: 1px solid var(--color-border-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.72rem;
    font-weight: 600;
    background: #f3f3f3;
}

.product-card-body {
    padding: 0.45rem 0.5rem 0.55rem;
    text-align: center;
}

.product-card-title {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1.25;
}

.product-card:hover .product-card-title,
.product-card:focus-within .product-card-title {
    color: var(--color-primary);
}

/* =========================================================
   14. FOOTER
========================================================= */

.site-footer {
    background-color: #000000;
}

.site-footer .row {
    --bs-gutter-y: 1.25rem;
}

.site-footer .footer-text,
.site-footer .footer-links-list li,
.site-footer .footer-links-list a,
.site-footer .footer-contact-list li,
.site-footer .footer-contact-list a,
.site-footer .footer-contact-list span,
.site-footer .footer-bottom-text,
.site-footer .footer-bottom-link {
    line-height: 1.2;
}

.site-footer .footer-links-list li,
.site-footer .footer-contact-list li {
    margin-bottom: 0.5rem !important;
}

.site-footer .text-white-50 {
    color: rgba(255, 255, 255, 0.68) !important;
}

.site-footer .footer-bottom-row {
    border-color: rgba(255, 255, 255, 0.18) !important;
}

.site-footer .footer-bottom-link {
    font-size: 13px;
}

.site-footer .btn.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.65);
    color: #ffffff;
}

.site-footer .btn.btn-outline-light:hover {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

/* =========================================================
   15. RESPONSIVE
========================================================= */

@media (max-width: 1599.98px) {
    .product-card-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) {
    :root {
        --navbar-height: 86px;
        --navbar-side-padding: 2rem;
        --navbar-line-bottom: 16px;
        --logo-max-height: 42px;
        --logo-gap-width: 230px;
        --sidebar-width: 300px;
    }

    .menu-panel {
        grid-template-columns: var(--sidebar-width) 1fr;
    }

    .menu-content {
        padding: 2.25rem 2.5rem;
    }

    .brand-catalog-layout {
        grid-template-columns: 210px 1fr;
        gap: 2rem;
    }

    .product-card-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .product-card-image-wrap {
        height: 115px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --navbar-height: 76px;
        --navbar-side-padding: 1rem;
        --navbar-line-bottom: 14px;
        --logo-max-height: 36px;
        --logo-gap-width: 190px;
    }

    .menu-panel {
        grid-template-columns: 1fr;
    }

    .menu-sidebar {
        padding: 1.25rem 1.2rem 1rem;
    }

    .menu-main-button.is-active::before {
        left: -1.2rem;
    }

    .menu-content {
        padding: 1.75rem 1.5rem 2rem;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .brand-catalog-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ui-card-body,
    .ui-panel {
        padding: 1.2rem;
    }
}

@media (max-width: 767.98px) {
    :root {
        --logo-gap-width: 160px;
    }

    .menu-content {
        padding: 1.5rem 1.2rem 1.75rem;
    }

    .product-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-card-image-wrap {
        height: 120px;
    }

    .menu-section-title {
        font-size: 1.9rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    :root {
        --navbar-height: 66px;
        --navbar-line-bottom: 12px;
        --logo-max-height: 30px;
        --logo-gap-width: 138px;
    }

    .site-navbar-inner {
        padding-top: 8px;
    }

    .menu-trigger {
        min-height: 34px;
        padding: 0.30rem 0.62rem;
    }

    .menu-trigger-label {
        font-size: 0.72rem;
    }

    .product-card-grid {
        grid-template-columns: 1fr;
    }

    .product-card-image-wrap {
        height: 180px;
    }

    .menu-section-title {
        font-size: 1.65rem;
    }

    .ui-card-body,
    .ui-panel {
        padding: 1rem;
    }
}

/* =========================================================
   16. FLOATING ACTIONS
========================================================= */

.floating-actions {
    position: fixed;
    right: var(--floating-action-offset-x);
    bottom: var(--floating-action-offset-y);
    z-index: 100;
    display: none;
    align-items: center;
    gap: var(--floating-action-gap);
}

.floating-menu-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.40rem;
    height: var(--floating-action-size);
    padding: 0 0.75rem;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: var(--shadow-sm);
}

.floating-menu-trigger:hover,
.floating-menu-trigger:focus {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
}

.floating-menu-trigger i {
    font-size: 0.90rem;
    line-height: 1;
}

.floating-menu-trigger span {
    line-height: 1;
    white-space: nowrap;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--floating-action-size);
    height: var(--floating-action-size);
    padding: 0;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.back-to-top:hover,
.back-to-top:focus {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
}

.back-to-top i {
    font-size: 1rem;
    line-height: 1;
}

body.menu-open .floating-actions,
body.products-menu-open .floating-actions {
    display: none !important;
}

@media (max-width: 575.98px) {
    :root {
        --floating-action-size: 34px;
        --floating-action-gap: 8px;
        --floating-action-offset-x: 20px;
        --floating-action-offset-y: 20px;
    }

    .floating-menu-trigger {
        padding: 0 0.60rem;
        font-size: 0.70rem;
    }

    .floating-menu-trigger i,
    .back-to-top i {
        font-size: 0.82rem;
    }
}

/* =========================================================
   17. MOBILE QUALITY PASS
========================================================= */

@media (max-width: 767.98px) {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        letter-spacing: 0;
    }

    body.products-menu-open {
        overflow: hidden;
    }

    .container-shell,
    .container-shell-wide-pages {
        width: 100%;
        max-width: 100%;
        padding-right: 18px;
        padding-left: 18px;
    }

    .site-navbar-inner {
        align-items: center;
        min-height: var(--navbar-height);
        padding-top: 0;
    }

    .site-navbar-inner::before,
    .site-navbar-inner::after {
        bottom: 12px;
        width: calc(50% - 78px);
    }

    .navbar-brand-centered {
        bottom: 12px;
    }

    .menu-trigger {
        min-height: 38px;
        padding: 0.42rem 0.72rem;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    }

    .menu-panel {
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        background: rgba(255, 255, 255, 0.94);
    }

    .menu-sidebar {
        flex: 0 0 auto;
        padding: 0.9rem 1rem 1rem;
        overflow: visible;
    }

    .menu-sidebar-top {
        margin-bottom: 0.75rem;
        padding-bottom: 0.65rem;
    }

    .menu-close {
        width: 36px;
        height: 36px;
    }

    .menu-main-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .menu-main-button,
    .menu-main-button.is-active,
    .menu-main-button:hover,
    .menu-main-button:focus-visible {
        min-height: 42px;
        padding: 0.58rem 0.65rem;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.08);
    }

    .menu-main-button.is-active {
        background: rgba(255, 255, 255, 0.20);
    }

    .menu-main-button.is-active::before {
        display: none;
    }

    .menu-main-button-label {
        min-width: 0;
        font-size: 0.84rem;
        line-height: 1.2;
    }

    .menu-main-button-arrow {
        display: none;
    }

    .menu-content {
        flex: 1 0 auto;
        padding: 1.1rem 1rem 1.45rem;
        overflow: visible;
        border-top: 0;
        background: #ffffff;
    }

    .menu-brand-bar {
        display: none;
    }

    .menu-section-title {
        margin-bottom: 1rem;
        font-size: 1.45rem;
        line-height: 1.15;
    }

    .submenu-list a,
    .menu-meta a {
        font-size: 0.96rem;
        line-height: 1.35;
    }

    .menu-meta {
        margin-top: 1.35rem;
        padding-top: 1rem;
    }

    .brand-catalog-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-tab-list {
        flex-direction: row;
        gap: 0.45rem;
        margin-right: -1rem;
        margin-left: -1rem;
        padding: 0 1rem 0.35rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .category-button,
    .category-button + .category-button {
        flex: 0 0 auto;
        width: auto;
        margin-top: 0;
        padding: 0.42rem 0.62rem;
        border: 1px solid var(--color-border);
        background: #ffffff;
        font-size: 0.82rem;
        line-height: 1.2;
        white-space: nowrap;
    }

    .category-button.is-active {
        border-color: var(--color-primary);
        background: var(--color-primary);
        color: #ffffff;
    }

    .category-button::after {
        display: none;
    }

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

    .product-card {
        width: auto;
        min-width: 0;
    }

    .product-card-image-wrap {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .product-card-body {
        padding: 0.55rem 0.55rem 0.65rem;
    }

    .product-card-title {
        font-size: 0.78rem;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 374.98px) {
    .menu-main-nav,
    .product-card-grid {
        grid-template-columns: 1fr;
    }
}
