:root {
    --bg: #06111b;
    --bg2: #0c1823;
    --text: #f7f3ea;
    --muted: #b9bec0;
    --gold: #d8a343;
    --line: #2d3b45;
    --radius: 24px;
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
}

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

img {
    max-width: 100%;
}


/* =========================================================
   NAV
========================================================= */

.nav {
    position: fixed;
    z-index: 20;

    top: 20px;
    left: 3%;
    right: 3%;

    height: 72px;

    border: 1px solid #ffffff25;
    border-radius: 0px;

    background: #06111bd9;

    backdrop-filter: blur(16px);

    display: flex;
    align-items: center;

    padding: 8px 10px 8px 20px;

    gap: 32px;
}


.brand {
    display: flex;
    align-items: center;

    background: #f5ead8;

    border-radius: 0px;

    padding: 8px 22px;

    height: 58px;

    flex-shrink: 0;
}


.brand img {
    width: 175px;
    height: auto;
    display: block;
}


.nav nav {
    display: flex;

    gap: 30px;

    margin-left: auto;

    text-transform: uppercase;

    font-size: 11px;

    letter-spacing: .16em;
}


.nav nav a {
    color: #e8e5dd;

    transition: color .25s ease;
}


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


/* =========================================================
   BUTTON
========================================================= */

.btn {
    display: inline-flex;

    align-items: center;

    gap: 24px;

    border: 0;

    border-radius: 0px;

 /*   background: var(--gold);*/

    color: #fff;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;

 /*   transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;*/
}


.btn:hover {
    transform: translateY(-2px);

   /* background: #e2b04e;*/

    box-shadow: 0 10px 30px #d8a34330;
}


.btn span {
    font-size: 18px;

    line-height: 0;
}


.btn.small {
    padding: 12px 22px;

    margin-left: 8px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;
}


.hero-bg {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            #03090edb 0%,
            #06111b8c 42%,
            #06111b35 100%
        ),
        url("../img/bg01.jpg")
        center / cover no-repeat;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 2;

    width: 84%;

    max-width: 1250px;

    margin: 0 auto;

    padding-top: 70px;

    display: grid;

    grid-template-columns: 500px 1fr;

    column-gap: 90px;

    align-items: center;
}


/* =========================================================
   HERO LOGO
========================================================= */

.logo-container {
    width: 100%;

    max-width: 500px;

    grid-column: 1;

    grid-row: 1 / span 5;

    align-self: center;
}


.logo-container img {
    display: block;

    width: 100%;

    height: auto;

    filter: brightness(0) invert(1);
}


/* =========================================================
   HERO TEXT
========================================================= */

/*
   Il tuo HTML attuale non ha un contenitore .hero-text.
   Queste regole spostano quindi tutti gli elementi testuali
   nella seconda colonna della griglia.
*/

.hero-content > .eyebrow,
.hero-content > h1,
.hero-content > .gold-line,
.hero-content > .lead,
.hero-content > .btn {
    grid-column: 2;
}


.eyebrow {
    color: var(--gold);

    font-size: 11px;

    letter-spacing: .2em;

    text-transform: uppercase;

    margin: 0 0 18px;
}


.hero h1 {
    font-size: clamp(48px, 6vw, 68px);

    line-height: .98;

    text-transform: uppercase;

    font-weight: 500;

    letter-spacing: -.045em;

    margin: 0;
}


.hero h1 em {

    font-style: italic;

    color: var(--gold);

    text-transform: none;
}


.hero h1 span {
    font-size: .8em;

    color: var(--gold);
}


.gold-line {
    width: 62px;

    height: 2px;

    background: var(--gold);

    margin: 26px 0;
}


.lead {
    font-size: 19px;

    max-width: 570px;

    color: #eee9df;

    margin: 0 0 30px;
}


/* =========================================================
   SCROLL
========================================================= */

.scroll {
    position: absolute;

    bottom: 30px;

    left: 8%;

    font-size: 9px;

    letter-spacing: .2em;

    color: #c6c6c1;

    display: flex;

    align-items: center;

    gap: 12px;
}


.scroll i {
    display: block;

    width: 48px;

    height: 1px;

    background: #ffffff55;
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding: 120px 7%;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 8%;

    align-items: center;

    background: var(--bg);
}


.about-image {
    min-height: 580px;

    border-radius: 0;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #172a38,
            #0b151e
        );

    position: relative;
}


.about-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}


.image-placeholder:after {
    content: attr(data-label);

    position: absolute;

    inset: auto 0 0;

    padding: 18px;

    text-align: center;

    background: #0008;

    color: #aaa;

    font-size: 12px;
}


.about-copy h2,
.section-head h2,
.contact h2 {

    font-weight: 500;

    line-height: 1.05;

    letter-spacing: -.025em;

    font-size: clamp(38px, 4vw, 40px);

    margin: 0;
}


.about-copy p {
    color: var(--muted);

    max-width: 590px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    background:
        linear-gradient(
            #0a1621,
            #09131d
        );

    padding-top: 105px;
}


.section-head {
    text-align: center;

    max-width: 760px;

    margin: 0 auto 50px;
}


.section-head h2 {
    font-size: 48px;
}


.section-head > p:last-child {
    color: var(--muted);
}


/* =========================================================
   CARDS
========================================================= */

.cards {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    max-width: 1400px;

    margin: auto;
}


.card {
    border: 1px solid #ffffff20;

    border-radius: 0px;

    overflow: hidden;

    background: #0d1924;

    transition:
        transform .35s ease,
        border-color .35s ease;
}


.card:hover {
    transform: translateY(-8px);

    border-color: #d8a34380;
}


.card-img {
    height: 245px;

    background-position: center;

    background-size: cover;
}


.wedding {
    background-image:
        url("../img/wddings.jpg");
}


.party {
    background-image:
        url("../img/parties.jpg");
}


.dinner {
    background-image:
        url("../img/dinners.jpg");
}


.events {
    background-image:
        url("../img/events.jpg");
}


.card-body {
    padding: 24px;
}


.icon {
    color: var(--gold);

    font-size: 25px;
}


.card h3 {
    text-transform: uppercase;

    letter-spacing: .12em;

    font-size: 16px;

    font-weight: 500;

    margin: 8px 0 14px;
}


.card p {
    font-size: 14px;

    color: #aeb5b9;

    min-height: 145px;
}


.card a {
    display: inline-flex;

    gap: 14px;

    color: var(--gold);

    text-transform: uppercase;

    font-size: 10px;

    letter-spacing: .15em;

    transition: gap .25s ease;
}


.card a:hover {
    gap: 19px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    position: relative;

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 8%;

    background:
        linear-gradient(
            90deg,
            #06111be8,
            #06111bd0
        ),
        url("https://images.unsplash.com/photo-1531058020387-3be344556be6?auto=format&fit=crop&w=1800&q=80")
        center / cover;
}


.contact h2 {
    font-size: 64px;
}


.contact-copy > p {
    max-width: 470px;

    color: #c3c7c8;
}


.contact address {
    font-style: normal;

    color: #d8d9d5;
}


.contact address a {
    color: var(--gold);
}


/* =========================================================
   FORM
========================================================= */

.form {
    background: #101c27d9;

    border: 1px solid #ffffff1c;

    border-radius: 0px;

    padding: 30px;

    backdrop-filter: blur(10px);

    display: flex;

    flex-direction: column;

    gap: 12px;
}


.form input,
.form textarea {
    width: 100%;

    background: #ffffff08;

    border: 1px solid #ffffff1d;

    border-radius: 0px;

    padding: 14px 15px;

    color: #fff;

    font: inherit;

    outline: none;
}


.form input:focus,
.form textarea:focus {
    border-color: #d8a34399;
}


.two {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}


.form .btn {
    align-self: flex-start;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    display: flex;

    justify-content: space-between;

    padding: 25px 7%;

    border-top: 1px solid #ffffff15;

    color: #777f84;

    font-size: 11px;

    letter-spacing: .08em;

    text-transform: uppercase;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .hero-content {
        width: 88%;

        grid-template-columns: 330px 1fr;

        column-gap: 55px;
    }

    .logo-container {
        max-width: 330px;
    }

    .hero h1 {
        font-size: clamp(44px, 6vw, 60px);
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 900px) {

    .nav {
        left: 12px;

        right: 12px;
    }


    .nav nav {
        display: none;
    }


    .brand img {
        width: 145px;
    }


    .brand {
        height: 54px;
    }


    .nav .btn {
        margin-left: auto;
    }


    /* HERO */

    .hero-content {
        width: 88%;

        grid-template-columns: 280px 1fr;

        column-gap: 45px;

        padding-top: 80px;
    }


    .logo-container {
        max-width: 280px;
    }


    .hero h1 {
        font-size: clamp(40px, 6vw, 55px);
    }


    .lead {
        font-size: 17px;
    }


    /* OTHER SECTIONS */

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


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


    .about-image {
        min-height: 430px;
    }


    .contact h2 {
        font-size: 52px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /* NAV */

    .nav {
        top: 10px;

        height: 64px;

        padding-left: 10px;
    }


    .brand {
        height: 52px;

        padding: 7px 15px;
    }


    .brand img {
        width: 132px;
    }


    .nav .btn {
        font-size: 9px;

        padding: 10px 13px;

        gap: 10px;
    }


    /* =====================================
       HERO MOBILE
    ===================================== */

    .hero {
        min-height: 100svh;

        align-items: flex-start;
    }


    .hero-content {
        width: 88%;

        margin: 0 auto;

        padding-top: 125px;

        padding-bottom: 100px;

        display: grid;

        grid-template-columns: 1fr;

        column-gap: 0;

        row-gap: 0;
    }


    /*
       LOGO SOPRA
    */

    .logo-container {
        width: 100%;

        max-width: 230px;

        grid-column: 1;

        grid-row: auto;

        justify-self: start;

        align-self: start;

        margin-bottom: 38px;
    }


    /*
       TESTI SOTTO IL LOGO
    */

    .hero-content > .eyebrow,
    .hero-content > h1,
    .hero-content > .gold-line,
    .hero-content > .lead,
    .hero-content > .btn {
        grid-column: 1;
    }


    .eyebrow {
        font-size: 10px;

        margin-bottom: 14px;
    }


    .hero h1 {
        font-size: clamp(42px, 12vw, 58px);

        line-height: .96;
    }


    .gold-line {
        margin: 22px 0;
    }


    .lead {
        font-size: 16px;

        max-width: 100%;
    }


    .scroll {
        left: 7%;

        bottom: 20px;
    }


    /* SECTIONS */

    .section {
        padding: 80px 6%;
    }


    /* CARDS */

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


    .card p {
        min-height: 0;
    }


    .section-head h2 {
        font-size: 38px;
    }


    /* FORM */

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


    /* CONTACT */

    .contact h2 {
        font-size: 45px;
    }


    /* FOOTER */

    footer {
        display: block;

        line-height: 2;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .nav .btn {
        padding: 9px 10px;

        font-size: 8px;
    }


    .brand img {
        width: 115px;
    }


    .hero-content {
        padding-top: 115px;
    }


    .logo-container {
        max-width: 190px;

        margin-bottom: 30px;
    }


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


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(22px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}


.reveal.show {
    opacity: 1;

    transform: none;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    .reveal {
        opacity: 1;

        transform: none;

        transition: none;
    }


    .card,
    .btn,
    .card a {
        transition: none;
    }
}