:root {
    --bg: #f6f2eb;
    --surface: #fbf8f3;
    --surface-2: #f1ebe3;
    --text: #171717;
    --muted: #68645d;
    --line: rgba(23, 23, 23, 0.12);
    --line-strong: rgba(23, 23, 23, 0.2);
    --accent: #1f5c74;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(246, 242, 235, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}
.brand strong, .brand span { display: block; }
.brand strong { font-size: 0.98rem; letter-spacing: -0.01em; }
.brand span, .intro, .body-columns p, .products-intro, .product-copy p, .contact-copy p, .field-group label, .footer p, .footer a { color: var(--muted); }
.brand span { font-size: 0.9rem; }

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(23, 23, 23, 0.82);
}
.nav a:hover, .nav a:focus-visible { color: var(--text); }

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: transparent;
    padding: 0.55rem;
    border-radius: 999px;
}
.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
}
.menu-toggle span + span { margin-top: 4px; }

.section-first { padding: 3.8rem 0 0; }
.section { padding: 3.6rem 0; }
.section-divider { border-top: 1px solid rgba(23, 23, 23, 0.08); }

.hero-grid,
.intro-grid,
.contact-layout,
.product-row {
    display: grid;
    gap: 1.5rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    align-items: end;
    gap: 2.25rem;
}

.kicker {
    margin-bottom: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

h1 {
    font-size: clamp(3rem, 6vw, 5.6rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
    max-width: 10ch;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 3vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    margin-bottom: 0.75rem;
    max-width: 13ch;
}

h3 {
    font-size: clamp(1.5rem, 2vw, 2rem);
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.intro,
.body-columns p,
.products-intro,
.product-copy p,
.contact-copy p {
    font-size: 1rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn:hover, .btn:focus-visible { transform: translateY(-1px); }
.btn-primary {
    background: var(--text);
    color: #fff;
}
.btn-primary:hover, .btn-primary:focus-visible { background: #000; }
.btn-secondary {
    border: 1px solid var(--line-strong);
    color: var(--text);
}
.btn-full { width: 100%; }

.hero-media img {
    width: 100%;
    aspect-ratio: 4 / 3.2;
    object-fit: cover;
    border-radius: 28px;
    filter: saturate(0.92) contrast(1.02);
}

.hero-facts {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.hero-facts div {
    padding: 1.1rem 0.35rem 1rem 0;
}
.hero-facts div + div { border-left: 1px solid var(--line); padding-left: 1.1rem; }
.hero-facts span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 0.35rem;
}
.hero-facts strong {
    display: block;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 24ch;
}

.intro-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
}

.body-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
}

.products-header {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 2rem;
}
.products-header h2 { max-width: 11ch; }
.products-intro { max-width: 56ch; }

.product-list { display: grid; gap: 1.75rem; }
.product-row {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 2rem;
    padding: 0 0 1.75rem;
    border-bottom: 1px solid var(--line);
}
.product-row.reverse { grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr); }
.product-row.reverse .product-image-wrap { order: 2; }
.product-row.reverse .product-copy { order: 1; }
.product-image-wrap img {
    width: 100%;
    aspect-ratio: 4 / 2.8;
    object-fit: cover;
    border-radius: 22px;
}
.product-copy {
    max-width: 34rem;
    padding-right: 2rem;
}

.supply-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-top: 1.5rem;
    color: var(--muted);
}
.supply-list span {
    padding-bottom: 0.2rem;
    border-bottom: 1px solid rgba(23, 23, 23, 0.18);
}

.contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: start;
}
.contact-list {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.8rem;
}
.contact-list a {
    font-size: 1.05rem;
    font-weight: 600;
}
.contact-card {
    background: var(--surface);
    border: 1px solid rgba(23, 23, 23, 0.08);
    border-radius: 24px;
    padding: 1.4rem;
}
.contact-form {
    display: grid;
    gap: 1rem;
}
.field-group { display: grid; gap: 0.5rem; }
.field-group input,
.field-group textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(23, 23, 23, 0.12);
    background: #fff;
    color: var(--text);
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field-group input:focus,
.field-group textarea:focus {
    border-color: rgba(31, 92, 116, 0.5);
    box-shadow: 0 0 0 4px rgba(31, 92, 116, 0.08);
}

.map-frame {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(23, 23, 23, 0.08);
}

.footer { padding: 1.2rem 0 2rem; }
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .hero-grid,
    .intro-grid,
    .products-header,
    .product-row,
    .product-row.reverse,
    .contact-layout,
    .body-columns {
        grid-template-columns: 1fr;
    }

    .product-row.reverse .product-image-wrap,
    .product-row.reverse .product-copy {
        order: initial;
    }

    .product-copy { padding-right: 0; }
    .hero-facts { grid-template-columns: 1fr; }
    .hero-facts div + div {
        border-left: 0;
        border-top: 1px solid var(--line);
        padding-left: 0;
    }
    h1 { max-width: 11ch; }
    h2 { max-width: 14ch; }
}

@media (max-width: 760px) {
    .menu-toggle { display: inline-block; }
    .header-inner { position: relative; }
    .nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
        padding: 1rem;
        background: var(--surface);
        border: 1px solid rgba(23, 23, 23, 0.08);
        border-radius: 18px;
    }
    .nav.is-open { display: flex; }
    .section-first { padding-top: 2.5rem; }
    .section { padding: 2.8rem 0; }
    h1 { font-size: 2.7rem; }
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
