:root {
    --black: #000;
    --charcoal: #0b0b0b;
    --offwhite: #F7F7F2;
    --gold: #CBB26A;
    --soft-gold: rgba(203, 178, 106, .15)
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--black);
    color: #eee;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6
}

a {
    color: var(--gold);
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 12px
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px
}

h1,
h2,
h3 {
    line-height: 1.25
}

h1 {
    font-size: clamp(28px, 5vw, 48px)
}

h2 {
    font-size: clamp(22px, 3.5vw, 32px)
}

h3 {
    font-size: clamp(18px, 3vw, 24px)
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
}

.btn {
    display: inline-block;
    padding: 12px 18px;
    border: 1px solid var(--gold);
    color: #000;
    background: var(--gold);
    border-radius: 999px;
    font-weight: 800;
    transition: .25s;
    min-height: 44px
}

.btn.secondary {
    background: transparent;
    color: var(--gold)
}

.btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px)
}

.nav {
    position: sticky;
    top: 0;
    z-index: 60;
    background: linear-gradient(180deg, rgba(20, 20, 20, .92), rgba(0, 0, 0, .85));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(203, 178, 106, .28);
    box-shadow: 0 1px 0 rgba(203, 178, 106, .12)
}

.nav .inner {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: .8px
}

.brand .mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #CBB26A, #9E8540);
    display: grid;
    place-items: center;
    color: #000;
    font-weight: 900
}

.menu {
    display: flex;
    gap: 14px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 100%
}

.menu::-webkit-scrollbar {
    display: none
}

.menu a {
    color: #ddd;
    padding: 8px 10px;
    border-radius: 10px;
    white-space: nowrap
}

.menu a.active,
.menu a:hover {
    background: rgba(203, 178, 106, .09);
    color: #fff
}

.nav .toggle {
    display: none;
    background: transparent;
    border: 1px solid rgba(203, 178, 106, .45);
    color: #eee;
    padding: 8px 12px;
    border-radius: 12px;
    font-weight: 700;
    margin-left: 10px
}

.mobile-drawer {
    display: none;
    
    inset: 72px 0 0 0;
    background: #080808f2;
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(203, 178, 106, .25);
    z-index: 65;
    padding: 18px 16px
}

.mobile-drawer.open {
    display: block
}

.mobile-drawer a {
    display: block;
    padding: 14px 6px;
    color: #f1f1f1;
    border-bottom: 1px solid rgba(203, 178, 106, .12)
}

.mobile-drawer .cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px
}

.mobile-drawer .cta a {
    display: block;
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgba(203, 178, 106, .35);
    padding: 12px 10px
}

.mobile-drawer .cta a.primary {
    background: var(--gold);
    color: #000;
    font-weight: 800
}

.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(180deg, rgba(17, 24, 39, 0.25), rgba(0, 0, 0, 0.8)), url('../img/hero-factory.jpg') center/cover no-repeat
}

.hero .content {
    text-align: center
}

.hero p {
    max-width: 820px;
    margin: 0 auto 24px auto;
    color: #ddd
}

.section {
    padding: 70px 0;
    border-top: 1px solid rgba(203, 178, 106, 0.1)
}

.section.offwhite {
  background: #F4F4F0; /* slightly darker offwhite */
  color: #111;
}
.section.offwhite .kpi .value { 
  color: #000; /* darken KPI text */
}
.section.offwhite .kpi .label {
  color: #444;
}
.section.offwhite .item {
  border-color: rgba(0,0,0,.15);
  background: rgba(255,255,255,0.6);
}


.grid {
    display: grid;
    gap: 24px
}

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

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

.card {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--soft-gold);
    border-radius: 18px;
    padding: 22px
}

.card h3 {
    margin-top: 0
}

.kpi {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap
}

.kpi .item {
    border: 1px solid rgba(203, 178, 106, .2);
    border-radius: 16px;
    padding: 18px 24px;
    min-width: 180px;
    text-align: center;
    background: rgba(255, 255, 255, .02)
}

.kpi .value {
    font-size: 28px;
    font-weight: 800;
    color: #fff
}

.kpi .label {
    color: #c9c9c9
}

.badge {
    display: inline-block;
    border: 1px solid rgba(203, 178, 106, .4);
    padding: 6px 10px;
    border-radius: 999px;
    color: #ddd;
    margin-right: 8px;
    margin-bottom: 8px
}

.badge.pill {
    padding: 8px 14px
}

.split {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    align-items: center
}

.form {
    display: grid;
    gap: 14px
}

.form input,
.form select,
.form textarea {
    background: #0b0b0b;
    border: 1px solid rgba(203, 178, 106, .25);
    border-radius: 12px;
    padding: 12px 14px;
    color: #eee;
    outline: none
}

.form input:focus,
.form textarea:focus {
    border-color: var(--gold)
}

.notice {
    padding: 12px 14px;
    border: 1px dashed rgba(203, 178, 106, .5);
    border-radius: 12px;
    background: rgba(203, 178, 106, .05);
    color: #e9e9e9
}

.media-card {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.media-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover
}

footer {
    background: #000;
    border-top: 1px solid rgba(203, 178, 106, .2);
    padding: 30px 0;
    margin-top: 70px
}

footer .cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px
}

.small {
    color: #aaa;
    font-size: 14px
}

.mt-2 {
    margin-top: 12px
}

.mt-3 {
    margin-top: 18px
}

.mt-4 {
    margin-top: 24px
}

.row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

.justify-center {
    justify-content: center
}

@media (max-width:1200px) {
    .menu {
        max-width: 100%
    }
}

@media (max-width:800px) {
    .menu {
        display: none
    }

    .nav .toggle {
        display: inline-block
    }

    .grid-3 {
        grid-template-columns: 1fr
    }

    .grid-2,
    .split {
        grid-template-columns: 1fr
    }
}
