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

:root {
    --bg: #e8e0d4;
    --text: #0a1108;
    --muted: #5d6b52;
    --line: #a3c4ae;
}

body {
    font-family: -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    font-size: 18px;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px 180px;
}

/* LAYOUT */
.grid {
    max-width: 1600px;
    padding: 0 3rem;
}

/* HERO */
.hero {
    padding: 6rem 0 5rem;
}

.hero-sub {
    font-size: 1.5rem;
    color: var(--muted);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero h1 {
    font-size: clamp(4rem, 13vw, 12rem);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.04em;
}

/* HERO IMAGE */
.hero-img {
    display: block;
    width: 100%;
    height: 50vh;
    object-fit: cover;
}

/* SECTION LABEL */
.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-bottom: 2rem;
}

/* INTRO */
.intro {
    padding: 5rem 0;
}

.intro-text {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.25;
    font-weight: 300;
}

.intro-text a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 3px solid var(--text);
}

/* BRANDS */
.brands {
    padding: 5rem 0;
}

.brand-item-stacked {
    padding: 3rem 0;
}

.brand-item-stacked:first-child {
    padding-top: 0;
}

.brand-item-stacked .brand-item-logo {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.brand-item-stacked h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.brand-item-stacked h2 a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 3px solid var(--text);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}

.brand-item-stacked h2 a:hover {
    border-color: var(--muted);
}


.brand-item-btn {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--text);
    text-decoration: none;
    border-bottom: 3px solid var(--text);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}

.brand-item-btn:hover {
    border-color: var(--muted);
}

/* INFO */
.info {
    padding: 5rem 0;
}

.info-data {
    font-size: 1.4rem;
    line-height: 1.8;
}

.info-contact {
    margin-top: 2.5rem;
}

.info-contact a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--line);
}

.info-contact a:hover {
    border-color: var(--text);
}

.info-contact p {
    font-size: 1.4rem;
    line-height: 2;
}

.info-contact-label {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

/* FOOTER */
footer {
    padding: 2.5rem 0;
}

.lang-link {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--text);
}

.lang-link:hover {
    border-color: var(--muted);
}

.footer-copy {
    font-size: 1rem;
    color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .grid { padding: 0 1.5rem; }

    .hero { padding: 5rem 0 3rem; }
    .hero-sub { font-size: 1.2rem; }

    .brand-item {
        grid-template-columns: 3rem 1fr;
        gap: 1rem;
    }

    .brand-item-logo {
        width: 3rem;
        height: 3rem;
    }

    .intro, .brands, .info {
        padding: 3rem 0;
    }
}
