:root {
    --ink: #151515;
    --soft-ink: #4f514d;
    --paper: #f8f7f3;
    --white: #ffffff;
    --line: #dedbd2;
    --accent: #4a6b57;
    --accent-dark: #263c2e;
    --clay: #b77457;
    --shadow: 0 24px 60px rgba(21, 21, 21, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

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

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 72px;
    padding: 14px clamp(20px, 5vw, 72px);
    background: rgba(248, 247, 243, 0.9);
    border-bottom: 1px solid rgba(222, 219, 210, 0.8);
    backdrop-filter: blur(18px);
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    font-weight: 800;
}

.brand-mark strong,
.main-nav a {
    font-size: 0.94rem;
}

.main-nav {
    display: flex;
    gap: 22px;
}

.main-nav a {
    color: var(--soft-ink);
    text-decoration: none;
}

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: center;
    min-height: calc(100vh - 72px);
    padding: clamp(36px, 6vw, 84px) clamp(20px, 5vw, 72px);
}

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

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

h1 {
    margin-bottom: 22px;
    font-size: clamp(2.6rem, 7vw, 6rem);
    line-height: 0.96;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.9rem);
    line-height: 1.02;
    letter-spacing: 0;
}

h3 {
    font-size: 1.2rem;
}

.hero-copy p,
.section-copy p,
.section-heading p {
    color: var(--soft-ink);
    font-size: 1.06rem;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid var(--ink);
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
}

.button.primary {
    background: var(--ink);
    color: var(--white);
}

.button.secondary {
    background: transparent;
}

.hero-media {
    min-height: 520px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.hero-media img,
.media-tile img,
.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.statement-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border-block: 1px solid var(--line);
}

.statement-band div {
    min-height: 112px;
    padding: 24px clamp(20px, 5vw, 72px);
    background: var(--white);
}

.statement-band span {
    display: block;
    color: var(--soft-ink);
    font-size: 0.84rem;
}

.statement-band strong {
    display: block;
    margin-top: 4px;
    font-size: 1.2rem;
}

.split-section,
.editorial-section,
.products-section {
    padding: clamp(64px, 9vw, 124px) clamp(20px, 5vw, 72px);
}

.split-section,
.editorial-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
    gap: clamp(24px, 6vw, 88px);
    align-items: center;
}

.editorial-section {
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
    background: var(--white);
}

.section-copy {
    max-width: 780px;
}

.feature-panel,
.contact-box {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.clean-list {
    display: grid;
    gap: 18px;
    margin: 0;
    padding-left: 20px;
    color: var(--soft-ink);
}

.text-link {
    display: inline-flex;
    margin-top: 12px;
    color: var(--accent-dark);
    font-weight: 800;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.media-tile {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.products-section {
    background: #ebe8df;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

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

.product-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(21, 21, 21, 0.12);
}

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

.product-card h3 {
    min-height: 54px;
    margin: 18px 18px 8px;
    font-size: 1rem;
    line-height: 1.25;
}

.product-card p {
    margin: 0 18px 20px;
    color: var(--accent-dark);
    font-weight: 800;
}

.product-source {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.76rem;
    font-weight: 800;
}

.muted {
    background: var(--ink);
    color: var(--white);
}

.muted p,
.muted .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.contact-box {
    display: grid;
    gap: 6px;
    background: #22231f;
    border-color: rgba(255, 255, 255, 0.14);
}

.contact-box span {
    color: rgba(255, 255, 255, 0.68);
}

.contact-box strong {
    font-size: 1.6rem;
}

.contact-box a {
    color: var(--white);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 28px clamp(20px, 5vw, 72px);
    background: #0d0d0c;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-footer a,
.footer-link {
    color: rgba(255, 255, 255, 0.86);
}

.footer-link {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font: inherit;
    text-decoration: underline;
}

dialog {
    width: min(720px, calc(100vw - 28px));
    max-height: 82vh;
    padding: 34px;
    border: 0;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.55);
}

.dialog-close {
    float: right;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    font-size: 1.4rem;
}

@media (max-width: 920px) {
    .hero-section,
    .split-section,
    .editorial-section {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
    }

    .hero-media {
        min-height: 360px;
    }

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

@media (max-width: 640px) {
    .site-header,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .main-nav {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .statement-band,
    .product-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 3rem;
    }
}
