:root {
    --background: #e6e6e6;
    --surface: #ffffff;
    --ink: #000000;
    --muted: #242424;
    --accent-soft: #a8b8ff;
    --accent-dark: #001325;
    --accent: #003870;
    --container: 74rem;
    --shadow: 0 0.7rem 2.2rem rgba(29, 20, 19, 0.05);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

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

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

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.container {
    margin: 0 auto;
    max-width: var(--container);
    padding: 0 1.5rem;
}

.site-header {
    background: var(--accent-dark);
    border-bottom: 1px solid var(--accent);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header-content {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 4.75rem;
}

.wordmark-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wordmark {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.wordmark-primary {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    letter-spacing: 0.16em;
    color: var(--surface);
}

.wordmark-logo {
    width: 4rem;
    height: 4rem;
    object-fit: cover;
}

.wordmark-secondary {
    color: var(--surface);
    font-size: 0.67rem;
    letter-spacing: 0.29em;
}

.site-nav {
    display: flex;
    gap: clamp(1rem, 4vw, 2.5rem);
    font-size: 0.93rem;
}

.site-nav a {
    color: var(--surface);
    transition: color 150ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible, 
.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--accent-soft);
}

.hero {
    padding: clamp(3.25rem, 8vw, 6.5rem) 0 clamp(3rem, 7vw, 5.5rem);
}

.hero-grid {
    align-items: center;
    display: grid;
    gap: clamp(2.25rem, 5vw, 5rem);
    grid-template-columns: minmax(17rem, 0.93fr) minmax(18rem, 1.07fr);
}

.eyebrow {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-copy h1 {
    font-size: clamp(2.55rem, 5.2vw, 4.7rem);
    margin-bottom: 1.5rem;
}

.hero-description {
    color: var(--muted);
    font-size: clamp(1rem, 1.3vw, 1.08rem);
    max-width: 31rem;
}

.hero-visual {
    align-items: center;
    aspect-ratio: 4 / 4.4;
    background:
        linear-gradient(140deg, rgba(52, 34, 82, 0.08), rgba(52, 34, 82, 0)),
        var(--muted);
    border-radius: 0.35rem;
    color: var(--muted);
    display: flex;
    font-size: 0.78rem;
    justify-content: center;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    overflow: hidden;
}

.hero-visual > img, .about-visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section {
    border-top: 1px solid var(--accent-dark);
    padding: clamp(3.25rem, 7vw, 5.5rem) 0;
}

.section-heading {
    align-items: start;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-heading h2,
.two-column h2 {
    font-size: clamp(2rem, 3.4vw, 3rem);
}

.section-intro {
    color: var(--muted);
}

.product-grid, .about-grid {
    display: grid;
    gap: clamp(1rem, 2vw, 1.5rem);
    grid-template-columns: repeat(4, 1fr);
}

.product-link {
    border: 3px solid var(--accent);
    background-color: var(--accent-dark);
    padding: 6px;
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 600;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    color: var(--surface);
}

.product-link:hover {
    transform: scale(1.05);
    background-color: var(--accent-soft);
    color: var(--accent-dark);
}

.product-card {
    background: var(--surface);
    border: 3px solid var(--accent);
    border-radius: 0.25rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.product-image {
    aspect-ratio: 4 / 5;
    background:
        linear-gradient(135deg, transparent 0%, rgba(52, 34, 82, 0.07) 100%),
        #efebe4;
    border-bottom: 1px solid var(--accent);
    overflow: hidden;
}

.product-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 1.25rem 1.1rem 1.35rem;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--muted);
    font-size: 0.7rem;
    letter-spacing: 0.17em;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
}

.product-content h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.55rem;
}

.product-note {
    color: var(--muted);
    font-size: 0.9rem;
}

.two-column {
    display: grid;
    gap: clamp(2rem, 6vw, 7rem);
    grid-template-columns: 1fr 1fr;
}

.body-copy {
    color: var(--muted);
    display: grid;
    gap: 1.1rem;
    max-width: 31rem;
    padding-top: 0.4rem;
}

.details-heading {
    margin-bottom: 2.25rem;
}

.detail-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, 1fr);
}

.detail-grid article {
    border-left: 1px solid var(--accent);
    padding: 0.4rem 1.5rem 0.6rem;
}

.detail-grid h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.65rem;
}

.detail-grid p {
    color: var(--muted);
    font-size: 0.94rem;
}

.about-visual {
    align-items: center;
    aspect-ratio: 4 / 4.4;
    background:
        linear-gradient(140deg, rgba(52, 34, 82, 0.08), rgba(52, 34, 82, 0)),
        var(--accent-soft);
    border-radius: 0.35rem;
    color: var(--muted);
    display: flex;
    font-size: 0.78rem;
    justify-content: center;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    overflow: hidden;
}

.site-footer {
    background: var(--ink);
    color: var(--background);
    padding: 2.2rem 0;
    transition: color 150ms ease;
}

.footer-content {
    align-items: start;
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-social-label {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.1rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    width: 100%;
}

.footer-note {
    color: #d0cac0;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    fill: white;
    padding: 0.5rem 0.5rem 0.5rem 0;
    transition: color 150ms ease;
}

.footer-icon:hover {
    fill: var(--accent-soft);
}

@media (max-width: 58rem) {
    .hero-grid,
    .two-column {
        grid-template-columns: 1fr;
    }

    .hero-visual, .about-visual {
        aspect-ratio: 16 / 10;
    }

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

@media (max-width: 40rem) {
    .container {
        padding: 0 1.1rem;
    }

    .header-content {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 1.1rem;
        padding-top: 1.1rem;
    }

    .site-nav {
        width: 100%;
    }

    .section-heading,
    .footer-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-grid,
    .about-grid,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-grid article {
        border-left: 0;
        border-top: 1px solid var(--accent);
        padding: 1.25rem 0 0;
    }
}
