:root {
    --bg-color: #c51217;
    --card-bg: #ffffff;
    --text-dark: #231f20;
    --text-muted: rgba(0,0,0,.65);
    --radius-xl: 999px;
    --radius-lg: 28px;
    --shadow: 0 10px 30px rgba(0,0,0,.12);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text-dark);
    background: var(--bg-color);
}

.hero {
    min-height: 100dvh;
    position: relative;
    display: grid;
    place-items: center;
    padding: 48px 20px 140px;
    background-image: url('assets/bigibg.png');
    background-size: cover;
    background-position: center;
}

.container {
    width: min(1060px, 100%);
    text-align: center;
}

.logo {
    width: clamp(130px, 15vw, 200px);
    height: auto;
    display: block;
    margin: 6px auto 12px;
}

.headline {
    margin: 0 0 28px;
    font-size: clamp(22px, 2.6vw, 32px);
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 0 rgba(0,0,0,.12);
}

.links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 20px;
}

.link {
    display: grid;
    grid-template-columns: 72px 1fr 56px;
    align-items: center;
    gap: 8px;
    padding: 14px 10px;
    border-radius: var(--radius-xl);
    text-decoration: none;
    color: var(--text-dark);
    background: var(--card-bg);
    box-shadow: var(--shadow);
    transition: transform .18s ease, box-shadow .18s ease;
}

.link:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(0,0,0,.18); }

.link__icon {
    width: 72px; height: 72px;
    display: grid; place-items: center;
}
.link__icon img { width: 36px; height: 36px; display: block; }
.link__icon svg { width: 36px; height: 36px; display: block; }

.link__label { font-weight: 800; font-size: clamp(18px, 1.9vw, 22px); }

.link__more { font-size: 28px; color: var(--text-muted); }

.hero__bottle {
    position: absolute;
    left: max(10px, 2.6vw);
    bottom: 6px;
    width: clamp(120px, 20vw, 240px);
    height: auto;
    pointer-events: none;
    user-select: none;
}

.hero__sticker {
    position: absolute;
    right: max(-10px, 1.2vw);
    top: clamp(140px, 20vh, 220px);
    width: clamp(170px, 22vw, 300px);
    height: auto;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

@media (max-width: 640px) {
    .hero { min-height: 100svh; padding: 36px 14px 210px; }
    .container { width: min(720px, 100%); }

    .links { gap: 18px; }
    .link { grid-template-columns: 60px 1fr 44px; padding: 8px 10px; }
    .link__icon { width: 60px; height: 60px; }
    .link__icon img { width: 28px; height: 28px; }
    .link__icon svg { width: 28px; height: 28px; }
    .link__more { font-size: 24px; }

    .hero__bottle { left: 50%; transform: translateX(-50%); bottom: 0; width: clamp(120px, 36vw, 180px); }
}

@media (min-width: 1100px) {
    .links { gap: 26px; }
}

@media (max-width: 768px) {
    .hero__sticker { display: none; }
}

@media (min-width: 768px) {
    .link { width: 84%; margin: 0 auto; }
}

@media (min-width: 1200px) {
    .link { width: 72%; }
}

