:root {
    --bg: #F6F4EF;
    --bg-dark: #15171B;
    --panel-dark: #1D2025;
    --ink: #1B1D21;
    --steel: #5B6470;
    --steel-light: #8C93A0;
    --line: #DBD7CC;
    --line-dark: #31353C;
    --accent: #BF5B1E;
    --accent-ink: #8F420F;
    --teal: #1E7370;
    --max: 1180px;
    --radius: 2px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: 'Archivo', system-ui, sans-serif;
    margin: 0;
    color: var(--ink);
    letter-spacing: -0.01em;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    font-family: inherit;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 28px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}


/* ---------- Header ---------- */

header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(246, 244, 239, 0.94);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
}

.util-bar {
    background: var(--bg-dark);
    border-bottom: 1px solid var(--line-dark);
}

.util-bar .wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 38px;
    gap: 2px;
}

.util-bar a {
    font-size: 0.8rem;
    color: #B9B6AD;
    padding: 6px 12px;
}

.util-bar a:hover {
    color: #fff;
}

@media (max-width:900px) {
    .util-bar {
        display: none;
    }
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink);
}

.logo svg {
    width: 30px;
    height: 30px;
    flex: none;
}

.logo .mark {
    color: var(--accent);
}

nav.primary {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    font-size: 0.94rem;
    font-weight: 500;
    color: var(--ink);
    border: none;
    background: none;
    cursor: pointer;
    border-radius: var(--radius);
}

.nav-link:hover {
    color: var(--accent-ink);
}

.nav-link .caret {
    width: 9px;
    height: 9px;
    transition: transform .18s ease;
}

.nav-item.open .caret {
    transform: rotate(180deg);
}

.mega {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px -20px rgba(20, 20, 20, 0.35);
    padding: 18px;
    min-width: 300px;
    display: none;
    border-radius: var(--radius);
}

.nav-item.open .mega {
    display: block;
}

.mega a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 9px 10px;
    font-size: 0.9rem;
    color: var(--ink);
    border-radius: var(--radius);
}

.mega a:hover {
    background: #F2EEE5;
}

.mega a small {
    color: var(--steel);
    font-size: 0.78rem;
    font-weight: 400;
}

.mega.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px 18px;
    min-width: 460px;
}

.nav-item.open .mega.grid2 {
    display: grid;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 4px;
}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: none;
    background: none;
    color: var(--ink);
    cursor: pointer;
    position: relative;
    border-radius: 50%;
}

.icon-btn:hover {
    background: #EFEBE0;
}

.icon-btn svg {
    width: 19px;
    height: 19px;
}

.icon-btn .badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 15px;
    height: 15px;
    padding: 0 3px;
    background: var(--accent);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

.lang-select .nav-link {
    padding: 10px 10px;
}

.lang-select .mega {
    right: 0;
    left: auto;
    min-width: 160px;
}

.lang-select .mega a {
    flex-direction: row;
    justify-content: space-between;
}

.search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 0;
    opacity: 0;
    padding: 0;
    height: 38px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 20px 0 0 20px;
    font-size: 0.88rem;
    color: var(--ink);
    transition: width .22s ease, opacity .18s ease, padding .22s ease;
}

.search-wrap.active .search-input {
    width: 200px;
    opacity: 1;
    padding: 0 14px;
    margin-right: -18px;
}

.search-wrap.active .icon-btn {
    background: #fff;
    border: 1px solid var(--line);
    border-left: none;
    border-radius: 0 20px 20px 0;
}

@media (max-width:900px) {
    .search-wrap.active .search-input {
        width: 150px;
    }
}

@media (max-width:560px) {
    .search-wrap.active .search-input {
        position: absolute;
        right: 44px;
        width: min(60vw, 220px);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-ink);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
}

.btn-ghost:hover {
    border-color: var(--steel);
}

.btn-ghost-dark {
    background: transparent;
    color: #EDEBE4;
    border-color: var(--line-dark);
}

.btn-ghost-dark:hover {
    border-color: var(--steel-light);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    position: relative;
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span::before {
    position: absolute;
    top: -6px;
}

.menu-toggle span::after {
    position: absolute;
    top: 6px;
}

.menu-toggle.active span {
    background: transparent;
}

.menu-toggle.active span::before {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span::after {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width:960px) {
    nav.primary,
    .nav-cta .btn-ghost {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
}

#mobile-panel {
    display: none;
    border-top: 1px solid var(--line);
    background: #fff;
}

#mobile-panel.active {
    display: block;
}

#mobile-panel .wrap {
    padding: 14px 28px 26px;
}

.m-group summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 2px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px solid var(--line);
}

.m-group summary::-webkit-details-marker {
    display: none;
}

.m-group[open] summary .caret {
    transform: rotate(180deg);
}

.m-group .caret {
    width: 10px;
    height: 10px;
    transition: transform .18s ease;
}

.m-sub {
    padding: 4px 2px 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.m-sub a {
    font-size: 0.92rem;
    color: var(--steel);
}

.m-flat a {
    display: block;
    padding: 14px 2px;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
}


/* ---------- Hero ---------- */

.hero {
    background: var(--bg-dark);
    color: #EDEBE4;
    padding: 76px 0 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.86rem;
    color: var(--steel-light);
    padding-bottom: 20px;
}

.kicker::before {
    content: "";
    width: 22px;
    height: 1px;
    background: var(--accent);
}

.hero h1 {
    font-size: clamp(2.3rem, 4.4vw, 3.5rem);
    line-height: 1.06;
    font-weight: 700;
    max-width: 15ch;
}

.hero-copy {
    margin-top: 22px;
    font-size: 1.08rem;
    color: #C7C4BB;
    max-width: 46ch;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 34px;
    margin-top: 56px;
    border-top: 1px solid var(--line-dark);
    padding-top: 26px;
}

.stat b {
    display: block;
    font-family: 'Archivo', sans-serif;
    font-size: 1.6rem;
    color: #fff;
}

.stat span {
    font-size: 0.82rem;
    color: var(--steel-light);
}

.hero-art {
    position: relative;
    padding: 20px 0 40px;
}

.hero-art svg {
    width: 100%;
    height: auto;
}

.hero-art img {
    width: 100%;
    height: auto;
    border: 1px solid var(--line-dark);
    background: #fff;
    padding: 28px;
}

.hero-art .stroke {
    stroke: #54586080;
}

.hero-art .accentline {
    stroke: var(--accent);
}

.hero-art .tealline {
    stroke: var(--teal);
}

.hero-art .dash {
    stroke-dasharray: 6 8;
    animation: march 1.6s linear infinite;
}

@keyframes march {
    to {
        stroke-dashoffset: -28;
    }
}

.hero-art .fillcard {
    fill: var(--panel-dark);
}

.hero-art text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    fill: #9AA0AB;
}


/* ---------- Sections shared ---------- */

section {
    padding: 96px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.section-head h2 {
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    max-width: 16ch;
}

.section-head p {
    color: var(--steel);
    max-width: 42ch;
    font-size: 1rem;
}

.section-tag {
    font-size: 0.86rem;
    color: var(--accent-ink);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}


/* ---------- Intro / About ---------- */

.intro {
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.intro .wrap {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 50px;
    padding: 70px 28px;
}

.intro-lead {
    font-size: 1.5rem;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    line-height: 1.32;
}

.intro-body {
    color: var(--steel);
    font-size: 1.02rem;
    max-width: 60ch;
}

.intro-body p+p {
    margin-top: 14px;
}


/* ---------- Product gallery (pictures) ---------- */

.gallery-strip {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
}

.gallery-strip::-webkit-scrollbar {
    height: 6px;
}

.gallery-strip::-webkit-scrollbar-thumb {
    background: var(--line);
    border-radius: 4px;
}

.gallery-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    background: #fff;
    display: flex;
    flex-direction: column;
}

.gallery-pic {
    height: 180px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.gallery-pic svg,
.gallery-pic img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    color: var(--accent-ink);
}

.dash-line {
    animation: march 1.6s linear infinite;
}

.gallery-info {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gallery-info h3 {
    font-size: 1rem;
}

.gallery-info span {
    font-size: 0.84rem;
    color: var(--steel);
}


/* ---------- About product ---------- */

.about-product {
    background: var(--bg-dark);
    color: #EDEBE4;
}

.about-product .wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.about-product h2 {
    color: #fff;
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    max-width: 14ch;
}

.about-product .lead {
    color: #C7C4BB;
    margin-top: 18px;
    font-size: 1.02rem;
    max-width: 44ch;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
}

.feature {
    border-top: 1px solid var(--line-dark);
    padding-top: 16px;
}

.feature h4 {
    font-size: 1rem;
    color: #fff;
}

.feature p {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--steel-light);
}

@media (max-width:800px) {
    .about-product .wrap {
        grid-template-columns: 1fr;
    }
    .feature-list {
        grid-template-columns: 1fr;
    }
}


/* ---------- Markets + product details ---------- */

.markets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.market-card {
    background: var(--bg);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.market-pic {
    height: 140px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.market-pic svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.market-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.market-card .icon {
    width: 32px;
    height: 32px;
    color: var(--accent);
}

.market-card h3 {
    font-size: 1.15rem;
}

.market-card p {
    color: var(--steel);
    font-size: 0.92rem;
}

.market-products {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    padding-top: 10px;
}

.chip {
    font-size: 0.76rem;
    padding: 4px 9px;
    border: 1px solid var(--line);
    color: var(--steel);
    border-radius: 20px;
    background: #fff;
}

@media (max-width:900px) {
    .markets-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:560px) {
    .markets-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- Categories & segments (tabbed) ---------- */

.categories {
    background: #EFEBE0;
}

.cat-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 0;
    border: 1px solid var(--line);
    background: var(--bg);
}

.cat-tabs {
    border-right: 1px solid var(--line);
}

.cat-tab {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
}

.cat-tab span.name {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 0.96rem;
}

.cat-tab span.tag {
    font-size: 0.8rem;
    color: var(--steel);
}

.cat-tab:hover {
    background: #F2EEE5;
}

.cat-tab.active {
    background: #fff;
    border-left: 3px solid var(--accent);
}

.cat-panel {
    padding: 40px;
}

.cat-pic {
    height: 220px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    margin-bottom: 28px;
}

.cat-pic svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.cat-panel h3 {
    font-size: 1.5rem;
}

.cat-panel .desc {
    color: var(--steel);
    margin-top: 12px;
    max-width: 60ch;
}

.spec-table {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 30px;
    margin-top: 28px;
}

.spec-row {
    border-top: 1px solid var(--line);
    padding-top: 10px;
}

.spec-row .k {
    font-size: 0.78rem;
    color: var(--steel-light);
    text-transform: lowercase;
}

.spec-row .v {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    margin-top: 2px;
}

.segment-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.segment-list span {
    font-size: 0.84rem;
    padding: 7px 13px;
    border: 1px solid var(--line);
    background: #fff;
}

@media (max-width:800px) {
    .cat-layout {
        grid-template-columns: 1fr;
    }
    .cat-tabs {
        display: flex;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
    .cat-tab {
        border-bottom: none;
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .cat-tab.active {
        border-left: none;
        border-bottom: 3px solid var(--accent);
    }
    .cat-panel {
        padding: 28px 20px;
    }
}


/* ---------- Process ---------- */

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

.process-step {
    border-top: 2px solid var(--ink);
    padding-top: 18px;
}

.process-step .idx {
    font-family: 'Archivo', sans-serif;
    font-size: 0.95rem;
    color: var(--accent-ink);
}

.process-step h3 {
    margin-top: 10px;
    font-size: 1.15rem;
}

.process-step p {
    margin-top: 10px;
    color: var(--steel);
    font-size: 0.94rem;
}

@media (max-width:800px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- News ---------- */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.news-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 22px;
}

.news-thumb {
    height: 160px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, #E7E2D5, #F6F4EF);
    position: relative;
    overflow: hidden;
}

.news-thumb svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.news-tag {
    font-size: 0.78rem;
    color: var(--teal);
    font-weight: 600;
}

.news-card h3 {
    font-size: 1.05rem;
    line-height: 1.35;
}

.news-card p.excerpt {
    font-size: 0.9rem;
    color: var(--steel);
}

.news-date {
    font-size: 0.82rem;
    color: var(--steel-light);
}

.news-status {
    color: var(--steel);
    font-size: 0.9rem;
}

@media (max-width:900px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- Media (photos & videos) ---------- */

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.media-card {
    border: 1px solid var(--line);
    background: #fff;
    overflow: hidden;
}

.media-thumb {
    height: 190px;
    position: relative;
    overflow: hidden;
    background: #EFEAdd;
}

.media-thumb svg,
.media-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-kind {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 4px 9px;
    background: rgba(27, 29, 33, 0.82);
    color: #fff;
    border-radius: 20px;
}

.media-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 29, 33, 0.28);
}

.media-play::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 4px;
    border-style: solid;
    border-width: 11px 0 11px 18px;
    border-color: transparent transparent transparent #fff;
}

.media-play-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    border: 1.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-info {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.media-info h3 {
    font-size: 0.98rem;
    line-height: 1.35;
}

.media-info span.tag {
    font-size: 0.78rem;
    color: var(--teal);
    font-weight: 600;
}

.media-info span.date {
    font-size: 0.8rem;
    color: var(--steel-light);
}

@media (max-width:900px) {
    .media-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .media-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- FAQ ---------- */

.faq {
    background: #EFEBE0;
}

.faq-list {
    max-width: 820px;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 4px;
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 1.03rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item .plus {
    width: 16px;
    height: 16px;
    position: relative;
    flex: none;
}

.faq-item .plus::before,
.faq-item .plus::after {
    content: "";
    position: absolute;
    background: var(--ink);
}

.faq-item .plus::before {
    width: 16px;
    height: 2px;
    top: 7px;
    left: 0;
}

.faq-item .plus::after {
    width: 2px;
    height: 16px;
    top: 0;
    left: 7px;
    transition: transform .18s ease;
}

.faq-item[open] .plus::after {
    transform: rotate(90deg);
}

.faq-item .faq-a {
    padding: 0 4px 24px;
    color: var(--steel);
    max-width: 70ch;
    font-size: 0.98rem;
}

.faq-item .faq-a a {
    color: var(--accent-ink);
    font-weight: 600;
}

.faq-item .faq-a ul {
    margin-top: 8px;
    padding-left: 18px;
    list-style: disc;
}

.faq-item .faq-a li {
    margin-bottom: 4px;
}


/* ---------- Inquiry / contact form ---------- */

.contact-panel {
    background: #fff;
    border: 1px solid var(--line);
    padding: 34px;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-panel h3 {
    color: var(--ink);
    font-size: 1.2rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field label {
    font-size: 0.82rem;
    color: var(--steel);
}

.field input,
.field textarea,
.field select {
    border: 1px solid var(--line);
    padding: 10px 12px;
    font-size: 0.94rem;
    font-family: inherit;
    background: #fff;
    color: var(--ink);
    border-radius: var(--radius);
}

.field textarea {
    resize: vertical;
    min-height: 90px;
}

.form-msg {
    font-size: 0.86rem;
    padding: 10px 12px;
    border-radius: var(--radius);
    display: none;
}

.form-msg.show {
    display: block;
}

.form-msg.ok {
    background: #E5F1EE;
    color: #1E5E4F;
}

.form-msg.err {
    background: #F6E6E1;
    color: #8F420F;
}


/* ---------- CTA band ---------- */

.cta-band {
    background: var(--bg-dark);
    color: #EDEBE4;
}

.cta-band .wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 48px;
    padding: 64px 28px;
    flex-wrap: wrap;
}

.cta-band h2 {
    color: #fff;
    font-size: 1.9rem;
    max-width: 16ch;
}

.cta-band p {
    color: var(--steel-light);
    margin-top: 10px;
    max-width: 40ch;
}

.cta-copy {
    flex: 1;
    min-width: 260px;
}


/* ---------- Footer ---------- */

footer {
    background: var(--panel-dark);
    color: #B9B6AD;
    padding: 64px 0 28px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--line-dark);
}

.foot-brand .logo {
    color: #fff;
}

.foot-brand p {
    margin-top: 16px;
    color: #8A8880;
    font-size: 0.9rem;
    max-width: 32ch;
}

.foot-col h4 {
    font-size: 0.86rem;
    color: #8A8880;
    font-weight: 600;
    margin-bottom: 16px;
}

.foot-col ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.foot-col a {
    font-size: 0.9rem;
    color: #D7D4CA;
}

.foot-col a:hover {
    color: #fff;
}

.foot-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.foot-social a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.foot-social svg {
    width: 15px;
    height: 15px;
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 26px;
    font-size: 0.82rem;
    color: #7B7970;
}

.foot-bottom .legal {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.foot-bottom a:hover {
    color: #EDEBE4;
}

@media (max-width:900px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:560px) {
    .foot-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-art {
        order: -1;
    }
    .intro .wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width:700px) {
    section {
        padding: 64px 0;
    }
    .hero {
        padding-top: 60px;
    }
}


/* ============================================================
   INVENTORY NAV ENTRY
   Added for the "Inventory" link that opens the stock app in
   /inventory/. Scoped to its own classes so nothing else in the
   header changes.
   ============================================================ */

.nav-link-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link-icon .nav-ico {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    color: var(--accent, #C1511E);
    transition: transform .18s ease;
}

.nav-link-icon:hover .nav-ico {
    transform: translateY(-1px);
}


/* The round icon button version sits next to favourites/search. It is
   an <a>, not a <button>, so it needs the button box styles restated. */

a.icon-btn {
    text-decoration: none;
}

a.icon-btn:hover {
    background: #EFEBE0;
}


/* Mobile drawer entry — flagged so it reads as an app, not a page anchor. */

.m-flat a.m-inventory {
    font-weight: 600;
}

.m-flat a.m-inventory::after {
    content: "app";
    margin-left: 8px;
    padding: 1px 6px;
    border: 1px solid var(--line, #DED8CB);
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--steel, #6B6B6B);
    vertical-align: middle;
}