:root {
    --ink: #1c2424;
    --muted: #66706d;
    --paper: #f2f1eb;
    --lime: #d8ee63;
    --line: rgba(28, 36, 36, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "DM Sans", sans-serif; }
a { color: inherit; text-decoration: none; }
.site-header, .site-footer { align-items: center; display: flex; justify-content: space-between; padding: 27px 6vw; }
.site-header { border-bottom: 1px solid var(--line); }
.brand { font-family: "Space Grotesk", sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: .12em; }
.brand span { color: #a6be32; }
nav, .footer-links { display: flex; gap: 28px; }
nav a, .footer-links a { color: var(--muted); font-size: .82rem; }
nav a:hover, .footer-links a:hover { color: var(--ink); }
.hero { align-items: center; display: grid; gap: 8vw; grid-template-columns: .9fr 1.1fr; margin: 0 auto; max-width: 1300px; min-height: 690px; padding: 80px 6vw; }
.eyebrow { color: #73821f; font-size: .72rem; font-weight: 700; letter-spacing: .16em; margin: 0 0 24px; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: "Space Grotesk", sans-serif; letter-spacing: -.055em; }
h1 { font-size: clamp(3.5rem, 7vw, 7.3rem); line-height: .91; margin-bottom: 30px; }
h1 em { color: #829326; font-style: normal; }
.intro { color: var(--muted); font-size: 1.05rem; line-height: 1.65; max-width: 410px; }
.button { align-items: center; background: var(--ink); color: white; display: inline-flex; font-size: .9rem; font-weight: 700; gap: 26px; justify-content: space-between; margin-top: 22px; padding: 17px 20px; transition: background .2s, transform .2s; }
.button:hover { background: #46534f; transform: translateY(-2px); }
.button span { color: var(--lime); font-size: .72rem; font-weight: 500; }
.secure-note { color: var(--muted); font-size: .72rem; margin-top: 14px; }
.hero-image-wrap { position: relative; }
.hero-image-wrap img { display: block; filter: contrast(1.04); height: auto; max-width: 100%; width: 100%; }
.image-label { background: var(--lime); font-size: .7rem; font-weight: 700; letter-spacing: .12em; padding: 11px 15px; position: absolute; right: -18px; top: 26px; z-index: 1; }
.details { border-top: 1px solid var(--line); display: grid; gap: 10vw; grid-template-columns: 1fr 1fr; margin: 0 auto; max-width: 1300px; padding: 105px 6vw 125px; }
h2 { font-size: clamp(2.6rem, 5vw, 5.4rem); line-height: .96; margin-bottom: 0; }
.detail-list { border-top: 1px solid var(--line); }
.detail-list article { border-bottom: 1px solid var(--line); display: grid; gap: 25px; grid-template-columns: 35px 1fr; padding: 25px 0; }
.detail-list article > span { color: #829326; font-size: .75rem; font-weight: 700; }
h3 { font-family: "Space Grotesk", sans-serif; font-size: 1.15rem; margin-bottom: 9px; }
.detail-list p { color: var(--muted); font-size: .9rem; line-height: 1.6; margin-bottom: 0; max-width: 390px; }
.buy-band { align-items: center; background: var(--ink); color: white; display: flex; flex-direction: column; padding: 105px 6vw 115px; text-align: center; }
.buy-band .eyebrow { color: var(--lime); }
.buy-band h2 { margin-bottom: 15px; }
.button-light { background: var(--lime); color: var(--ink); }
.button-light:hover { background: white; }
.button-light span { color: #66711e; }
.site-footer { border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.site-footer p { margin: 0; }
.legal { margin: 0 auto; max-width: 780px; padding: 90px 6vw 120px; }
.legal h1 { font-size: clamp(3.2rem, 7vw, 6rem); margin-bottom: 50px; }
.legal h2 { font-size: 1.5rem; letter-spacing: -.02em; margin-top: 42px; }
.legal p { color: var(--muted); line-height: 1.75; }
@media (max-width: 760px) {
    .site-header, .site-footer { padding: 22px 6vw; }
    nav { display: none; }
    .hero, .details { display: block; padding: 65px 6vw 80px; }
    .hero-copy { margin-bottom: 58px; }
    h1 { font-size: clamp(3.4rem, 17vw, 5.4rem); }
    .image-label { right: -8px; top: 15px; }
    .details .section-intro { margin-bottom: 60px; }
    .buy-band { padding: 80px 6vw 90px; }
    .site-footer { align-items: flex-start; flex-wrap: wrap; gap: 20px; }
    .site-footer p { order: 3; width: 100%; }
}