:root {
    --ink: #101418;
    --muted: #596771;
    --paper: #f6f8f3;
    --surface: #ffffff;
    --surface-soft: #eef5ea;
    --white: #ffffff;
    --black: #07090b;
    --line: #dce6dd;
    --green: #128466;
    --green-dark: #063f34;
    --lime: #9bc83e;
    --copper: #a96038;
    --gold: #d9b24c;
    --blue: #286f9f;
    --red: #b4443d;
    --shadow: 0 22px 70px rgba(10, 17, 20, .16);
    --shadow-soft: 0 16px 50px rgba(10, 17, 20, .09);
    --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, #fbfcf7 0%, #f1f6ef 42%, #ffffff 100%);
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 50;
    display: flex;
    width: min(1180px, calc(100% - 28px));
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 66px;
    padding: 10px 12px;
    color: var(--white);
    background: rgba(7, 63, 52, .78);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
    box-shadow: 0 18px 55px rgba(6, 63, 52, .24);
    backdrop-filter: blur(18px) saturate(1.18);
    transform: translateX(-50%);
    transition: background .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}

.site-header.is-scrolled {
    color: var(--ink);
    background: rgba(255, 255, 255, .82);
    border-color: rgba(220, 230, 221, .86);
    box-shadow: 0 18px 45px rgba(12, 19, 24, .12);
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand {
    flex: 0 1 auto;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    color: var(--white);
    background:
        linear-gradient(145deg, var(--lime), var(--green) 46%, var(--black) 47%, var(--black));
    border: 2px solid rgba(255, 255, 255, .48);
    border-radius: 50%;
    font-weight: 800;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .38), 0 10px 24px rgba(0, 0, 0, .18);
}

.site-header.is-scrolled .brand-mark,
.footer-brand .brand-mark,
.admin-header .brand-mark {
    color: var(--white);
    background: var(--green-dark);
    border-color: rgba(15, 127, 102, .28);
}

.brand strong,
.footer-brand strong {
    display: block;
    max-width: 260px;
    overflow: hidden;
    font-size: 1.02rem;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.brand em,
.footer-brand p {
    display: block;
    margin: 2px 0 0;
    color: currentColor;
    font-size: .76rem;
    font-style: normal;
    opacity: .8;
}

.site-nav,
.admin-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.site-nav a,
.admin-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 11px;
    border-radius: 8px;
    font-size: .88rem;
    font-weight: 700;
    transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}

.site-nav a:hover,
.admin-nav a:hover {
    background: rgba(255, 255, 255, .16);
    transform: translateY(-1px);
}

.site-header.is-scrolled .site-nav a:hover,
.admin-nav a:hover {
    background: rgba(15, 127, 102, .1);
    color: var(--green-dark);
}

.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: 8px;
}

.site-header.is-scrolled .language-switch {
    border-color: rgba(15, 127, 102, .2);
}

.language-switch a {
    min-width: 38px;
    padding: 6px 8px;
}

.language-switch a.is-active {
    color: var(--ink);
    background: var(--white);
}

.site-header.is-scrolled .language-switch a.is-active {
    color: var(--white);
    background: var(--green-dark);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    color: inherit;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 8px;
}

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

.hero {
    position: relative;
    display: grid;
    min-height: 90vh;
    overflow: hidden;
    align-items: end;
    color: var(--white);
    background-image:
        linear-gradient(90deg, rgba(6, 12, 15, .9), rgba(6, 12, 15, .58), rgba(6, 12, 15, .18)),
        var(--hero-image);
    background-position: center;
    background-size: cover;
}

.hero::after {
    position: absolute;
    inset: auto 0 0;
    height: 22%;
    content: "";
    background: linear-gradient(180deg, rgba(245, 247, 244, 0), var(--paper));
    pointer-events: none;
}

.hero-brand-cover {
    min-height: clamp(390px, 40vw, 560px);
    align-items: center;
    color: var(--ink);
    background-color: var(--white);
    background-image: none;
}

.hero-brand-cover::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, .08) 42%, rgba(255, 255, 255, .62)),
        linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(7, 9, 11, .05));
    pointer-events: none;
}

.hero-brand-cover::after {
    z-index: 1;
    height: 35%;
    background: linear-gradient(180deg, rgba(245, 247, 244, 0), rgba(245, 247, 244, .82));
}

.hero-banner-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-brand-cover .hero-content {
    z-index: 2;
    padding: 120px 0 68px;
}

.hero-brand-cover .eyebrow {
    color: rgba(6, 63, 52, .76);
}

.hero-brand-cover h1 {
    max-width: 520px;
    color: rgba(7, 9, 11, .0);
    font-size: clamp(2.45rem, 4.8vw, 5.1rem);
    text-shadow: 0 18px 44px rgba(255, 255, 255, .5);
}

.hero-brand-cover .hero-copy {
    max-width: 510px;
    color: rgba(7, 9, 11, .64);
    font-size: 1.05rem;
}

.hero-brand-cover .hero-actions {
    margin-top: 22px;
    opacity: .94;
}

.hero-brand-cover .secondary-link.inverse,
.hero-brand-cover .ghost-link {
    color: rgba(7, 9, 11, .82);
    background: rgba(255, 255, 255, .68);
    border-color: rgba(7, 9, 11, .12);
    backdrop-filter: blur(12px);
}

.hero-brand-cover .hero-metrics {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 150px 0 130px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--green);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.section-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    min-height: 30px;
    margin: 0;
    padding: 5px 11px;
    color: var(--green-dark);
    background: rgba(18, 132, 102, .1);
    border: 1px solid rgba(18, 132, 102, .18);
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 900;
    line-height: 1.25;
    text-transform: none;
}

.eyebrow {
    font-size: .82rem;
    text-transform: uppercase;
}

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

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(3rem, 7vw, 6.6rem);
    line-height: .95;
    letter-spacing: 0;
}

.hero-copy {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.primary-link,
.secondary-link,
.ghost-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
}

.primary-link {
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    box-shadow: 0 14px 30px rgba(18, 132, 102, .26);
}

.primary-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(18, 132, 102, .32);
}

.secondary-link {
    color: var(--green-dark);
    background: rgba(15, 127, 102, .1);
    border-color: rgba(15, 127, 102, .24);
}

.secondary-link.inverse {
    color: var(--white);
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .34);
}

.ghost-link {
    color: var(--white);
    border-color: rgba(255, 255, 255, .34);
}

.secondary-link:hover,
.ghost-link:hover {
    transform: translateY(-2px);
}

.large {
    min-height: 52px;
    padding-inline: 20px;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal-on-scroll {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity .7s var(--ease), transform .7s var(--ease);
        will-change: opacity, transform;
    }

    .reveal-on-scroll.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-metrics {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 2;
    display: grid;
    width: min(1160px, calc(100% - 32px));
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    transform: translateX(-50%);
}

.hero-metrics span {
    min-height: 70px;
    padding: 14px;
    color: var(--white);
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
    backdrop-filter: blur(12px);
    font-weight: 800;
}

.section-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.about-band,
.items-section,
.gallery-section,
.locations-section,
.contact-section {
    padding: 96px 0;
}

.about-band {
    background: linear-gradient(180deg, var(--paper), var(--white));
}

.about-grid,
.contact-grid,
.location-grid,
.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 42px;
    align-items: start;
}

.about-grid h2,
.section-heading h2,
.location-grid h2,
.contact-grid h2 {
    margin: 0;
    font-size: clamp(1.85rem, 3.2vw, 3.45rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.about-logo {
    width: min(190px, 52vw);
    margin-top: 24px;
    border-radius: 8px;
    filter: drop-shadow(0 18px 30px rgba(7, 63, 52, .16));
}

.about-copy {
    color: var(--muted);
    font-size: 1.05rem;
    padding: 26px;
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(220, 230, 221, .9);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.about-copy p {
    margin: 0 0 20px;
    white-space: pre-line;
}

.about-copy strong {
    display: block;
    color: var(--ink);
    font-size: 1.2rem;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.section-heading {
    display: grid;
    max-width: 860px;
    gap: 12px;
    align-items: start;
    justify-content: start;
    margin-bottom: 34px;
}

.section-heading h2 {
    font-size: clamp(1.75rem, 3vw, 3.15rem);
}

.items-section {
    background:
        linear-gradient(180deg, #ffffff, #f6f8f3);
}

.item-grid,
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.item-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}

.item-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--lime), var(--green), var(--blue));
    opacity: .9;
}

.item-card:hover {
    border-color: rgba(18, 132, 102, .32);
    box-shadow: 0 22px 60px rgba(10, 17, 20, .13);
    transform: translateY(-6px);
}

.item-card img,
.item-card video {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #e7ece7;
    transition: transform .32s var(--ease);
}

.item-card:hover img,
.item-card:hover video {
    transform: scale(1.025);
}

.item-body {
    display: grid;
    min-height: 220px;
    padding: 22px;
}

.item-body h3 {
    margin: 0;
    font-size: 1.24rem;
    line-height: 1.25;
}

.item-body p {
    margin: 12px 0 18px;
    color: var(--muted);
}

.item-body strong {
    align-self: end;
    color: var(--green-dark);
    font-size: 1rem;
}

.item-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-self: end;
    margin-top: 18px;
}

.item-card-actions .primary-link,
.item-card-actions .secondary-link {
    min-height: 42px;
    padding: 9px 13px;
    font-size: .92rem;
}

.products-page,
.product-detail-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #ffffff, var(--paper));
}

.products-hero {
    padding: 150px 0 62px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(16, 20, 24, .92), rgba(15, 45, 38, .9)),
        radial-gradient(circle at top right, rgba(155, 200, 62, .26), transparent 42%);
}

.products-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 6.1rem);
    line-height: .96;
}

.products-hero p:last-child {
    max-width: 660px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 1.12rem;
}

.products-section {
    padding: 70px 0 96px;
}

.product-filters {
    display: grid;
    grid-template-columns: minmax(230px, 1.45fr) minmax(180px, 1fr) minmax(120px, .7fr) minmax(120px, .7fr) auto;
    gap: 12px;
    align-items: end;
    padding: 16px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(15, 127, 102, .14);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(10, 17, 20, .08);
    backdrop-filter: blur(14px);
}

.product-filter-field {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.product-filter-field span {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.product-filter-field input,
.product-filter-field select {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    color: var(--ink);
    background: #f7faf6;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    font-weight: 800;
    outline: none;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

.product-filter-field input:focus,
.product-filter-field select:focus {
    background: var(--white);
    border-color: rgba(15, 127, 102, .42);
    box-shadow: 0 0 0 4px rgba(15, 127, 102, .1);
}

.product-filter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.product-filter-actions .primary-link,
.product-filter-actions .secondary-link {
    min-height: 46px;
    padding: 10px 16px;
    white-space: nowrap;
}

.product-filter-actions button {
    border: 0;
    cursor: pointer;
}

.products-result-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: .95rem;
    font-weight: 900;
}

.products-result-bar strong,
.product-category-pill {
    width: fit-content;
    padding: 6px 10px;
    color: var(--green-dark);
    background: rgba(15, 127, 102, .1);
    border: 1px solid rgba(15, 127, 102, .16);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 950;
}

.product-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.product-list-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}

.product-list-card:hover {
    border-color: rgba(18, 132, 102, .32);
    box-shadow: 0 22px 60px rgba(10, 17, 20, .13);
    transform: translateY(-6px);
}

.product-card-media {
    display: grid;
    overflow: hidden;
    min-height: 260px;
    place-items: center;
    color: var(--muted);
    background: #e7ece7;
    font-weight: 900;
}

.product-card-media img,
.product-card-media video {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .32s var(--ease);
}

.product-list-card:hover .product-card-media img,
.product-list-card:hover .product-card-media video {
    transform: scale(1.025);
}

.product-card-body {
    display: grid;
    min-height: 270px;
    padding: 22px;
}

.product-card-body h2 {
    margin: 0;
    font-size: 1.28rem;
    line-height: 1.25;
}

.product-card-body p {
    margin: 12px 0 18px;
    color: var(--muted);
}

.product-card-body strong {
    align-self: end;
    color: var(--green-dark);
}

.product-detail-section {
    padding: 150px 0 96px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 34px;
    align-items: start;
}

.product-detail-media {
    display: grid;
    overflow: hidden;
    min-height: 520px;
    place-items: center;
    color: var(--muted);
    background: #e7ece7;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    font-weight: 900;
}

.product-detail-media img,
.product-detail-media video {
    width: 100%;
    height: 100%;
    max-height: 680px;
    object-fit: cover;
}

.product-detail-copy {
    display: grid;
    gap: 18px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.product-detail-copy h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4.6rem);
    line-height: 1.02;
}

.product-detail-copy > p {
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.product-detail-price {
    width: fit-content;
    padding: 8px 12px;
    color: var(--green-dark);
    background: rgba(18, 132, 102, .1);
    border: 1px solid rgba(18, 132, 102, .18);
    border-radius: 8px;
}

.gallery-section {
    color: var(--white);
    background: linear-gradient(135deg, #101418, #13251f 55%, #1a2630);
}

.gallery-section .section-kicker {
    color: var(--gold);
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .16);
}

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

.gallery-tile {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    padding: 0;
    background: #dce3dd;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, .2);
    transition: transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}

.gallery-tile img,
.gallery-tile video {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .3s var(--ease);
}

.gallery-tile:hover {
    border-color: rgba(155, 200, 62, .5);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .28);
    transform: translateY(-4px);
}

.gallery-tile:hover img,
.gallery-tile:hover video {
    transform: scale(1.035);
}

.video-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 5px 9px;
    color: var(--white);
    background: rgba(7, 9, 11, .74);
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 800;
}

.empty-note {
    margin: 0;
    padding: 24px;
    color: var(--muted);
    background: var(--white);
    border: 1px dashed var(--line);
    border-radius: 8px;
}

.locations-section {
    color: var(--white);
    background: linear-gradient(135deg, #101418, #0f2d26 52%, #1a2630);
}

.locations-section .section-kicker {
    color: var(--gold);
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .16);
}

.location-section-heading {
    display: grid;
    gap: 12px;
    margin-bottom: 32px;
}

.location-section-heading h2 {
    max-width: 760px;
    margin: 0;
    color: var(--white);
    font-size: clamp(2.35rem, 5vw, 5.2rem);
    line-height: .98;
    letter-spacing: 0;
}

.location-section-heading p:last-child {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .76);
    font-size: 1.08rem;
}

.location-grid p {
    max-width: 520px;
    color: rgba(255, 255, 255, .76);
    font-size: 1.08rem;
}

.location-branch {
    display: grid;
    gap: 14px;
    min-height: 100%; /* min-height: 360px; */
    padding: 28px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06)),
        radial-gradient(circle at top right, rgba(155, 200, 62, .2), transparent 44%);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .2);
    backdrop-filter: blur(16px);
}

.location-branch .section-kicker {
    width: fit-content;
    margin-bottom: 0;
    padding: 6px 10px;
    color: var(--green-dark);
    background: rgba(255, 255, 255, .84);
    border-radius: 8px;
}

.section-kicker{
    font-size: 30px;
    margin-bottom: revert;
}

.location-branch h2 {
    font-size: clamp(1.75rem, 3vw, 3.2rem);
}

.location-hours {
    display: grid;
    gap: 5px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.location-hours strong {
    color: var(--gold);
    font-size: .92rem;
}

.location-hours p {
    margin: 0;
}

.branch-map-panel {
    min-height: 360px;
}

.map-panel {
    display: grid;
    gap: 0;
    overflow: hidden;
    min-height: 360px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    box-shadow: 0 26px 80px rgba(0, 0, 0, .28);
}

.map-frame {
    display: block;
    width: 100%;
    min-height: 300px;
    border: 0;
}

.map-panel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(239, 246, 242, .98));
}

.map-panel-footer span {
    color: var(--muted);
    font-size: .94rem;
    font-weight: 800;
}

.map-panel-footer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 8px;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease;
}

.map-panel-footer a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(18, 132, 102, .26);
}

.map-panel-footer strong {
    font-size: 1rem;
}

.branch-list {
    margin-top: 34px;
}

.branch-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.branch-heading h3 {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.55rem, 3vw, 2.6rem);
    line-height: 1.1;
}

.branch-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.branch-card {
    position: relative;
    display: grid;
    gap: 12px;
    overflow: hidden;
    min-height: 420px;
    padding: 14px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06)),
        radial-gradient(circle at top right, rgba(155, 200, 62, .2), transparent 44%);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .2);
    backdrop-filter: blur(16px);
    cursor: pointer;
    outline: 0;
    transition: transform .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}

.branch-card:hover,
.branch-card:focus-visible,
.branch-card.is-active {
    border-color: rgba(155, 200, 62, .42);
    transform: translateY(-4px);
}

.branch-card.is-active {
    background:
        linear-gradient(135deg, rgba(155, 200, 62, .2), rgba(255, 255, 255, .08)),
        radial-gradient(circle at top right, rgba(255, 255, 255, .2), transparent 46%);
    box-shadow: 0 24px 65px rgba(0, 0, 0, .26);
}

.branch-card.is-active::after {
    position: absolute;
    top: 16px;
    inset-inline-end: 16px;
    width: 12px;
    height: 12px;
    content: "";
    background: var(--lime);
    border: 3px solid rgba(255, 255, 255, .86);
    border-radius: 50%;
    box-shadow: 0 0 0 7px rgba(155, 200, 62, .18);
}

.branch-mini-map {
    overflow: hidden;
    min-height: 150px;
    margin: -4px -4px 4px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
}

.branch-mini-map iframe {
    display: block;
    width: 100%;
    min-height: 150px;
    border: 0;
    filter: saturate(.88) contrast(.96);
    pointer-events: none;
}

.branch-card > span {
    width: fit-content;
    padding: 6px 10px;
    color: var(--green-dark);
    background: rgba(255, 255, 255, .84);
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 900;
}

.branch-card h4 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.25;
}

.branch-card p {
    margin: 0;
    color: rgba(255, 255, 255, .76);
}

.branch-hours {
    display: grid;
    gap: 4px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.branch-hours strong {
    color: var(--gold);
    font-size: .9rem;
}

.branch-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 44px;
    padding: 10px 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    border-radius: 8px;
    font-weight: 900;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.branch-card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(18, 132, 102, .3);
}

.contact-section {
    background: linear-gradient(180deg, #ffffff, var(--paper));
}

.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-form label,
.admin-field {
    display: grid;
    gap: 8px;
}

.contact-form span,
.admin-field span {
    color: var(--muted);
    font-size: .9rem;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.admin-field input,
.admin-field textarea,
.link-row input {
    width: 100%;
    min-width: 0;
    padding: 13px 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, .92);
    border: 1px solid var(--line);
    border-radius: 8px;
    outline: 0;
    transition: border-color .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus,
.admin-field input:focus,
.admin-field textarea:focus,
.link-row input:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(15, 127, 102, .12);
    background: var(--white);
}

.form-button {
    width: fit-content;
}

.form-success,
.notice {
    margin: 18px 0 0;
    padding: 12px 14px;
    color: var(--green-dark);
    background: rgba(15, 127, 102, .1);
    border: 1px solid rgba(15, 127, 102, .2);
    border-radius: 8px;
    font-weight: 800;
}

.contact-panel {
    display: grid;
    gap: 10px;
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.contact-panel h3 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.contact-panel a,
.contact-panel span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--ink);
    background: #f8faf7;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow-wrap: anywhere;
    transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}

.contact-panel a:hover {
    color: var(--green-dark);
    background: #ffffff;
    border-color: rgba(15, 127, 102, .26);
    transform: translateY(-2px);
}

.site-footer {
    padding: 38px 0;
    color: var(--white);
    background: #07090b;
}

.footer-grid {
    align-items: center;
}

.footer-grid > p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    text-align: end;
}

.footer-brand p {
    max-width: 420px;
    overflow-wrap: anywhere;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(5, 8, 10, .86);
    backdrop-filter: blur(14px);
}

.lightbox[hidden] {
    display: none;
}

.lightbox img,
.lightbox video {
    max-width: min(980px, 96vw);
    max-height: 86vh;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.lightbox button {
    position: absolute;
    top: 18px;
    inset-inline-end: 18px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--white);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    font-size: 2rem;
    line-height: 1;
    transition: transform .2s var(--ease), background .2s var(--ease);
}

.lightbox button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .18);
}

.admin-body {
    background: #f2f5f1;
}

.admin-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 5vw;
    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.admin-main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 70px;
}

.admin-hero,
.admin-panel,
.login-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 45px rgba(12, 19, 24, .08);
}

.admin-hero {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 28px;
    align-items: center;
    padding: 26px;
    margin-bottom: 18px;
}

.admin-hero h1,
.admin-panel h2,
.login-panel h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
}

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

.stats-grid div {
    display: grid;
    gap: 4px;
    min-height: 110px;
    padding: 16px;
    background: #f7faf6;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.stats-grid strong {
    font-size: 2rem;
    line-height: 1;
}

.stats-grid span {
    color: var(--muted);
    font-size: .86rem;
    font-weight: 800;
}

.admin-panel {
    padding: 26px;
    margin-top: 18px;
}

.admin-panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.admin-form {
    display: grid;
    gap: 18px;
}

.admin-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.admin-subsection {
    display: grid;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
}

.admin-subsection h3 {
    margin: 0;
}

.gallery-admin-list,
.item-editor,
.message-list {
    display: grid;
    gap: 12px;
}

.gallery-admin-row {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: #f7faf6;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.gallery-admin-row img,
.gallery-admin-row video,
.item-editor-row > img,
.item-editor-row > video,
.admin-image-placeholder {
    width: 90px;
    height: 90px;
    object-fit: cover;
    background: #dde5df;
    border-radius: 8px;
}

.gallery-admin-row input[type="text"] {
    width: 100%;
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.check-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 800;
}

.check-row input {
    width: 18px;
    height: 18px;
}

.danger,
.danger-button {
    color: var(--red);
}

.link-editor {
    display: grid;
    gap: 10px;
}

.link-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.6fr;
    gap: 10px;
}

.item-editor-row {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 14px;
    background: #f7faf6;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.admin-image-placeholder {
    display: grid;
    place-items: center;
    color: var(--muted);
    font-size: .8rem;
    font-weight: 800;
}

.item-editor-fields {
    display: grid;
    gap: 14px;
}

.item-row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.admin-upload-inline {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 800;
}

.admin-submit {
    width: fit-content;
    border: 0;
}

.message-row {
    display: grid;
    gap: 8px;
    padding: 16px;
    background: #f7faf6;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.message-row div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}

.message-row span,
.message-row a {
    color: var(--muted);
    overflow-wrap: anywhere;
}

.message-row p {
    margin: 0;
}

.traffic-table {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.traffic-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 10px;
    padding: 12px 14px;
    border-top: 1px solid var(--line);
}

.traffic-row:first-child {
    border-top: 0;
}

.traffic-head {
    color: var(--muted);
    background: #f7faf6;
    font-weight: 800;
}

.login-wrap {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
}

.login-panel {
    width: min(460px, 100%);
    padding: 30px;
}

.login-panel form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

@media (max-width: 980px) {
    .site-header {
        align-items: flex-start;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        inset-inline: 0;
        display: none;
        padding: 12px;
        background: rgba(255, 255, 255, .96);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: 0 18px 45px rgba(12, 19, 24, .13);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-nav a,
    .language-switch {
        width: 100%;
        color: var(--ink);
    }

    .language-switch {
        justify-content: center;
        border-color: var(--line);
    }

    .language-switch a.is-active {
        color: var(--white);
        background: var(--green-dark);
    }

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

    .about-grid,
    .contact-grid,
    .location-grid,
    .footer-grid,
    .admin-hero {
        grid-template-columns: 1fr;
    }

    .item-grid,
    .gallery-grid,
    .product-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .product-filter-search,
    .product-filter-actions {
        grid-column: 1 / -1;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

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

    .admin-header,
    .admin-panel-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .site-header {
        top: 10px;
        width: calc(100% - 20px);
    }

    .brand strong {
        max-width: 170px;
    }

    .hero {
        min-height: 880px;
        background-position: center;
    }

    .hero-brand-cover {
        min-height: 360px;
        background-position: center top;
    }

    .hero-content {
        padding: 126px 0 270px;
    }

    .hero-brand-cover .hero-content {
        padding: 104px 0 34px;
    }

    .hero h1 {
        font-size: 3.1rem;
    }

    .hero-brand-cover h1 {
        max-width: 300px;
        font-size: 2.35rem;
    }

    .hero-copy {
        font-size: 1rem;
    }

    .hero-brand-cover .hero-copy {
        max-width: 310px;
        font-size: .92rem;
    }

    .hero-actions,
    .item-row-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions a,
    .primary-link,
    .secondary-link,
    .ghost-link {
        width: 100%;
    }

    .hero-metrics,
    .item-grid,
    .gallery-grid,
    .product-filters,
    .product-list-grid,
    .branch-grid,
    .admin-two-col,
    .link-row,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-metrics span {
        min-height: 56px;
    }

    .about-band,
    .items-section,
    .gallery-section,
    .locations-section,
    .contact-section {
        padding: 62px 0;
    }

    .section-heading {
        align-items: flex-start;
        gap: 10px;
    }

    .item-body {
        min-height: auto;
    }

    .products-hero,
    .product-detail-section {
        padding-top: 124px;
    }

    .product-card-body,
    .product-detail-copy {
        min-height: auto;
        padding: 20px;
    }

    .product-detail-media {
        min-height: 320px;
    }

    .map-frame {
        min-height: 260px;
    }

    .map-panel-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .map-panel-footer a {
        width: 100%;
    }

    .branch-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .branch-card {
        min-height: auto;
        padding: 20px;
    }

    .branch-card a {
        width: 100%;
    }

    .footer-grid > p {
        text-align: start;
    }

    .admin-main {
        width: min(100% - 20px, 1180px);
    }

    .admin-panel,
    .admin-hero,
    .login-panel {
        padding: 18px;
    }

    .gallery-admin-row,
    .item-editor-row {
        grid-template-columns: 1fr;
    }

    .gallery-admin-row img,
    .gallery-admin-row video,
    .item-editor-row > img,
    .item-editor-row > video,
    .admin-image-placeholder {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .traffic-row {
        grid-template-columns: 1fr 70px 70px 70px;
        overflow-x: auto;
    }
}
