:root {
    color-scheme: light;
    --ink: #171717;
    --muted: #676767;
    --line: #deddd8;
    --paper: #f7f6f1;
    --accent: #226a4b;
    --accent-soft: #dcebe3;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
}

.site-header,
main,
footer {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.site-header {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
}

.brand {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 28px;
}

nav a,
footer a {
    color: var(--muted);
    font-size: 0.92rem;
    text-decoration: none;
}

nav a:hover,
footer a:hover,
.text-link:hover {
    color: var(--accent);
}

.hero {
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid var(--line);
}

.eyebrow,
.product-label {
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

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

h1 {
    max-width: 820px;
    margin-bottom: 28px;
    font-size: clamp(3rem, 7vw, 6.6rem);
    line-height: 1.04;
    letter-spacing: -0.065em;
}

.hero-copy {
    max-width: 620px;
    margin-bottom: 38px;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.primary-link,
.text-link {
    width: fit-content;
    font-weight: 750;
    text-decoration: none;
}

.primary-link {
    padding: 14px 20px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
}

.products {
    padding: 120px 0 140px;
}

.section-heading {
    margin-bottom: 44px;
}

h2 {
    font-size: clamp(2.1rem, 4vw, 3.5rem);
    letter-spacing: -0.045em;
}

.product-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #fff;
}

.product-visual {
    min-height: 420px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 20% 20%, #f3d5a8 0, transparent 35%),
        radial-gradient(circle at 80% 80%, #9ccbb2 0, transparent 38%),
        var(--accent-soft);
}

.product-visual span {
    font-family: Georgia, serif;
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: -0.06em;
}

.product-copy {
    align-self: center;
    padding: clamp(36px, 6vw, 76px);
}

.product-copy h3 {
    margin-bottom: 18px;
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    letter-spacing: -0.055em;
}

.product-copy > p:not(.product-label) {
    max-width: 580px;
    margin-bottom: 30px;
    color: var(--muted);
}

footer {
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.86rem;
}

footer p {
    margin-bottom: 0;
}

@media (max-width: 720px) {
    .site-header,
    main,
    footer {
        width: min(100% - 32px, 1180px);
    }

    .site-header {
        min-height: 72px;
    }

    nav {
        gap: 16px;
    }

    nav a:first-child {
        display: none;
    }

    .hero {
        min-height: 540px;
    }

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

    .product-visual {
        min-height: 260px;
    }

    footer {
        padding: 28px 0;
        align-items: flex-start;
        flex-direction: column;
    }
}
