:root {
    --bg: #f5efe5;
    --paper: #fffaf2;
    --ink: #2b261d;
    --ink-soft: #4d4538;
    --muted: #8a8378;
    --accent: #6b8e6e;
    --accent-dark: #4d6e51;
    --border: #e1d8c5;
}

* { box-sizing: border-box; }

html, body {
    margin: 0; padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 980px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 720px; }
.muted { color: var(--muted); }
.small { font-size: 14px; }

/* HERO */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #faf3e6 0%, #f5efe5 100%);
}
.hero-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}
.kicker {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 12px;
}
h1 {
    margin: 0 0 24px;
    font-size: 56px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: var(--ink);
}
.lead {
    font-size: 19px;
    color: var(--ink-soft);
    margin: 0 0 14px;
    max-width: 540px;
}
.cta {
    display: inline-block;
    margin-top: 28px;
    padding: 16px 28px;
    background: var(--ink);
    color: var(--paper);
    text-decoration: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 500;
    transition: transform 0.15s, background 0.2s;
}
.cta:hover { background: var(--accent-dark); transform: translateY(-1px); }

.hero-photo { display: flex; justify-content: center; }
.photo-placeholder {
    width: 280px; height: 360px;
    border-radius: 16px;
    background: linear-gradient(160deg, #d8c9a8 0%, #b89f74 100%);
    display: flex; align-items: center; justify-content: center;
    color: #fff5e1; font-size: 140px; font-weight: 300;
    box-shadow: 0 20px 60px rgba(80, 60, 30, 0.15);
}

/* SECTIONS */
.section { padding: 80px 0; }
.section-alt { background: var(--paper); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

h2 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 36px;
    color: var(--ink);
}

/* PRODUCTS */
.products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.product {
    padding: 24px;
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: transform 0.15s, box-shadow 0.2s;
}
.product:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(80, 60, 30, 0.08);
}
.product-price {
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 6px;
}
.product-name {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
.product-desc {
    color: var(--muted);
    font-size: 15px;
}

/* STEPS */
.steps {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 0;
}
.steps li {
    counter-increment: step;
    position: relative;
    padding: 0 0 28px 56px;
    color: var(--ink-soft);
    font-size: 17px;
}
.steps li::before {
    content: counter(step);
    position: absolute;
    left: 0; top: -2px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    display: flex; align-items: center; justify-content: center;
    font-weight: 500; font-size: 15px;
}
.steps li b { color: var(--ink); display: block; margin-bottom: 4px; }

/* DON'T */
.dont {
    list-style: none;
    padding: 0;
}
.dont li {
    padding: 14px 0 14px 32px;
    color: var(--ink-soft);
    font-size: 16px;
    position: relative;
    border-bottom: 1px solid var(--border);
}
.dont li:last-child { border-bottom: none; }
.dont li::before {
    content: "—";
    position: absolute; left: 0;
    color: var(--accent-dark); font-weight: 600;
}

/* FOOTER */
.footer {
    padding: 50px 0;
    border-top: 1px solid var(--border);
    background: var(--paper);
    text-align: center;
}
.footer p { margin: 0 0 6px; }
.footer a { color: var(--accent-dark); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* MOBILE */
@media (max-width: 760px) {
    .hero { padding: 50px 0 60px; }
    .hero-row { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .hero-photo { order: -1; }
    .photo-placeholder { width: 200px; height: 260px; font-size: 100px; }
    .lead { margin-left: auto; margin-right: auto; }
    h1 { font-size: 40px; }
    h2 { font-size: 26px; }
    .section { padding: 50px 0; }
    .products { grid-template-columns: 1fr; }
    .steps li { padding-left: 48px; }
    .kicker { margin-top: 0; }
}
