/* =========================================================
   NOME PROFUMERIA
   Premium / Luxury stylesheet
   ========================================================= */


/* =========================================================
   VARIABLES
   ========================================================= */

:root {

    --black: #171512;
    --black-soft: #211e1a;

    --cream: #f5f1ea;
    --cream-dark: #ebe5db;

    --white: #ffffff;

    --gold: #b39a68;
    --gold-light: #d0bd91;

    --text: #292621;
    --text-light: #777067;

    --border: #d9d1c5;

    --serif:
        Georgia,
        "Times New Roman",
        serif;

    --sans:
        Arial,
        Helvetica,
        sans-serif;

    --container: 1240px;

}


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

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


html {
    scroll-behavior: smooth;
}


body {

    background: var(--cream);

    color: var(--text);

    font-family: var(--serif);

    line-height: 1.7;

    overflow-x: hidden;

}


img {

    display: block;

    width: 100%;

}


a {

    color: inherit;

    text-decoration: none;

}


button {

    font-family: inherit;

}


/* =========================================================
   COMMON
   ========================================================= */

.container {

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 0 auto;

}


.section {

    padding: 130px 0;

}


.section-light {

    background: var(--white);

}


.eyebrow {

    font-family: var(--sans);

    font-size: 10px;

    letter-spacing: 3px;

    font-weight: 600;

    color: var(--gold);

    margin-bottom: 22px;

}


.section-intro {

    max-width: 650px;

    margin-bottom: 70px;

}


.section-intro.centered {

    text-align: center;

    margin-left: auto;
    margin-right: auto;

}


.section-intro h2,
.intro-content h2,
.niche-header h2,
.contact-main h2 {

    font-size: clamp(
        42px,
        5vw,
        70px
    );

    line-height: 1.05;

    font-weight: normal;

    margin-bottom: 28px;

}


h2 em,
h1 em,
h3 em {

    font-style: italic;

    color: var(--gold);

}


.section-intro p {

    color: var(--text-light);

    font-size: 16px;

    max-width: 560px;

}


.centered p {

    margin-left: auto;
    margin-right: auto;

}


.gold-line {

    width: 55px;

    height: 1px;

    background: var(--gold);

    margin: 30px 0;

}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    color: var(--white);

    transition:
        background 0.4s ease,
        color 0.4s ease,
        box-shadow 0.4s ease;

}


.site-header.scrolled {

    background: rgba(
        23,
        21,
        18,
        0.96
    );

    box-shadow:
        0 4px 25px rgba(
            0,
            0,
            0,
            0.12
        );

}


.header-inner {

    width: min(
        calc(100% - 70px),
        1380px
    );

    min-height: 95px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.brand-logo {

    width: 145px;

}


.brand-logo img {

    max-height: 58px;

    object-fit: contain;

}


.main-nav {

    display: flex;

    align-items: center;

    gap: 34px;

    font-family: var(--sans);

    font-size: 10px;

    letter-spacing: 1.7px;

    text-transform: uppercase;

}


.main-nav a {

    position: relative;

    padding: 8px 0;

}


.main-nav a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;

    height: 1px;

    background: var(--gold-light);

    transition: width 0.3s ease;

}


.main-nav a:hover::after {

    width: 100%;

}


.menu-toggle {

    display: none;

    width: 40px;
    height: 40px;

    border: 0;

    background: transparent;

    cursor: pointer;

}


.menu-toggle span {

    display: block;

    width: 25px;

    height: 1px;

    margin: 6px auto;

    background: currentColor;

}


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

.hero {

    position: relative;

    height: 100vh;

    min-height: 680px;

    display: flex;

    align-items: center;

    color: var(--white);

    overflow: hidden;

}


.hero-image {

    position: absolute;

    inset: 0;

    background:
        url("../images/hero/hero.jpg")
        center center /
        cover no-repeat;

    transform: scale(1.03);

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(15,13,11,0.76) 0%,
            rgba(15,13,11,0.48) 45%,
            rgba(15,13,11,0.18) 100%
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: auto;

    padding-top: 80px;

}


.hero-eyebrow {

    font-family: var(--sans);

    font-size: 10px;

    letter-spacing: 3px;

    margin-bottom: 28px;

    color: var(--gold-light);

}


.hero h1 {

    max-width: 850px;

    font-size: clamp(
        58px,
        8vw,
        105px
    );

    line-height: 0.98;

    font-weight: normal;

    letter-spacing: -2px;

    margin-bottom: 35px;

}


.hero-text {

    max-width: 510px;

    font-size: 18px;

    color: rgba(
        255,
        255,
        255,
        0.84
    );

    margin-bottom: 40px;

}


.gold-button {

    display: inline-flex;

    align-items: center;

    gap: 28px;

    padding: 15px 24px;

    border: 1px solid var(--gold-light);

    color: var(--white);

    font-family: var(--sans);

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        gap 0.3s ease;

}


.gold-button span {

    font-size: 18px;

    line-height: 1;

}


.gold-button:hover {

    background: var(--gold-light);

    color: var(--black);

    gap: 35px;

}


.dark-button {

    color: var(--black);

    border-color: var(--gold);

}


.dark-button:hover {

    background: var(--gold);

}


.hero-bottom {

    position: absolute;

    z-index: 2;

    bottom: 35px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 15px;

    font-family: var(--sans);

    font-size: 9px;

    letter-spacing: 3px;

}


.scroll-line {

    width: 55px;

    height: 1px;

    background: var(--gold-light);

}


/* =========================================================
   INTRO
   ========================================================= */

.intro {

    background: var(--cream);

}


.intro-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: center;

}


.intro-image {

    position: relative;

}


.intro-image img {

    height: 650px;

    object-fit: cover;

}


.image-caption {

    position: absolute;

    left: 25px;
    bottom: 25px;

    color: var(--white);

    font-family: var(--sans);

    font-size: 9px;

    letter-spacing: 2px;

}


.intro-content {

    max-width: 560px;

}


.intro-content .lead {

    font-size: 20px;

    line-height: 1.65;

    margin-bottom: 20px;

}


.intro-content p:not(.lead) {

    color: var(--text-light);

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 30px;

    font-family: var(--sans);

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

    border-bottom: 1px solid var(--gold);

    padding-bottom: 7px;

}


.text-link span {

    color: var(--gold);

    font-size: 16px;

}


/* =========================================================
   BRANDS
   ========================================================= */

.brands {

    border-top: 1px solid #eee;

}


.brands-grid {

    display: grid;

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

    gap: 25px;

}


.brand {

    text-align: center;

}


.brand-image {

    overflow: hidden;

    margin-bottom: 20px;

}


.brand-image img {

    height: 330px;

    object-fit: cover;

    transition:
        transform 0.7s ease;

}


.brand:hover img {

    transform: scale(1.04);

}


.brand-name {

    font-family: var(--sans);

    font-size: 11px;

    letter-spacing: 3px;

}


.center-link {

    text-align: center;

    margin-top: 60px;

}


/* =========================================================
   NICHE
   ========================================================= */

.niche-section {

    background: var(--black);

    color: var(--white);

}


.niche-header {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 70px;

    margin-bottom: 70px;

}


.niche-header h2 {

    margin-bottom: 0;

}


.niche-header > p {

    max-width: 390px;

    color: #aaa39a;

    margin-bottom: 8px;

}


.niche-feature {

    display: grid;

    grid-template-columns:
        1.25fr 0.75fr;

    min-height: 650px;

}


.niche-feature-image {

    overflow: hidden;

}


.niche-feature-image img {

    height: 650px;

    object-fit: cover;

    transition:
        transform 1s ease;

}


.niche-feature:hover
.niche-feature-image img {

    transform: scale(1.025);

}


.niche-feature-content {

    background: var(--cream);

    color: var(--text);

    padding: 80px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.niche-number {

    font-family: var(--sans);

    font-size: 10px;

    color: var(--gold);

    letter-spacing: 2px;

    margin-bottom: 50px;

}


.niche-feature-content h3 {

    font-size: 48px;

    font-weight: normal;

    margin-bottom: 5px;

}


.niche-feature-content p {

    color: var(--text-light);

    margin-bottom: 15px;

}


.niche-feature-content .gold-button {

    align-self: flex-start;

    margin-top: 25px;

}


.niche-cards {

    display: grid;

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

    gap: 25px;

    margin-top: 25px;

}


.niche-card {

    cursor: pointer;

}


.niche-card-image {

    overflow: hidden;

}


.niche-card-image img {

    height: 390px;

    object-fit: cover;

    transition:
        transform 0.8s ease;

}


.niche-card:hover
.niche-card-image img {

    transform: scale(1.04);

}


.niche-card-content {

    padding: 22px 0;

    border-bottom: 1px solid #393631;

}


.niche-card-content > span {

    color: var(--gold);

    font-family: var(--sans);

    font-size: 9px;

    letter-spacing: 2px;

}


.niche-card-content h3 {

    font-size: 28px;

    font-weight: normal;

    margin: 3px 0;

}


.niche-card-content p {

    color: #8f8981;

    font-family: var(--sans);

    font-size: 9px;

    letter-spacing: 1px;

    text-transform: uppercase;

}


/* =========================================================
   QUOTE
   ========================================================= */

.quote-section {

    position: relative;

    min-height: 570px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: var(--white);

}


.quote-image {

    position: absolute;

    inset: 0;

    background:
        url("../images/ambiente/interno-02.jpg")
        center /
        cover
        no-repeat;

}


.quote-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(
            15,
            13,
            11,
            0.67
        );

}


.quote-content {

    position: relative;

    z-index: 2;

    max-width: 800px;

}


.quote-mark {

    color: var(--gold-light);

    font-size: 80px;

    height: 70px;

    line-height: 1;

}


blockquote {

    font-size: clamp(
        38px,
        5vw,
        65px
    );

    line-height: 1.1;

    font-weight: normal;

    font-style: italic;

}


.quote-line {

    width: 45px;

    height: 1px;

    background: var(--gold);

    margin: 30px auto;

}


.quote-content p {

    font-family: var(--sans);

    font-size: 9px;

    letter-spacing: 3px;

    color: var(--gold-light);

}


/* =========================================================
   FRAGRANCES
   ========================================================= */

.fragrance-grid {

    display: grid;

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

    gap: 25px;

}


.fragrance {

    cursor: pointer;

}


.fragrance-image {

    position: relative;

    overflow: hidden;

}


.fragrance-image img {

    height: 480px;

    object-fit: cover;

    transition:
        transform 0.8s ease;

}


.fragrance:hover
.fragrance-image img {

    transform: scale(1.04);

}


.fragrance-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(
            20,
            18,
            15,
            0.35
        );

    color: var(--white);

    font-family: var(--sans);

    font-size: 9px;

    letter-spacing: 3px;

    opacity: 0;

    transition:
        opacity 0.4s ease;

}


.fragrance:hover
.fragrance-overlay {

    opacity: 1;

}


.fragrance-info {

    padding: 20px 0;

}


.fragrance-info > span {

    font-family: var(--sans);

    font-size: 9px;

    letter-spacing: 2px;

    color: var(--gold);

}


.fragrance-info h3 {

    font-size: 24px;

    font-weight: normal;

    margin: 3px 0;

}


.fragrance-info p {

    color: var(--text-light);

    font-size: 13px;

}


/* =========================================================
   VISIT / CTA
   ========================================================= */

.visit-section {

    position: relative;

    min-height: 600px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: var(--white);

}


.visit-image {

    position: absolute;

    inset: 0;

    background:
        url("../images/hero/hero.jpg")
        center /
        cover
        no-repeat;

}


.visit-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(
            20,
            17,
            14,
            0.72
        );

}


.visit-content {

    position: relative;

    z-index: 2;

    max-width: 720px;

}


.visit-content h2 {

    font-size: clamp(
        45px,
        6vw,
        75px
    );

    line-height: 1.05;

    font-weight: normal;

    margin-bottom: 25px;

}


.visit-content p {

    max-width: 520px;

    margin: 0 auto 35px;

    color: #d2cdc5;

}


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

.contact {

    background: var(--cream);

}


.contact-grid {

    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    gap: 150px;

}


.contact-main h2 {

    max-width: 550px;

}


.address {

    font-size: 18px;

    margin-bottom: 25px;

}


.contact-link {

    display: block;

    width: fit-content;

    font-family: var(--sans);

    font-size: 12px;

    letter-spacing: 1px;

    margin-bottom: 10px;

}


.contact-hours {

    padding-top: 65px;

}


.contact-hours h3 {

    font-size: 30px;

    font-weight: normal;

    margin-bottom: 30px;

}


.hours-row {

    display: flex;

    justify-content: space-between;

    gap: 30px;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);

    font-family: var(--sans);

    font-size: 11px;

}


.hours-row span:last-child {

    color: var(--text-light);

}


.map-link {

    display: inline-block;

    margin-top: 35px;

    color: var(--gold);

    font-family: var(--sans);

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

}


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

.footer {

    background: var(--black);

    color: #aaa39a;

    padding: 35px 0;

}


.footer-inner {

    display: grid;

    grid-template-columns:
        1fr 1fr 1fr;

    align-items: center;

}


.footer-brand img {

    width: 120px;

    max-height: 45px;

    object-fit: contain;

}


.footer-copy {

    text-align: center;

    font-family: var(--sans);

    font-size: 9px;

    letter-spacing: 1px;

}


.footer-links {

    display: flex;

    justify-content: flex-end;

    gap: 25px;

    font-family: var(--sans);

    font-size: 9px;

}


/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

.reveal {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


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

@media (max-width: 1050px) {


    .main-nav {

        gap: 18px;

    }


    .intro-grid {

        gap: 55px;

    }


    .niche-feature-content {

        padding: 55px;

    }


    .contact-grid {

        gap: 80px;

    }

}


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

@media (max-width: 850px) {


    .container {

        width: min(
            calc(100% - 40px),
            var(--container)
        );

    }


    .section {

        padding: 90px 0;

    }


    .header-inner {

        width: calc(100% - 40px);

        min-height: 80px;

    }


    .menu-toggle {

        display: block;

    }


    .main-nav {

        position: absolute;

        top: 80px;

        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        padding: 20px;

        background: var(--black);

    }


    .main-nav.open {

        display: flex;

    }


    .main-nav a {

        width: 100%;

        padding: 15px 0;

        border-bottom:
            1px solid #35312d;

    }


    .hero-content {

        width: calc(100% - 40px);

    }


    .hero h1 {

        font-size: clamp(
            50px,
            14vw,
            75px
        );

    }


    .intro-grid {

        grid-template-columns: 1fr;

    }


    .intro-image img {

        height: 500px;

    }


    .brands-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .niche-header {

        display: block;

    }


    .niche-header > p {

        margin-top: 25px;

    }


    .niche-feature {

        grid-template-columns: 1fr;

    }


    .niche-feature-image img {

        height: 500px;

    }


    .niche-cards {

        grid-template-columns:
            1fr 1fr;

    }


    .fragrance-grid {

        grid-template-columns:
            1fr 1fr;

    }


    .contact-grid {

        grid-template-columns: 1fr;

    }


    .contact-hours {

        padding-top: 0;

    }


    .footer-inner {

        grid-template-columns: 1fr;

        gap: 20px;

        text-align: center;

    }


    .footer-brand img {

        margin: auto;

    }


    .footer-links {

        justify-content: center;

    }

}


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

@media (max-width: 550px) {


    .hero {

        min-height: 650px;

    }


    .hero h1 {

        letter-spacing: -1px;

    }


    .hero-text {

        font-size: 16px;

    }


    .intro-image img {

        height: 420px;

    }


    .brands-grid,
    .niche-cards,
    .fragrance-grid {

        grid-template-columns: 1fr;

    }


    .brand-image img {

        height: 360px;

    }


    .niche-feature-image img {

        height: 400px;

    }


    .niche-feature-content {

        padding: 45px 30px;

    }


    .niche-feature-content h3 {

        font-size: 40px;

    }


    .niche-card-image img {

        height: 400px;

    }


    .fragrance-image img {

        height: 470px;

    }


    .contact-grid {

        gap: 55px;

    }


    .hours-row {

        font-size: 10px;

    }


    .footer-links {

        flex-direction: column;

        gap: 10px;

    }

}
