/* Minimal Bottl Landing Page - With Visual Interest */

@font-face {
    font-family: 'Europa Grotesk SH';
    src: url('fonts/europa-grotesk-sh-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #fafafa;
    --text: #111;
    --text-secondary: #666;
    --accent: #c41e3a;
    --border: #e5e5e5;
    --font-heading: 'Europa Grotesk SH', 'Inter', -apple-system, sans-serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

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

/* Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-link {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--accent);
}

/* Main */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Hero */
.hero {
    padding: 100px 0 140px;
    position: relative;
}

.hero h1 {
    font-family: var(--font-sans);
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 420px;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.cta:hover::before {
    left: 100%;
}

/* Services */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.service {
    padding: 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.service:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.service .num {
    display: inline-block;
    font-size: 11px;
    color: var(--accent);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    font-weight: 600;
    padding: 4px 10px;
    background: rgba(196, 30, 58, 0.08);
    border-radius: 4px;
}

.service h3 {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.cta-label {
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-section h2 {
    font-family: var(--font-sans);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 48px;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-secondary);
}

footer a {
    transition: color 0.2s;
}

footer a:hover {
    color: var(--accent);
}

/* Animate on scroll */
.service,
.cta-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

.service:nth-child(1) {
    animation-delay: 0.1s;
}

.service:nth-child(2) {
    animation-delay: 0.2s;
}

.service:nth-child(3) {
    animation-delay: 0.3s;
}

.cta-section {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {

    nav,
    footer {
        padding: 20px 24px;
    }

    main {
        padding: 0 24px;
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero::before {
        width: 300px;
        height: 300px;
    }

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

    .service {
        padding: 24px;
    }

    .cta-section {
        padding: 60px 0;
    }
}