:root {
    --bg: #fbfaf7;
    --paper: #ffffff;
    --text: #121418;
    --muted: #5a616e;
    --line: #e8e3da;

    --wine: #6f0c18;
    --wine-2: #8d1020;
    --honey: #c89b1a;

    --radius: 18px;
    --shadow: 0 18px 40px rgba(18, 20, 24, .14);
    --max: 1200px;
}

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

html,
body {
    height: 100%;
}

body {
    font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.45;
    overflow-x: hidden;
}

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

img {
    display: block;
    max-width: 100%;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 22px;
}

/* =========================
     BANNERINO
  ========================= */
.bannerino {
    background-color: red;
    position: fixed;
    width: 100%;
    height: 5%;
    z-index: 1000;
}

.bannerino p {
    color: white;
    text-align: center;
    padding: 1%;
    background-color: red;
    margin: 0 !important;
    font-size: 60%;
}

@media (max-width: 980px) {
    header {
        margin-top: 40px !important;
        /*bannerino*/
    }
}

/* =========================
     NAVBAR (COME HOME)
  ========================= */
header {
    position: fixed;
    margin-top: 50px;
    /*bannerino*/
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(251, 250, 247, .62);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.nav {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.menu {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
    margin-top: 1rem;
}

.menu a {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    padding: 8px 0;
}

.menu a:hover {
    color: var(--wine);
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(18, 20, 24, .12);
    background: var(--paper);
    color: var(--text);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    margin-left: auto;
}

.mobile-nav {
    display: none;
    border-top: 1px solid rgba(0, 0, 0, .08);
    background: rgba(251, 250, 247, .92);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav .wrap {
    padding: 14px 22px 18px;
    display: grid;
    gap: 8px;
}

.mobile-nav a {
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(232, 227, 218, .95);
    background: var(--paper);
    font-size: 14px;
    font-weight: 700;
}

/* =========================
     HERO (COME HOME)
  ========================= */
.hero {
    min-height: 50vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: stretch;
    padding-top: 72px;
    overflow: hidden;
    border: 0;
    margin: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(18, 20, 24, .58) 0%, rgba(18, 20, 24, .42) 55%, rgba(18, 20, 24, .30) 100%),
        url("https://images.unsplash.com/photo-1647359287841-3486c05c28dd?auto=format&fit=crop&fm=jpg&ixlib=rb-4.1.0&q=70&w=2400");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateZ(0);
}

.hero-inner {
    position: relative;
    width: 100%;
    min-height: calc(50vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 0;
}

.hero-copy {
    width: 100%;
    max-width: 980px;
    text-align: center;
    margin: 0 auto;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .86);
    margin: 0 auto 14px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--honey);
    box-shadow: 0 0 0 6px rgba(200, 155, 26, .20);
    flex: 0 0 auto;
}

.hero h1 {
    color: #fff;
    font-size: 56px;
    line-height: 1.04;
    letter-spacing: -.02em;
    margin: 0 auto 10px;
    max-width: 24ch;
}

.hero p {
    color: rgba(255, 255, 255, .86);
    font-size: 16px;
    max-width: 76ch;
    margin: 0 auto;
}

/* =========================
     SECTION DUE COLONNE
  ========================= */
section {
    padding: 76px 0;
    border-top: 1px solid var(--line);
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.about-media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(18, 20, 24, .08);
    border: 1px solid rgba(232, 227, 218, .95);
    background: var(--paper);
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.about-copy h2 {
    font-size: 30px;
    letter-spacing: -.01em;
    line-height: 1.1;
    margin-bottom: 12px;
}

.about-copy p {
    color: var(--muted);
    font-size: 15px;
    margin-top: 10px;
    max-width: 64ch;
}

.about-copy ul {
    margin-top: 14px;
    padding-left: 18px;
    color: var(--muted);
    font-size: 15px;
    display: grid;
    gap: 8px;
}

.about-copy li {
    line-height: 1.4;
}

/* =========================
     FOOTER (COME HOME, CENTRATO)
  ========================= */
footer {
    border-top: 1px solid var(--line);
    background: #f6f3ec;
    padding: 26px 0;
}

.foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
}

.foot>div {
    width: 100%;
}

.foot a {
    color: var(--muted);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* =========================
     RESPONSIVE
  ========================= */
@media (max-width: 980px) {
    .menu {
        display: none;
    }

    .hamburger {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero h1 {
        font-size: 44px;
        max-width: none;
    }

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

    .about-media img {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 520px) {
    .nav {
        height: 68px;
        gap: 26px;
    }

    .brand img {
        height: 28px;
    }

    .hero {
        padding-top: 68px;
    }

    .hero h1 {
        font-size: 38px;
    }
}
