:root {
    --brown: #4A3129;
    --brown-dark: #2D1B16;
    --cream: #E3DBCF;
    --paper: #F8F4EC;
    --ink: #151210;
    --muted: #77675F;
    --green: #405F51;
    --rust: #B65F3A;
    --rose: #E8B8B8;
    --glass: rgba(255, 255, 255, 0.58);
    --glass-strong: rgba(255, 255, 255, 0.76);
    --line: rgba(74, 49, 41, 0.16);
    --shadow: 0 28px 80px rgba(45, 27, 22, 0.16);
}

html {
    scrollbar-width: thin;
    scrollbar-color: #4A3129 #E3DBCF;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #E3DBCF;
}

::-webkit-scrollbar-thumb {
    background-color: #4A3129;
    border-radius: 0;
    border: 2px solid #E3DBCF;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #3b261f;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 0%, rgba(232, 184, 184, 0.36), transparent 30vw),
        radial-gradient(circle at 94% 14%, rgba(64, 95, 81, 0.18), transparent 26vw),
        linear-gradient(180deg, #fbf7f0 0%, var(--paper) 48%, #efe5d8 100%);
    font-family: "Coolvetica", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 78px;
    margin: 14px auto 0;
    width: min(1180px, calc(100% - 28px));
    padding: 0 18px;
    background: rgba(248, 244, 236, 0.68);
    border-bottom: 1px solid var(--line);
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 30px;
    box-shadow: 0 18px 60px rgba(45, 27, 22, 0.12);
    backdrop-filter: blur(24px) saturate(150%);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--paper);
    background: linear-gradient(145deg, var(--brown), var(--brown-dark));
    font-size: 15px;
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.22);
}

.brand-text {
    font-size: 15px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    padding: 12px 16px;
    color: var(--muted);
    font-size: 14px;
    border-radius: 999px;
    transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.62);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: calc(100vh - 92px);
    margin-top: -92px;
    padding-top: 92px;
    display: grid;
    align-items: end;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(23, 20, 17, 0.74), rgba(23, 20, 17, 0.1), rgba(248, 244, 236, 0.02)),
        linear-gradient(0deg, rgba(23, 20, 17, 0.5), transparent 44%);
}

.hero-product-image {
    object-position: center;
}

.hero-content {
    position: relative;
    max-width: 780px;
    margin: 0 4vw 9vh;
    padding: 34px;
    color: var(--paper);
    background: rgba(21, 18, 16, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 34px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(22px) saturate(132%);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--rust);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(48px, 8vw, 112px);
    line-height: 0.95;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 4.6vw, 62px);
    line-height: 1;
    letter-spacing: 0;
}

h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

p {
    line-height: 1.65;
}

.hero-copy {
    max-width: 590px;
    color: rgba(248, 244, 236, 0.9);
    font-size: 18px;
}

.hero-actions,
.process-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.button.primary {
    color: var(--paper);
    background: linear-gradient(145deg, var(--brown), var(--brown-dark));
    border-color: var(--brown);
    box-shadow: 0 14px 34px rgba(74, 49, 41, 0.28);
}

.button.secondary {
    color: var(--paper);
    background: transparent;
}

.button:hover {
    transform: translateY(-2px);
}

.button.ghost {
    width: fit-content;
    color: var(--brown);
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(74, 49, 41, 0.18);
    backdrop-filter: blur(14px);
}

.intro-band {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 8vw;
    margin: 34px 4vw 0;
    padding: 64px;
    background: rgba(64, 95, 81, 0.78);
    color: var(--paper);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 34px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px) saturate(140%);
}

.intro-band p:last-child {
    color: rgba(248, 244, 236, 0.84);
    font-size: 18px;
}

.service-grid,
.production-grid,
.values-grid,
.product-grid {
    display: grid;
    gap: 18px;
    padding: 84px 4vw;
}

.service-grid {
    grid-template-columns: repeat(3, 1fr);
}

.service-card,
.value-item,
.production-item,
.product-card {
    border: 1px solid var(--line);
    background: var(--glass);
    border-radius: 30px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px) saturate(145%);
    overflow: hidden;
    transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.service-card,
.value-item {
    padding: 34px;
}

.service-card:hover,
.value-item:hover,
.production-item:hover,
.product-card:hover {
    transform: translateY(-6px);
    background: var(--glass-strong);
    box-shadow: 0 34px 96px rgba(45, 27, 22, 0.2);
}

.service-card span {
    display: block;
    margin-bottom: 42px;
    color: var(--rust);
    font-weight: 700;
}

.split-section,
.about-hero,
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 680px;
    margin: 0 4vw 84px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.split-image,
.about-image,
.wide-image {
    min-height: 520px;
}

.split-copy,
.about-copy,
.contact-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7vw 5vw;
}

.split-copy {
    background: linear-gradient(145deg, rgba(74, 49, 41, 0.94), rgba(45, 27, 22, 0.96));
    color: var(--paper);
}

.split-copy p {
    color: rgba(248, 244, 236, 0.82);
}

.text-link {
    width: fit-content;
    margin-top: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--rust);
    font-weight: 700;
}

.page-hero {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    min-height: 620px;
    margin: 34px 4vw 0;
    border: 1px solid var(--line);
    border-radius: 34px;
    overflow: hidden;
    background: var(--glass);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.page-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7vw 4vw;
}

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

.production-item img {
    aspect-ratio: 4 / 3;
}

.production-item h2,
.production-item p {
    padding-right: 26px;
    padding-left: 26px;
}

.production-item h2 {
    margin-top: 24px;
    font-size: 30px;
}

.production-item p {
    padding-bottom: 26px;
    color: var(--muted);
}

.production-item .button {
    margin: 0 26px 28px;
}

.featured-products {
    padding: 0 0 84px;
}

.section-heading {
    max-width: 760px;
    padding: 0 4vw 20px;
}

.product-grid {
    grid-template-columns: repeat(4, 1fr);
    padding-top: 22px;
}

.product-card img {
    aspect-ratio: 1 / 1;
}

.product-card div {
    display: grid;
    gap: 12px;
    padding: 24px;
}

.product-card h3,
.product-card p {
    margin: 0;
}

.product-card p {
    color: var(--muted);
}

.process-strip {
    margin: 0 4vw 86px;
    padding: 42px;
    color: var(--paper);
    background: rgba(64, 95, 81, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px);
}

.process-strip h2 {
    font-size: 34px;
}

.process-list span {
    padding: 12px 16px;
    background: rgba(248, 244, 236, 0.13);
}

.about-copy {
    background: rgba(227, 219, 207, 0.72);
    backdrop-filter: blur(20px);
}

.address-bar {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    align-items: center;
    margin: -50px 7vw 54px;
    padding: 24px 28px;
    color: var(--paper);
    background: rgba(74, 49, 41, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 26px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px) saturate(145%);
    position: relative;
    z-index: 2;
}

.address-bar span {
    color: var(--cream);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.address-bar p {
    margin: 0;
    font-weight: 700;
}

.values-grid {
    grid-template-columns: repeat(3, 1fr);
}

.contact-layout {
    margin-top: 34px;
    background: rgba(227, 219, 207, 0.64);
    border: 1px solid var(--line);
    backdrop-filter: blur(22px);
}

.contact-methods {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-methods a,
.contact-methods span {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
}

.contact-form {
    display: grid;
    gap: 18px;
    align-self: center;
    margin: 7vw 4vw;
    padding: 34px;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(20px) saturate(140%);
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--line);
    border-radius: 16px;
    font: inherit;
    user-select: text;
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background: #fff;
    border-color: rgba(182, 95, 58, 0.58);
    box-shadow: 0 0 0 4px rgba(182, 95, 58, 0.12);
}

.contact-form textarea {
    resize: vertical;
}

.wide-image {
    margin: 0 4vw 86px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 4vw;
    color: var(--paper);
    background: linear-gradient(145deg, var(--ink), var(--brown-dark));
}

.site-footer p {
    margin: 0;
}

.reveal {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
    transition: opacity 800ms cubic-bezier(.2,.8,.2,1), transform 800ms cubic-bezier(.2,.8,.2,1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .site-header {
        min-height: 68px;
        border-radius: 24px;
        top: 10px;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 68px 0 auto 0;
        display: grid;
        gap: 0;
        padding: 12px 4vw 22px;
        width: min(420px, calc(100% - 28px));
        margin: 10px auto 0;
        background: rgba(248, 244, 236, 0.86);
        border-bottom: 1px solid var(--line);
        border: 1px solid rgba(255, 255, 255, 0.64);
        border-radius: 24px;
        box-shadow: var(--shadow);
        backdrop-filter: blur(24px);
        transform: translateY(-130%);
        transition: transform 260ms ease;
    }

    .site-nav.open {
        transform: translateY(0);
    }

    .site-nav a {
        padding: 16px 12px;
        border-bottom: 1px solid var(--line);
        border-radius: 14px;
    }

    .brand-text {
        display: none;
    }

    .hero {
        min-height: calc(100vh - 82px);
        margin-top: -82px;
        padding-top: 82px;
    }

    .intro-band,
    .split-section,
    .about-hero,
    .contact-layout,
    .page-hero,
    .address-bar {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .production-grid,
    .values-grid,
    .product-grid {
        grid-template-columns: 1fr;
        padding: 60px 4vw;
    }

    .intro-band {
        padding: 42px 5vw;
    }

    .page-hero img {
        min-height: 420px;
    }

    .site-footer {
        display: grid;
    }
}

@media (max-width: 560px) {
    body {
        background:
            radial-gradient(circle at 20% 0%, rgba(232, 184, 184, 0.45), transparent 72vw),
            linear-gradient(180deg, #fbf7f0 0%, #f3eadf 100%);
    }

    .site-header {
        width: calc(100% - 20px);
        min-height: 62px;
        margin-top: 10px;
        padding: 0 10px;
        border-radius: 22px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        border-radius: 15px;
        font-size: 14px;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.54);
    }

    .site-nav {
        inset: 62px 0 auto 0;
        width: calc(100% - 20px);
        padding: 10px;
        border-radius: 22px;
    }

    h1 {
        font-size: 42px;
        line-height: 0.98;
    }

    h2 {
        font-size: 34px;
        line-height: 1.05;
    }

    h3 {
        font-size: 22px;
    }

    p {
        line-height: 1.55;
    }

    .hero {
        min-height: 760px;
        margin-top: -72px;
        padding-top: 72px;
        align-items: end;
    }

    .hero-media::after {
        background:
            linear-gradient(0deg, rgba(21, 18, 16, 0.88), rgba(21, 18, 16, 0.35) 45%, rgba(21, 18, 16, 0.04)),
            linear-gradient(90deg, rgba(21, 18, 16, 0.42), transparent 70%);
    }

    .hero-product-image {
        object-position: 66% center;
    }

    .hero-content {
        margin: 0 14px 22px;
        padding: 22px;
        border-radius: 28px;
        background: rgba(21, 18, 16, 0.42);
    }

    .hero-copy {
        font-size: 16px;
    }

    .hero-actions,
    .button {
        width: 100%;
    }

    .button {
        min-height: 52px;
    }

    .featured-products {
        padding-bottom: 36px;
    }

    .section-heading {
        padding: 52px 16px 0;
    }

    .service-grid,
    .production-grid,
    .values-grid,
    .product-grid {
        gap: 14px;
        padding: 42px 14px;
    }

    .service-card,
    .value-item,
    .product-card,
    .production-item,
    .contact-form {
        border-radius: 24px;
    }

    .product-card img,
    .production-item img {
        aspect-ratio: 5 / 4;
    }

    .product-card div {
        padding: 20px;
    }

    .production-item h2 {
        font-size: 26px;
    }

    .production-item h2,
    .production-item p {
        padding-right: 20px;
        padding-left: 20px;
    }

    .production-item .button {
        margin: 0 20px 22px;
        width: calc(100% - 40px);
    }

    .intro-band,
    .split-section,
    .about-hero,
    .contact-layout,
    .page-hero {
        margin-right: 14px;
        margin-left: 14px;
        border-radius: 26px;
    }

    .intro-band,
    .split-copy,
    .about-copy,
    .contact-panel,
    .page-title {
        padding: 38px 22px;
    }

    .intro-band {
        gap: 20px;
        margin-top: 20px;
    }

    .split-image,
    .about-image,
    .wide-image {
        min-height: 360px;
    }

    .split-section,
    .about-hero,
    .contact-layout {
        min-height: auto;
        margin-bottom: 42px;
    }

    .page-hero {
        min-height: auto;
        margin-top: 22px;
    }

    .page-hero img {
        min-height: 360px;
    }

    .service-card,
    .value-item,
    .contact-form,
    .address-bar,
    .process-strip {
        padding: 22px;
    }

    .service-card span {
        margin-bottom: 26px;
    }

    .address-bar {
        margin: -22px 22px 34px;
        border-radius: 22px;
        gap: 10px;
    }

    .contact-form {
        margin: 0 22px 32px;
    }

    .contact-methods a,
    .contact-methods span {
        overflow-wrap: anywhere;
    }

    .wide-image {
        margin: 0 14px 42px;
        border-radius: 26px;
        overflow: hidden;
    }

    .process-strip {
        margin: 0 14px 42px;
        border-radius: 24px;
    }

    .process-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .process-list span {
        text-align: center;
        border-radius: 14px;
    }

    .site-footer {
        padding: 26px 18px;
        font-size: 14px;
    }
}

/* Editorial fashion-catalog direction inspired by the provided reference site. */
.promo-bar {
    position: relative;
    z-index: 30;
    overflow: hidden;
    color: #f8f4ec;
    background: #111;
    border-bottom: 1px solid #111;
}

.promo-track {
    display: flex;
    width: max-content;
    animation: promoMove 22s linear infinite;
}

.promo-track span {
    padding: 10px 32px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes promoMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

body {
    background: #f5f0e8;
}

.site-header {
    top: 0;
    width: 100%;
    min-height: 72px;
    margin: 0;
    padding: 0 28px;
    border: 0;
    border-bottom: 1px solid #151210;
    border-radius: 0;
    background: rgba(245, 240, 232, 0.92);
    box-shadow: none;
}

.brand {
    gap: 14px;
}

.brand-mark {
    width: auto;
    height: auto;
    color: #151210;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    font-size: 26px;
    letter-spacing: 0;
}

.brand-text,
.site-nav a,
.eyebrow,
.button,
.text-link,
.promo-track span {
    letter-spacing: 0;
}

.brand-text {
    color: #151210;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.site-nav {
    gap: 0;
    border-left: 1px solid rgba(21, 18, 16, 0.18);
}

.site-nav a {
    padding: 26px 18px;
    color: #151210;
    border-right: 1px solid rgba(21, 18, 16, 0.18);
    border-radius: 0;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.active {
    color: #f8f4ec;
    background: #151210;
    transform: none;
}

.hero {
    min-height: calc(100vh - 109px);
    margin-top: 0;
    padding-top: 0;
    border-bottom: 1px solid #151210;
}

.hero-media::after {
    background:
        linear-gradient(90deg, rgba(21, 18, 16, 0.68), rgba(21, 18, 16, 0.12), transparent),
        linear-gradient(0deg, rgba(21, 18, 16, 0.6), transparent 40%);
}

.hero-content {
    width: min(760px, calc(100% - 56px));
    margin: 0 28px 28px;
    padding: 0;
    color: #f8f4ec;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

h1 {
    font-size: clamp(54px, 10vw, 142px);
    font-weight: 900;
    text-transform: uppercase;
}

h2 {
    font-weight: 900;
    text-transform: uppercase;
}

.hero-copy {
    max-width: 520px;
}

.button {
    min-height: 48px;
    border-radius: 0;
    text-transform: uppercase;
}

.button.primary,
.button.ghost {
    color: #f8f4ec;
    background: #151210;
    border-color: #151210;
    box-shadow: none;
}

.button.secondary {
    color: #151210;
    background: #f8f4ec;
}

.catalog-menu {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    padding: 56px 28px;
    border-bottom: 1px solid #151210;
    background: #f5f0e8;
}

.catalog-menu h2 {
    margin: 0;
    font-size: clamp(34px, 6vw, 82px);
}

.catalog-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #151210;
    border-left: 1px solid #151210;
}

.catalog-links a {
    min-height: 108px;
    display: flex;
    align-items: end;
    padding: 18px;
    border-right: 1px solid #151210;
    border-bottom: 1px solid #151210;
    font-size: clamp(18px, 3vw, 36px);
    font-weight: 900;
    text-transform: uppercase;
    transition: background 180ms ease, color 180ms ease;
}

.catalog-links a:hover {
    color: #f8f4ec;
    background: #151210;
}

.intro-band,
.process-strip,
.address-bar {
    margin: 0;
    border: 0;
    border-bottom: 1px solid #151210;
    border-radius: 0;
    box-shadow: none;
    background: #4a3129;
}

.intro-band {
    padding: 70px 28px;
}

.service-grid,
.production-grid,
.values-grid,
.product-grid {
    gap: 0;
    padding: 0;
    border-top: 1px solid #151210;
    border-left: 1px solid #151210;
}

.service-card,
.value-item,
.production-item,
.product-card {
    border: 0;
    border-right: 1px solid #151210;
    border-bottom: 1px solid #151210;
    border-radius: 0;
    box-shadow: none;
    background: #f5f0e8;
    backdrop-filter: none;
}

.service-card:hover,
.value-item:hover,
.production-item:hover,
.product-card:hover {
    transform: none;
    box-shadow: none;
    background: #eee5d8;
}

.service-card,
.value-item {
    padding: 32px 28px;
}

.featured-products {
    padding: 0;
}

.section-heading {
    max-width: none;
    padding: 70px 28px 28px;
    border-top: 1px solid #151210;
    border-bottom: 1px solid #151210;
}

.product-card div {
    min-height: 270px;
    align-content: end;
    padding: 22px;
}

.product-card img,
.production-item img {
    border-bottom: 1px solid #151210;
}

.split-section,
.about-hero,
.contact-layout,
.page-hero {
    margin: 0;
    border: 0;
    border-bottom: 1px solid #151210;
    border-radius: 0;
    box-shadow: none;
}

.split-copy {
    background: #151210;
}

.page-hero {
    background: #f5f0e8;
}

.page-title {
    border-right: 1px solid #151210;
}

.editorial-release {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 620px;
    border-top: 1px solid #151210;
    border-bottom: 1px solid #151210;
}

.release-image {
    border-right: 1px solid #151210;
}

.release-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 18px;
    padding: 38px 28px;
    color: #f8f4ec;
    background: #151210;
}

.release-copy h2 {
    margin: 0;
}

.contact-form {
    margin: 48px 28px;
    border-radius: 0;
    box-shadow: none;
    background: #f8f4ec;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border-radius: 0;
}

.wide-image {
    margin: 0;
    border-bottom: 1px solid #151210;
}

.site-footer {
    background: #151210;
}

@media (max-width: 900px) {
    .site-header {
        width: 100%;
        min-height: 68px;
        margin: 0;
        border-radius: 0;
    }

    .site-nav {
        inset: 68px 0 auto 0;
        width: 100%;
        margin: 0;
        border-radius: 0;
        border-right: 0;
        border-left: 0;
        background: #f5f0e8;
    }

    .site-nav a {
        border-right: 0;
    }

    .brand-text {
        display: inline;
    }

    .catalog-menu,
    .editorial-release {
        grid-template-columns: 1fr;
    }

    .catalog-links {
        grid-template-columns: 1fr;
    }

    .page-title,
    .release-image {
        border-right: 0;
        border-bottom: 1px solid #151210;
    }
}

@media (max-width: 560px) {
    .promo-track span {
        padding: 9px 20px;
    }

    .site-header {
        width: 100%;
        min-height: 62px;
        padding: 0 14px;
    }

    .brand-text {
        display: none;
    }

    .hero {
        min-height: 720px;
        margin-top: 0;
        padding-top: 0;
    }

    .hero-content {
        width: calc(100% - 28px);
        margin: 0 14px 18px;
        padding: 0;
        background: transparent;
    }

    h1 {
        font-size: 45px;
    }

    .catalog-menu,
    .intro-band,
    .section-heading,
    .release-copy {
        padding: 42px 14px;
    }

    .service-grid,
    .production-grid,
    .values-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .value-item {
        padding: 24px 18px;
    }

    .split-section,
    .about-hero,
    .contact-layout,
    .page-hero {
        margin: 0;
        border-radius: 0;
    }

    .contact-form {
        margin: 0;
        border-right: 0;
        border-left: 0;
    }
}

/* Black, white, and blue brand theme. */
:root {
    --brown: #050505;
    --brown-dark: #000000;
    --cream: #F4F7FB;
    --paper: #FFFFFF;
    --ink: #050505;
    --muted: #596579;
    --green: #111827;
    --rust: #0B6BFF;
    --rose: #EAF2FF;
    --glass: rgba(255, 255, 255, 0.82);
    --glass-strong: rgba(255, 255, 255, 0.94);
    --line: rgba(5, 5, 5, 0.18);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

html {
    scrollbar-color: #050505 #FFFFFF;
}

::-webkit-scrollbar-track {
    background: #FFFFFF;
}

::-webkit-scrollbar-thumb {
    background-color: #050505;
    border-color: #FFFFFF;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #0B6BFF;
}

body {
    color: #050505;
    background: #FFFFFF;
}

.promo-bar,
.site-footer,
.split-copy,
.release-copy,
.intro-band,
.process-strip,
.address-bar {
    color: #FFFFFF;
    background: #000000;
}

.site-header {
    border-bottom-color: #050505;
    background: rgba(255, 255, 255, 0.95);
}

.brand-mark,
.brand-text,
.site-nav a {
    color: #050505;
}

.site-nav {
    border-left-color: rgba(5, 5, 5, 0.18);
}

.site-nav a {
    border-right-color: rgba(5, 5, 5, 0.18);
}

.site-nav a:hover,
.site-nav a.active,
.catalog-links a:hover {
    color: #FFFFFF;
    background: #0B6BFF;
}

.eyebrow,
.text-link,
.service-card span {
    color: #0B6BFF;
}

.button.primary,
.button.ghost {
    color: #FFFFFF;
    background: #0B6BFF;
    border-color: #0B6BFF;
}

.button.secondary {
    color: #0B6BFF;
    background: #FFFFFF;
    border-color: #FFFFFF;
}

.button:hover {
    box-shadow: 0 14px 34px rgba(11, 107, 255, 0.22);
}

.catalog-menu,
.page-hero,
.service-card,
.value-item,
.production-item,
.product-card,
.about-copy,
.contact-layout,
.contact-form {
    background: #FFFFFF;
}

.service-card:hover,
.value-item:hover,
.production-item:hover,
.product-card:hover {
    background: #F4F7FB;
}

.catalog-menu,
.catalog-links,
.catalog-links a,
.service-grid,
.production-grid,
.values-grid,
.product-grid,
.service-card,
.value-item,
.production-item,
.product-card,
.section-heading,
.split-section,
.about-hero,
.contact-layout,
.page-hero,
.editorial-release,
.release-image,
.page-title,
.product-card img,
.production-item img,
.wide-image {
    border-color: #050505;
}

.product-card p,
.production-item p,
.contact-form label {
    color: #596579;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    color: #050505;
    background: #FFFFFF;
    border-color: rgba(5, 5, 5, 0.22);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #0B6BFF;
    box-shadow: 0 0 0 4px rgba(11, 107, 255, 0.14);
}

.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #050505;
}

.product-gallery img {
    min-height: 320px;
    aspect-ratio: 1 / 1;
    border-right: 1px solid #050505;
    border-bottom: 0;
    object-fit: cover;
}

.product-gallery img:last-child {
    border-right: 0;
}

.page-hero > img,
.about-image img,
.split-image img,
.wide-image img {
    object-position: center;
}

@media (max-width: 900px) {
    .site-nav {
        background: #FFFFFF;
    }
}

@media (max-width: 700px) {
    .product-gallery {
        grid-template-columns: 1fr;
    }

    .product-gallery img {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid #050505;
    }

    .product-gallery img:last-child {
        border-bottom: 0;
    }
}

/* Premium responsive polish. */
:root {
    --accent: #A7F3D0;
    --accent-strong: #0F766E;
    --accent-soft: rgba(167, 243, 208, 0.24);
}

body {
    overflow-x: hidden;
}

.hero {
    isolation: isolate;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.06) 42%, rgba(167, 243, 208, 0.18)),
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.42), transparent 28%);
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38), 0 24px 90px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(2px) saturate(145%);
    opacity: 0.72;
}

.hero-media::after {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18) 46%, rgba(0, 0, 0, 0.02)),
        linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 44%);
}

.hero-product-image {
    transform: scale(1.01);
}

.hero-content {
    z-index: 3;
    padding: 28px;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(22px) saturate(160%);
}

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

.site-nav a:hover,
.site-nav a.active,
.catalog-links a:hover {
    color: #050505;
    background: var(--accent);
}

.eyebrow,
.text-link,
.service-card span {
    color: var(--accent-strong);
}

.button.primary,
.button.ghost {
    color: #050505;
    background: var(--accent);
    border-color: var(--accent);
}

.button.secondary {
    color: #050505;
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px) saturate(150%);
}

.button:hover {
    box-shadow: 0 14px 34px rgba(15, 118, 110, 0.24);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--accent-strong);
    box-shadow: 0 0 0 4px rgba(167, 243, 208, 0.34);
}

.service-card,
.value-item,
.production-item,
.product-card,
.contact-form,
.site-header {
    transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease, border-color 240ms ease;
}

.service-card:hover,
.value-item:hover,
.production-item:hover,
.product-card:hover {
    background: linear-gradient(180deg, #FFFFFF 0%, #F6FFFB 100%);
}

.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.site-nav.open {
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.14);
}

@media (max-width: 1180px) {
    h1 {
        font-size: clamp(44px, 8vw, 104px);
    }

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

    .production-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 760px;
    }

    .hero-media::before {
        inset: 12px;
    }

    .hero-content {
        width: min(640px, calc(100% - 32px));
        margin: 0 16px 20px;
        padding: 22px;
    }

    .catalog-menu,
    .intro-band,
    .section-heading,
    .release-copy,
    .split-copy,
    .about-copy,
    .contact-panel,
    .page-title {
        padding-right: 20px;
        padding-left: 20px;
    }

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

    .product-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .promo-track span {
        padding: 9px 18px;
    }

    .site-header {
        padding: 0 12px;
    }

    .brand-mark {
        font-size: 22px;
    }

    .hero {
        min-height: 700px;
    }

    .hero-media::before {
        inset: 8px;
    }

    .hero-media::after {
        background:
            linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.36) 52%, rgba(0, 0, 0, 0.04)),
            linear-gradient(90deg, rgba(0, 0, 0, 0.44), transparent 76%);
    }

    .hero-product-image {
        object-position: 68% center;
    }

    .hero-content {
        width: calc(100% - 24px);
        margin: 0 12px 14px;
        padding: 18px;
    }

    .hero-copy {
        font-size: 15px;
    }

    .hero-actions,
    .button {
        width: 100%;
    }

    .catalog-menu,
    .intro-band,
    .section-heading,
    .release-copy,
    .split-copy,
    .about-copy,
    .contact-panel,
    .page-title {
        padding: 36px 14px;
    }

    .product-grid,
    .service-grid,
    .values-grid,
    .production-grid {
        grid-template-columns: 1fr;
    }

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

    .product-gallery img {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid #050505;
    }

    .catalog-links a {
        min-height: 88px;
        font-size: 22px;
    }

    .product-card div,
    .production-item h2,
    .production-item p {
        padding-right: 18px;
        padding-left: 18px;
    }

    .site-footer {
        gap: 8px;
    }
}

.hero-content {
    width: min(700px, calc(100% - 56px));
}

.hero h1 {
    font-size: clamp(44px, 7vw, 96px);
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 45px;
    }
}
