:root {
    --red: #e63a27;
    --dark: #111111;
    --dark-soft: #1b1b1b;
    --white: #ffffff;
    --light: #f7f7f7;
    --gray: #666666;
    --border: #e8e8e8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    overflow: hidden;
}

.container {
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
}

.topbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 28px 0;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 800;
    letter-spacing: 0.3px;
    font-size: 22px;
}

.logo-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    border-radius: 12px;
    font-size: 21px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(230, 58, 39, 0.35);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.language-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    transition: 0.2s ease;
}

.language-switcher a:hover,
.language-switcher a.active {
    background: var(--red);
    color: var(--white);
}

.status-badge {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background:
        radial-gradient(circle at 80% 20%, rgba(230, 58, 39, 0.26), transparent 28%),
        linear-gradient(135deg, #090909 0%, #151515 46%, #2a0f0b 100%);
    color: var(--white);
    padding: 140px 0 90px;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 90%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
    padding: 9px 14px;
    border-radius: 999px;
    color: #ffe5e1;
    background: rgba(230, 58, 39, 0.12);
    border: 1px solid rgba(230, 58, 39, 0.32);
    font-size: 14px;
    font-weight: 700;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 6px rgba(230, 58, 39, 0.16);
}

h1 {
    max-width: 740px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 0.98;
    letter-spacing: -2.4px;
    margin-bottom: 28px;
}

.hero-lead {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 20px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 800;
    transition: 0.2s ease;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 18px 36px rgba(230, 58, 39, 0.28);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-note {
    color: rgba(255, 255, 255, 0.62);
    font-size: 15px;
}

.visual-card {
    position: relative;
    min-height: 460px;
    border-radius: 34px;
    padding: 28px;
    background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    backdrop-filter: blur(14px);
}

.gift-card {
    position: absolute;
    border-radius: 24px;
    background: var(--white);
    color: var(--dark);
    padding: 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}

.gift-card.main {
    left: 36px;
    top: 48px;
    width: 72%;
}

.gift-card.small {
    right: 30px;
    bottom: 42px;
    width: 54%;
    background: var(--red);
    color: var(--white);
}

.gift-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #fff0ee;
    color: var(--red);
    font-size: 24px;
    margin-bottom: 18px;
}

.gift-card.small .gift-icon {
    background: rgba(255,255,255,0.18);
    color: var(--white);
}

.gift-card h3 {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.gift-card p {
    color: var(--gray);
    font-size: 15px;
}

.gift-card.small p {
    color: rgba(255,255,255,0.78);
}

.floating-label {
    position: absolute;
    right: 44px;
    top: 42px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(0,0,0,0.5);
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.14);
}

.section {
    padding: 100px 0;
}

.section-light {
    background: var(--light);
}

.section-head {
    max-width: 760px;
    margin-bottom: 46px;
}

.section-kicker {
    color: var(--red);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 12px;
}

h2 {
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -1.3px;
    margin-bottom: 18px;
}

.section-text {
    color: var(--gray);
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 32px;
    min-height: 280px;
    transition: 0.2s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.08);
}

.service-image {
    width: 150px;
    height: 120px;
    object-fit: contain;
    display: block;
    margin-bottom: 24px;
}

.service-number {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--dark);
    color: var(--white);
    font-weight: 900;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--gray);
    font-size: 16px;
}

.occasions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.occasion-tag {
    padding: 12px 16px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--dark);
    font-weight: 700;
}

.seo-block {
    position: relative;
    border-radius: 34px;
    padding: 54px;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
}

.seo-block::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -80px;
    top: -80px;
    border-radius: 50%;
    background: rgba(230, 58, 39, 0.42);
    filter: blur(10px);
}

.seo-content {
    position: relative;
    max-width: 760px;
    z-index: 1;
}

.seo-content h2 {
    color: var(--white);
}

.seo-content p {
    color: rgba(255,255,255,0.72);
    font-size: 18px;
}

.footer {
    padding: 34px 0;
    background: #090909;
    color: rgba(255,255,255,0.62);
    font-size: 14px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer strong {
    color: var(--white);
}

@media (max-width: 920px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .visual-card {
        min-height: 390px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 28px, 1140px);
    }

    .topbar {
        padding: 20px 0;
    }

    .topbar-inner {
        align-items: flex-start;
    }

    .logo {
        font-size: 18px;
    }

    .topbar-right {
        gap: 8px;
    }

    .language-switcher {
        padding: 3px;
    }

    .language-switcher a {
        min-width: 38px;
        height: 31px;
        padding: 0 10px;
        font-size: 12px;
    }

    .status-badge {
        display: none;
    }

    .hero {
        padding: 112px 0 70px;
    }

    h1 {
        letter-spacing: -1.4px;
    }

    .hero-lead {
        font-size: 18px;
    }

    .btn {
        width: 100%;
    }

    .section {
        padding: 72px 0;
    }

    .visual-card {
        min-height: 360px;
        padding: 20px;
    }

    .gift-card.main {
        left: 18px;
        top: 34px;
        width: 82%;
    }

    .gift-card.small {
        right: 18px;
        bottom: 26px;
        width: 76%;
    }

    .floating-label {
        display: none;
    }

    .service-card,
    .seo-block {
        padding: 26px;
        border-radius: 24px;
    }
}
