/* =====================================================
   NS CURATED
   Premium Event Design Studio
   ===================================================== */


/* =====================================================
   DESIGN TOKENS
   ===================================================== */

:root {
    --ivory: #F7F2EA;
    --warm-white: #FCF9F5;
    --charcoal: #211C1A;
    --espresso: #2B211F;
    --wine: #8C5360;
    --rose-gold: #B99A82;
    --blush: #E9DED2;
    --taupe: #B9AA9D;
    --text-muted: #6E625C;
    --border: rgba(33, 28, 26, 0.14);

    --max-width: 1240px;
    --section-padding: clamp(80px, 10vw, 140px);
}


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

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ivory);
    color: var(--charcoal);
    font-family: "Manrope", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}


/* =====================================================
     TYPOGRAPHY
     ===================================================== */

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
    line-height: 0.98;
}

h1 em,
h2 em {
    font-style: italic;
    font-weight: 400;
}

p {
    color: var(--text-muted);
}


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

.header {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: relative;
    z-index: 20;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--charcoal);
    line-height: 0;
}

.site-logo {
    display: block;
    width: 220px;
    height: auto;
    max-width: 220px;
    max-height: none;
    object-fit: contain;
}

.logo-ns {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

.logo-text {
    font-size: 10px;
    letter-spacing: 0.22em;
    font-weight: 700;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation a {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);

    border: none;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;

    transition: color 0.25s ease, opacity 0.25s ease;
}

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


/* Instagram */

.navigation .nav-social {
    color: var(--text-muted);
    opacity: 0.85;
}


/* WhatsApp */

.navigation .nav-whatsapp {
    color: var(--text-muted);
    padding: 0;
    border: none;
    background: none;
}


/* Enquire */

.navigation .nav-button {
    color: var(--charcoal);
    padding: 0;
    border: none;
    background: none;
}

.navigation .nav-button::after {
    content: " ↗";
    color: var(--wine);
    font-size: 11px;
}


/* Mobile menu */

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    color: var(--charcoal);
    font-size: 24px;
    cursor: pointer;
}


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

.eyebrow {
    margin-bottom: 22px;

    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;

    color: var(--wine);
}

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

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 15px 22px;

    border: 1px solid var(--wine);
    background: var(--wine);
    color: var(--warm-white);

    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.primary-button:hover {
    background: var(--charcoal);
    border-color: var(--charcoal);
    transform: translateY(-2px);
}

.primary-button span {
    font-size: 15px;
}


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

.hero {
    max-width: var(--max-width);
    min-height: 78vh;

    margin: 0 auto;
    padding: 55px 32px 90px;

    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: clamp(50px, 7vw, 100px);

    align-items: center;
}

.hero-content {
    max-width: 610px;
}

.hero h1 {
    max-width: 620px;

    font-size: clamp(54px, 6vw, 82px);
    letter-spacing: -0.035em;

    color: var(--charcoal);

    margin-bottom: 30px;
}

.hero-description {
    max-width: 500px;

    font-size: 16px;
    line-height: 1.75;

    margin-bottom: 34px;
}


/* ---------- HERO IMAGE ---------- */

.hero-visual {
    position: relative;
    width: 100%;
    min-width: 0;
}

.hero-frame {
    position: relative;

    width: 100%;
    height: 570px;

    overflow: hidden;

    background: var(--blush);
}

.hero-frame img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;
    object-position: center;

    display: block;
}

.hero-frame::before {
    content: "";

    position: absolute;

    inset: 9% 10%;

    border: 1px solid rgba(252, 249, 245, 0.45);

    z-index: 2;

    pointer-events: none;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(33, 28, 26, 0.02) 20%,
            rgba(33, 28, 26, 0.48) 100%);

    z-index: 1;

    pointer-events: none;
}

.hero-label {
    position: absolute;

    left: 11%;
    bottom: 11%;

    z-index: 3;

    color: var(--warm-white);

    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-label span {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 38px;
}

.hero-label small {
    font-size: 8px;
    letter-spacing: 0.18em;
}

.vertical-note {
    position: absolute;

    right: -8px;
    top: 45%;

    writing-mode: vertical-rl;

    font-size: 9px;
    letter-spacing: 0.2em;
    line-height: 1.6;

    color: var(--wine);
}


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

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.whatsapp-link {
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    color: var(--text-muted);
}

.whatsapp-link strong {
    color: var(--wine);
    font-weight: 600;
}

.whatsapp-link:hover strong {
    text-decoration: underline;
}


/* =====================================================
     PHILOSOPHY
     ===================================================== */

.philosophy {
    padding: var(--section-padding) 32px;

    background: var(--espresso);
    color: var(--warm-white);

    text-align: center;
}

.philosophy .eyebrow {
    color: var(--rose-gold);
}

.philosophy h2 {
    max-width: 850px;

    margin: 0 auto 28px;

    font-size: clamp(46px, 5vw, 72px);
    letter-spacing: -0.025em;

    color: var(--warm-white);
}

.philosophy .large-copy {
    max-width: 650px;

    margin: 0 auto;

    font-size: 16px;
    line-height: 1.8;

    color: rgba(252, 249, 245, 0.68);
}


/* =====================================================
     SECTION HEADINGS
     ===================================================== */

.section-heading {
    display: grid;
    grid-template-columns: 1fr 0.7fr;

    gap: 60px;

    align-items: end;

    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: clamp(48px, 5.5vw, 76px);
    letter-spacing: -0.035em;
}

.section-heading>p {
    max-width: 440px;

    font-size: 15px;
    line-height: 1.8;
}


/* =====================================================
     EXPERIENCES
     ===================================================== */

.experiences {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.experience-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    border-top: 1px solid var(--border);
}

.experience-card {
    position: relative;

    min-width: 0;

    padding: 0 0 40px;

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

    transition: background 0.3s ease;
}

.experience-card:nth-child(odd) {
    border-right: 1px solid var(--border);
}


/* ---------- EXPERIENCE IMAGE ---------- */

.experience-image {
    width: 100%;
    height: 250px;

    overflow: hidden;

    background: var(--blush);
}

.experience-image img {
    width: 100%;
    height: 100%;

    max-width: none;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.03);
}


/* ---------- EXPERIENCE CONTENT ---------- */

.experience-content {
    padding: 30px 38px 0;
}

.experience-card .number {
    display: block;

    margin-bottom: 30px;

    font-size: 10px;
    letter-spacing: 0.15em;

    color: var(--wine);
}

.experience-card h3 {
    max-width: 400px;

    margin-bottom: 18px;

    font-size: clamp(32px, 3.2vw, 48px);

    letter-spacing: -0.02em;
}

.experience-card p {
    max-width: 450px;

    font-size: 14px;
    line-height: 1.75;

    margin-bottom: 24px;
}

.experience-card a {
    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: 0.12em;

    font-weight: 700;

    color: var(--wine);
}


/* =====================================================
     APPROACH
     ===================================================== */

.approach {
    padding: var(--section-padding) 32px;

    background: var(--blush);
}

.approach-heading {
    max-width: var(--max-width);

    margin: 0 auto 70px;
}

.approach-heading h2 {
    font-size: clamp(50px, 5.5vw, 78px);

    letter-spacing: -0.035em;
}

.steps {
    max-width: var(--max-width);

    margin: 0 auto;

    display: grid;

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

.step {
    padding: 0 30px;

    border-left: 1px solid var(--border);
}

.step:last-child {
    border-right: 1px solid var(--border);
}

.step>span {
    display: block;

    margin-bottom: 42px;

    font-size: 10px;
    letter-spacing: 0.15em;

    color: var(--wine);
}

.step h3 {
    margin-bottom: 15px;

    font-size: 34px;
}

.step p {
    font-size: 13px;
    line-height: 1.75;
}


/* =====================================================
     PORTFOLIO
     ===================================================== */

.portfolio-grid {
    width: 100%;
    max-width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr) minmax(0, 0.85fr);

    grid-template-rows: 260px 260px;

    gap: 14px;

    margin-top: 55px;
}


/* Every portfolio frame is fixed */

.portfolio-image {
    position: relative;

    width: 100%;
    height: 260px;

    min-width: 0;
    max-width: 100%;

    overflow: hidden;

    background: var(--blush);
}


/* Large first image */

.portfolio-image.image-one {
    grid-column: 1;
    grid-row: 1 / span 2;

    height: 534px;
}


/* Second image */

.portfolio-image.image-two {
    grid-column: 2;
    grid-row: 1;

    height: 260px;
}


/* Third image */

.portfolio-image.image-three {
    grid-column: 2;
    grid-row: 2;

    height: 260px;
}


/* Actual images */

.portfolio-image img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    max-width: none;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}

.portfolio-image:hover img {
    transform: scale(1.04);
}


/* Dark gradient */

.portfolio-image::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(to top,
            rgba(33, 28, 26, 0.65),
            rgba(33, 28, 26, 0.08) 55%,
            transparent);
}


/* Portfolio text */

.portfolio-image span {
    position: absolute;

    left: 25px;
    bottom: 22px;

    z-index: 2;

    color: #fff;

    font-size: 12px;
    line-height: 1.25;

    letter-spacing: 0.18em;
}

.portfolio-note {
    margin-top: 22px;

    text-align: center;

    color: var(--text-muted);

    font-size: 13px;
    letter-spacing: 0.04em;
}


/* =====================================================
     SOCIAL CTA
     ===================================================== */

.social-cta {
    background: var(--blush);

    padding: 7rem max(32px, 6vw);

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 6rem;

    align-items: center;
}

.social-cta-intro {
    max-width: 480px;
}

.social-cta-intro h2 {
    margin: 0.5rem 0 1.5rem;

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

.social-cta-intro>p:last-child {
    max-width: 420px;

    color: var(--text-muted);

    line-height: 1.8;
}

.social-cta-links {
    display: flex;
    flex-direction: column;
}

.social-cta-card {
    display: flex;
    align-items: center;

    gap: 2rem;

    padding: 2rem 0;

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

    text-decoration: none;

    color: var(--charcoal);

    transition: padding-left 0.3s ease;
}

.social-cta-card:last-child {
    border-bottom: 1px solid var(--border);
}

.social-cta-card:hover {
    padding-left: 0.75rem;
}

.social-cta-number {
    font-size: 0.7rem;

    letter-spacing: 0.1em;

    color: var(--wine);
}

.social-cta-card small {
    display: block;

    margin-bottom: 0.4rem;

    font-size: 0.62rem;

    letter-spacing: 0.14em;

    color: var(--text-muted);
}

.social-cta-card h3 {
    margin: 0;

    font-family: inherit;

    font-size: clamp(1.15rem, 2vw, 1.6rem);

    font-weight: 500;
}


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

.about {
    display: grid;

    grid-template-columns: 0.65fr 1.35fr;

    gap: 80px;

    align-items: center;

    padding: 120px 32px;

    background: var(--warm-white);
}

.about-mark {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-logo {
    display: block;
    width: min(330px, 100%);
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.about-content {
    max-width: 680px;
}

.about-content h2 {
    margin-bottom: 32px;

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

    letter-spacing: -0.03em;
}

.about-content p {
    max-width: 650px;

    margin-bottom: 20px;

    font-size: 15px;
    line-height: 1.85;
}

.about-founder {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    font-size: 13px !important;
    color: var(--text-muted);
}

.about-founder strong {
    color: var(--charcoal);
    font-weight: 600;
}


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

.contact {
    padding: var(--section-padding) 32px;

    background: var(--espresso);

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: clamp(60px, 10vw, 150px);

    color: var(--warm-white);
}

.contact-heading {
    max-width: 480px;

    margin-left: auto;
}

.contact-heading .eyebrow {
    color: var(--rose-gold);
}

.contact-heading h2 {
    margin-bottom: 28px;

    font-size: clamp(52px, 5.5vw, 78px);

    letter-spacing: -0.035em;

    color: var(--warm-white);
}

.contact-heading p {
    color: rgba(252, 249, 245, 0.68);

    font-size: 15px;
    line-height: 1.8;
}

.contact-form {
    max-width: 600px;
}

.form-field {
    margin-bottom: 27px;
}

.form-field label {
    display: block;

    margin-bottom: 9px;

    font-size: 9px;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    color: var(--rose-gold);
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;

    padding: 13px 0;

    border: 0;

    border-bottom: 1px solid rgba(252, 249, 245, 0.25);

    background: transparent;

    color: var(--warm-white);

    outline: none;

    border-radius: 0;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(252, 249, 245, 0.42);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-bottom-color: var(--rose-gold);
}

.form-field textarea {
    resize: vertical;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;
}

.contact-form .primary-button {
    margin-top: 8px;
}

.form-message {
    margin-top: 18px;

    font-size: 13px;

    line-height: 1.6;

    color: var(--rose-gold);
}


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

.footer {
    position: relative;

    padding: 65px 32px 28px;

    background: var(--charcoal);

    color: var(--warm-white);
}

.footer-brand {
    max-width: var(--max-width);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;

    padding-bottom: 55px;
}

.footer .logo {
    color: var(--warm-white);
}

.footer-brand>p {
    color: rgba(252, 249, 245, 0.58);

    font-size: 13px;

    line-height: 1.7;
}

.footer-links {
    max-width: var(--max-width);

    margin: 0 auto;

    display: flex;

    gap: 30px;

    padding-bottom: 22px;
}

.footer-links a {
    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    color: rgba(252, 249, 245, 0.62);

    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--rose-gold);
}

.footer-bottom {
    max-width: var(--max-width);

    margin: 30px auto 0;

    padding-top: 22px;

    border-top: 1px solid rgba(252, 249, 245, 0.12);

    font-size: 9px;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    color: rgba(252, 249, 245, 0.4);
}


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

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


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

@media (max-width: 900px) {

    .header {
        padding: 24px;
    }

    .site-logo {
        width: 190px;
        max-width: 190px;
    }

    .about-logo {
        width: min(300px, 80vw);
    }

    .navigation {
        gap: 20px;
    }


    /* HERO */

    .hero {
        grid-template-columns: 1fr;

        min-height: auto;

        padding: 60px 24px 90px;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-frame {
        height: 500px;
    }


    /* COMMON */

    .section {
        padding-left: 24px;
        padding-right: 24px;
    }


    /* HEADINGS */

    .section-heading {
        grid-template-columns: 1fr;

        gap: 25px;

        margin-bottom: 50px;
    }


    /* EXPERIENCE */

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

    .experience-image {
        height: 220px;
    }

    .experience-content {
        padding: 26px;
    }


    /* APPROACH */

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

        row-gap: 50px;
    }

    .step:nth-child(3) {
        border-left: 0;
    }


    /* PORTFOLIO */

    .portfolio-grid {
        grid-template-columns:
            minmax(0, 1fr) minmax(0, 1fr);

        grid-template-rows: 230px 230px;
    }

    .portfolio-image {
        height: 230px;
    }

    .portfolio-image.image-one {
        height: 474px;
    }


    /* ABOUT */

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

        gap: 55px;

        padding-left: 24px;
        padding-right: 24px;
    }


    /* CONTACT */

    .contact {
        grid-template-columns: 1fr;

        padding-left: 24px;
        padding-right: 24px;
    }

    .contact-heading {
        margin-left: 0;
    }


    /* SOCIAL CTA */

    .social-cta {
        padding: 6rem 24px;

        grid-template-columns: 1fr;

        gap: 3rem;
    }
}

/* =====================================================
   BRAND LOGO
   ===================================================== */

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--charcoal);
    line-height: 0;
}

.site-logo {
    display: block;
    width: 220px;
    height: auto;
    max-width: 220px;
    max-height: none;
    object-fit: contain;
}

/* ABOUT LOGO */

.about-logo {
    display: block;
    width: min(330px, 100%);
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* FOOTER LOGO */

.footer-logo .site-logo {
    filter: brightness(0) invert(1);
    opacity: 0.92;
}

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

@media (max-width: 650px) {

    .header {
        padding: 22px 20px;
    }


    /* MOBILE NAVIGATION */

    .navigation {
        display: none;

        position: absolute;

        top: 76px;

        left: 20px;
        right: 20px;

        padding: 25px;

        flex-direction: column;

        align-items: stretch;

        gap: 20px;

        background: var(--warm-white);

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

        box-shadow: 0 15px 40px rgba(33, 28, 26, 0.1);
    }

    .navigation.open {
        display: flex;
    }

    .navigation a {
        padding: 8px 0;
    }

    .navigation .nav-button {
        text-align: left;
    }

    .menu-button {
        display: block;
    }

    .site-logo {
        width: 150px;
        max-width: 150px;
    }

    .about-logo {
        width: min(300px, 85vw);
        max-width: 100%;
    }


    /* HERO */

    .hero {
        padding: 45px 20px 75px;

        gap: 55px;
    }

    .hero h1 {
        font-size: clamp(50px, 15vw, 68px);
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-frame {
        height: 430px;
    }

    .vertical-note {
        display: none;
    }


    /* PHILOSOPHY */

    .philosophy {
        padding-left: 20px;
        padding-right: 20px;
    }

    .philosophy h2 {
        font-size: 46px;
    }


    /* COMMON */

    .section {
        padding-left: 20px;
        padding-right: 20px;
    }


    /* SECTION HEADINGS */

    .section-heading {
        margin-bottom: 45px;
    }

    .section-heading h2 {
        font-size: 52px;
    }


    /* EXPERIENCE */

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

    .experience-card {
        min-height: 0;
    }

    .experience-card:nth-child(odd) {
        border-right: 0;
    }

    .experience-image {
        height: 220px;
    }

    .experience-content {
        padding: 28px 25px 35px;
    }

    .experience-card .number {
        margin-bottom: 28px;
    }


    /* APPROACH */

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

    .step,
    .step:nth-child(3) {
        border-left: 0;
        border-right: 0;

        padding: 0;
    }


    /* PORTFOLIO */

    .portfolio-grid {
        grid-template-columns: 1fr;

        grid-template-rows: none;

        gap: 12px;

        margin-top: 38px;
    }

    .portfolio-image,
    .portfolio-image.image-one,
    .portfolio-image.image-two,
    .portfolio-image.image-three {
        grid-column: 1;
        grid-row: auto;

        width: 100%;
        max-width: 100%;

        height: 300px;
    }

    .portfolio-image span {
        left: 20px;
        bottom: 18px;
    }


    /* SOCIAL CTA */

    .social-cta {
        padding: 5rem 20px;

        grid-template-columns: 1fr;

        gap: 3rem;
    }

    .social-cta-card {
        gap: 1rem;
    }

    .social-cta-card h3 {
        font-size: 1.1rem;
    }


    /* ABOUT */

    .about {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-mark {
        width: 100%;
        height: auto;
        min-height: 0;

        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* CONTACT */

    .contact {
        padding-left: 20px;
        padding-right: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    /* FOOTER */

    .footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-brand {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .footer-links {
        flex-wrap: wrap;

        gap: 18px 25px;
    }

    .footer-logo .site-logo {
        filter: brightness(0) invert(1);
        opacity: 0.92;
    }
}