* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    -webkit-text-size-adjust: 100%
}

body {
    font-family: 'Barlow', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background: #c9b47e;
}

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

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

a:hover {
    color: #a68f57;
}

.disp {
    font-family: 'Barlow Condensed', sans-serif;
}

/* ---------- header / nav ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(20px, 5vw, 72px);
    background: #c9b47e;
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hero-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 2px;
}

.brand img {
    height: 30px;
    width: auto;
    display: block;
}

.brand-mark {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: .04em;
    color: #fff;
}

.brand-rule {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, .28);
}

.brand-sub {
    font-size: 6px;
    font-weight: 600;
    letter-spacing: .32em;
    color: oklch(0.3734 0.0486 139.45);
    text-transform: uppercase;
    padding-top: 14px;
}

.nav {
    display: flex;
    gap: clamp(14px, 1.8vw, 30px);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase
}

.nav a {
    color: #33472e;
}

.nav a:hover {
    color: #a68f57;
}

.nav a.active {
    color: #33472e;
    border-bottom: 2px solid oklch(0.658 0.0795 87.88);
    padding-bottom: 2px
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    margin-right: -10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: none;
    border: 0;
    cursor: pointer
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #a68f57;
    transition: transform .25s ease, opacity .2s ease
}

.open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
}

.open .nav-toggle span:nth-child(2) {
    opacity: 0
}

.open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
}

.corp-email {
    display: inline-block;
    margin-top: 6px;
    font-size: 17px;
    color: rgba(238, 240, 230, .7);
}

.contact-person {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-top: 3px solid #c9b47e;
    padding: 30px 28px;
}

.contact-title {
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #c9b47e;
}

.contact-name {
    font-size: 28px;
    font-weight: 700;
    margin-top: 6px;
    color: #fff;
}

.contact-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .04em;
    color: #c9b47e;
}

.contact-number span {
    font-size: 15px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(238, 240, 230, .7);
}

@media (max-width:860px) {
    .nav-toggle {
        display: flex
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #0b1f38;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
        z-index: 60
    }

    .nav {
        background: #f7f5ee !important;
        box-shadow: 0 18px 30px -16px rgba(0, 0, 0, .6)
    }

    .open .nav {
        max-height: 60vh
    }

    .nav a {
        display: flex;
        align-items: center;
        min-height: 50px;
        padding: 0 clamp(20px, 5vw, 72px);
        border-top: 1px solid rgba(0, 0, 0, .07);
        font-size: 17px;
        color: #33472e;
    }

    .nav a.active {
        border-bottom: 0;
        color: #a68f57;
    }
}

/* ==========================================================
   Content pages (About / Quality & Production) — shared
   components on the dark forest + gold theme used on Home.
   ========================================================== */

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 72px);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #c9b47e;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 40px;
    height: 3px;
    background: #c9b47e;
    flex: none;
}

.page-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: #c9b47e;
    margin-bottom: 18px;
}

.page-title::before {
    width: 40px;
    height: 3px;
    background: #c9b47e;
    flex: none;
}

/* -- page intro band -- */
.page-hero {
    padding: clamp(64px, 12vh, 120px) 0 clamp(40px, 6vh, 64px);
    background: linear-gradient(160deg, #26361f 0%, #1f2c1a 55%, #141d10 100%);
}

.page-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.02;
    font-size: clamp(34px, 5vw, 56px);
    color: #fff;
}

.page-hero p {
    max-width: 62ch;
    margin-top: 18px;
    font-size: clamp(15px, 1.1vw, 18px);
    line-height: 1.65;
    color: rgba(238, 240, 230, .78);
}

/* -- generic section rhythm -- */
.section {
    padding: clamp(56px, 8vh, 96px) 0;
    background: #fff;
}

.section-alt {
    background: #26361f;
}

.section-head {
    max-width: 640px;
    margin-bottom: 44px;
}

.section-head h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(26px, 3.2vw, 38px);
    line-height: 1.1;
    color: #fff;
}

.section-head p {
    margin-top: 14px;
    color: rgba(238, 240, 230, .72);
    font-size: 16px;
    line-height: 1.6;
}

/* -- card surface used across grids -- */
.card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 2px;
    padding: 30px 26px;
}

.card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 19px;
    color: #fff;
    margin-bottom: 10px;
}

.card p {
    color: rgba(238, 240, 230, .7);
    font-size: 14.5px;
    line-height: 1.6;
}

.card .idx {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #c9b47e;
    margin-bottom: 16px;
    display: block;
}

/* -- About: intro grid with photo + stat chip -- */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
    align-items: center;
}

.about-grid p {
    color: #33472e;
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.65;
}

.about-grid .callout {
    border-left: 3px solid #a68f57;
    padding-left: 18px;
    color: #33472e;
    font-weight: 600;
    font-size: 17px;
}

.about-photo {
    position: relative;
}

.about-photo img {
    border-radius: 2px;
}

.stat-chip {
    position: absolute;
    bottom: -22px;
    left: -22px;
    background: #1f2c1a;
    border: 1px solid rgba(255, 255, 255, .12);
    padding: 18px 24px;
}

.stat-chip .num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #c9b47e;
    line-height: 1;
}

.stat-chip .lbl {
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(238, 240, 230, .6);
    margin-top: 6px;
}

/* -- 3 / 4 column card grids -- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

/* -- Big Picture split panel -- */
.picture-wrap {
    background: linear-gradient(160deg, #26301f 0%, #33472e 50%, #26331f 100%);
    border: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.picture-left {
    padding: 48px 44px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.picture-right {
    display: flex;
    flex-direction: column;
    color: #f7f5ee;
}

.pp-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 36px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.pp-item:last-child {
    border-bottom: none;
}

.pp-item .n {
    width: 34px;
    height: 34px;
    flex: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    background: #c9b47e;
    color: #1f2c1a;
}

.pp-item:nth-child(even) .n {
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.pp-item .t {
    font-weight: 600;
    font-size: 15.5px;
}

/* -- Certificate of Analysis -- */
.cert-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 52px;
    align-items: center;
}

.cert-card {
    background: linear-gradient(170deg, #c9b47e 10%, #c9b47e 10%, #a68f57 100%);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 32px;
}

.cert-card .row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.7);
}

.cert-card .row:last-child {
    border-bottom: none;
}

.cert-card .k {
    color: #f7f5ee;
    font-size: 14px;
}

.cert-card .v {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 20px;
}

.cert-card .foot {
    margin-top: 18px;
    padding-top: 16px;
    /* border-top: 1px solid rgba(255, 255, 255, .1); */
    font-size: 12px;
    color: #f0ede4;
}

/* -- Trusted by -- */
.trust-card {
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .04);
    overflow: hidden;
}

.trust-card .ph {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: linear-gradient(170deg, #c9b47e 10%, #c9b47e 10%, #a68f57 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-card .ph img {
    width: 50%;
    height: auto;
    object-fit: cover;
}

.trust-card .body {
    padding: 24px 26px;
    color: #33472e;
}

/* -- Production phases -- */
.phase-block {
    display: grid;
    grid-template-columns: .6fr 1.4fr;
    gap: 40px;
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.phase-block:first-of-type {
    border-top: none;
}

.phase-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #c9b47e;
    line-height: 1;
}

.phase-label {
    margin-top: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #fff;
    font-size: 16px;
}

.phase-caption {
    color: rgba(238, 240, 230, .72);
    font-size: 14.5px;
    margin-bottom: 16px;
}

.phase-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.phase-photos img {
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 2px;
}

/* -- Future / expansion stat comparison -- */
.future-wrap {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 48px 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 28px;
    align-items: center;
    text-align: center;
}

.future-card .lbl {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    color: #c9b47e;
    margin-bottom: 14px;
}

.future-card .figure {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.future-card .figure .n {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #fff;
}

.future-card .figure .s {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(238, 240, 230, .55);
    margin-top: 4px;
}

.future-arrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    color: #c9b47e;
}

/* -- CTA band + buttons -- */
.cta-band {
    background: #c9b47e;
    color: #20240f;
    text-align: center;
    padding: clamp(48px, 7vh, 72px) 0;
}

.cta-band h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(24px, 3vw, 32px);
}

.cta-band p {
    margin-top: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid transparent;
}

.btn-primary:hover {
    filter: brightness(1.08);
    color: #20240f;
}

.btn-ghost:hover {
    border-color: #a68f57;
    color: #a68f57;
}

.btn-gold {
    background: #1f2c1a;
    color: #fff;
}

.btn-gold:hover {
    background: #141d10;
    color: #fff;
}

.btn-outline {
    border-color: rgba(238, 240, 230, .35);
    color: #fff;
}

.btn-outline:hover {
    border-color: #c9b47e;
    color: #c9b47e;
}

/* -- site footer -- */
.site-footer {
    background: #141d10;
    color: rgba(238, 240, 230, .6);
    padding: 40px 0 24px;
    font-size: 13px;
}

.site-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* ---------- responsive layout overrides ---------- */
@media (max-width:1100px) {
    .hero {
        grid-template-columns: 1fr !important;
        min-height: auto !important
    }

    .hero-media {
        min-height: min(60vw, 340px) !important
    }

    .hero-copy {
        padding: clamp(36px, 7vh, 72px) 0 !important
    }
}

@media (max-width:1000px) {

    .about-grid,
    .cert-grid,
    .grid-2,
    .phase-block {
        grid-template-columns: 1fr;
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .picture-wrap {
        grid-template-columns: 1fr;
    }

    .picture-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .future-wrap {
        grid-template-columns: 1fr;
    }

    .future-arrow {
        transform: rotate(90deg);
    }

    .stat-chip {
        position: static;
        margin-top: 16px;
    }
}

@media (max-width:860px) {
    .m-stack {
        grid-template-columns: 1fr !important
    }

    .svc-media {
        min-height: min(58vw, 260px) !important
    }

    .gal-wide {
        grid-column: span 1 !important
    }

    .m-col {
        flex-direction: column !important;
        align-items: flex-start !important
    }
}

@media (max-width:640px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .phase-photos {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:520px) {
    .site-footer-row {
        align-items: flex-start !important
    }
}