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

:root {
    --color-bg: #f7f7f5;
    --color-surface: #ffffff;
    --color-border: #e2e2de;
    --color-text: #1c1c1c;
    --color-text-muted: #6b6b6b;
    --color-accent: #c45c00;
    --color-accent-hover: #a34e00;
    --color-main: #38618C;
    --font: system-ui, -apple-system, "Segoe UI", sans-serif;
    --radius: 8px;
    --section-padding: 80px 24px;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--font);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    height: 100%;
}

.site{
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: minmax(0, 1fr);
}

/* ── Header ──────────────────────────────────────────── */

header {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--color-text);
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.15s;
}

nav a:hover {
    color: var(--color-text);
}

/* ── Hero ─────────────────────────────────────────────── */

.hero {
    text-align: center;
    padding: 60px 24px 40px;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.btn {
    display: inline-block;
    background: var(--color-accent);
    color: #fff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.15s;
}

.btn:hover {
    background: var(--color-accent-hover);
}

.info{
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    display: flex;
}

.image-container, .info-container{
    width: 50%;
}

.image{
    object-fit: contain;
    width: 100%;
    height: auto;
    display: block;
}

.info-container{
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-wrapper{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.contact{
    border: 1px solid var(--color-border);
    border-radius: 15px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    transition: .2s ease;
}

.contact p{
    color: black;
}

.contact:hover{
    background: var(--color-bg)
}

svg{
    height: 40px;
    width: 40px;
    fill: var(--color-main)
}

.shop-button{
    background: var(--color-main);
    color: white;
    padding: 24px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    display: block;
    text-align: center;
    font-size: 1.250rem;
    font-weight: 600;
    margin-top: 24px;
}

h2{
    text-align: center;
}

/* ── Footer ───────────────────────────────────────────── */

footer {
    border-top: 1px solid var(--color-border);
    text-align: center;
    padding: 24px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: auto;
}

/* ── Mobile ───────────────────────────────────────────── */

@media (max-width: 600px) {
    nav {
        gap: 20px;
    }

    .hero {
        padding: 60px 24px 48px;
    }

    .services,
    .links {
        padding: 48px 24px;
    }

    .contact {
        padding: 48px 24px;
    }
}
