:root {
    --bg: #fff8f1;
    --ink: #171717;
    --muted: #6d655f;
    --primary: #ff5a1f;
    --primary-dark: #d94412;
    --cream: #fffdf9;
    --card: rgba(255, 255, 255, 0.78);
    --border: rgba(23, 23, 23, 0.10);
    --shadow: 0 24px 70px rgba(20, 20, 20, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 90, 31, .16), transparent 28%),
        radial-gradient(circle at 90% 20%, rgba(34, 197, 94, .10), transparent 26%),
        var(--bg);
    color: var(--ink);
}
a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(255, 248, 241, 0.78);
    border-bottom: 1px solid var(--border);
}
.navbar {
    max-width: 1180px;
    margin: auto;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -1px;
}
.brand span { color: var(--primary); }
.nav-links { display: flex; gap: 28px; align-items: center; font-weight: 600; color: var(--muted); }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
    background: var(--ink);
    color: white !important;
    padding: 12px 18px;
    border-radius: 999px;
}
.menu-toggle { display: none; border: 0; background: transparent; font-size: 28px; }
.hero {
    max-width: 1180px;
    margin: 44px auto 20px;
    padding: 34px 22px 50px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 54px;
    align-items: center;
}
.eyebrow {
    color: var(--primary-dark);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}
h1 {
    font-size: clamp(46px, 7vw, 86px);
    line-height: .94;
    letter-spacing: -4px;
    max-width: 720px;
}
.hero-copy {
    font-size: 19px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 590px;
    margin: 26px 0;
}
.hero-actions, .stats { display: flex; gap: 16px; flex-wrap: wrap; }
.btn, .newsletter button, .product-info button {
    border: 0;
    border-radius: 999px;
    padding: 15px 22px;
    font-weight: 800;
    cursor: pointer;
}
.primary, .newsletter button, .product-info button { background: var(--primary); color: white; box-shadow: 0 12px 30px rgba(255, 90, 31, .25); }
.secondary { background: white; border: 1px solid var(--border); }
.stats { margin-top: 38px; }
.stats div { background: var(--card); border: 1px solid var(--border); border-radius: 22px; padding: 18px 22px; min-width: 150px; }
.stats strong { display: block; font-size: 26px; }
.stats span { color: var(--muted); font-size: 14px; }
.hero-card {
    position: relative;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: rotate(1.5deg);
    background: white;
}
.hero-card img { height: 620px; object-fit: cover; }
.badge, .floating-card {
    position: absolute;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 999px;
    padding: 13px 18px;
    font-weight: 800;
}
.badge { top: 24px; left: 24px; }
.floating-card { right: 24px; bottom: 24px; border-radius: 22px; }
.floating-card span { display: block; color: var(--muted); font-size: 13px; }
.floating-card strong { font-size: 28px; }
.category-strip, .section, .promo, .newsletter, footer { max-width: 1180px; margin: auto; padding-left: 22px; padding-right: 22px; }
.category-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.category { background: var(--ink); color: white; padding: 22px; border-radius: 26px; text-align: center; font-weight: 800; }
.section { padding-top: 44px; padding-bottom: 64px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.section-heading h2, .promo h2, .newsletter h2 { font-size: clamp(30px, 4vw, 50px); letter-spacing: -2px; line-height: 1.05; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card { background: white; border-radius: 30px; overflow: hidden; box-shadow: 0 16px 45px rgba(0,0,0,.08); border: 1px solid var(--border); }
.product-image { position: relative; height: 270px; overflow: hidden; }
.product-image img { height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover img { transform: scale(1.06); }
.product-image span { position: absolute; left: 14px; top: 14px; background: var(--cream); border-radius: 999px; padding: 8px 12px; font-size: 13px; font-weight: 800; }
.product-info { padding: 18px; }
.product-info h3 { font-size: 18px; margin-bottom: 8px; }
.product-info p { color: var(--primary-dark); font-weight: 900; font-size: 20px; margin-bottom: 14px; }
.product-info button { width: 100%; }
.promo { display: grid; grid-template-columns: 1.3fr .7fr; gap: 28px; padding-top: 42px; padding-bottom: 42px; }
.promo > div:first-child, .promo-panel, .newsletter { background: var(--card); border: 1px solid var(--border); border-radius: 34px; padding: 34px; box-shadow: 0 16px 45px rgba(0,0,0,.06); }
.promo p { color: var(--muted); line-height: 1.7; margin-top: 18px; }
.promo-panel { background: var(--ink); color: white; }
.promo-panel p { color: rgba(255,255,255,.75); }
.promo-panel a { display: inline-block; margin-top: 22px; background: var(--primary); padding: 13px 18px; border-radius: 999px; font-weight: 800; }
.newsletter { margin-top: 34px; margin-bottom: 34px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.newsletter form { display: flex; gap: 12px; width: min(520px, 100%); }
.newsletter input { flex: 1; border: 1px solid var(--border); border-radius: 999px; padding: 16px 18px; font: inherit; outline: none; }
footer { display: flex; justify-content: space-between; gap: 18px; color: var(--muted); padding-top: 24px; padding-bottom: 34px; }
footer div { display: flex; gap: 18px; }
@media (max-width: 920px) {
    .hero, .promo { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .category-strip { grid-template-columns: repeat(2, 1fr); }
    .hero-card img { height: 480px; }
    .newsletter, footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
    .nav-links { display: none; position: absolute; left: 18px; right: 18px; top: 72px; background: white; border-radius: 24px; padding: 20px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
    .nav-links.open { display: flex; }
    .menu-toggle { display: block; }
    h1 { letter-spacing: -2px; }
    .product-grid, .category-strip { grid-template-columns: 1fr; }
    .newsletter form { flex-direction: column; }
}
