/* =========================================================
   RAWDEZ PHOTOGRAPHY
   MAIN STYLESHEET
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --cream: #efe6dd;
    --cream-light: #f8f3ee;
    --cherry: #9a0002;
    --ink: #171311;
    --white: #ffffff;
    --gray: #6f6863;

    --border: rgba(23, 19, 17, 0.18);

    --radius-large: 28px;
    --radius-medium: 18px;
    --radius-small: 10px;

    --page-padding: clamp(20px, 4vw, 64px);

    --transition-fast: 0.25s ease;
    --transition-normal: 0.4s ease;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: var(--ink);
    color: var(--ink);

    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.site-background {
    position: fixed;
    inset: 0;

    z-index: -2;

    overflow: hidden;
}

.site-background-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.04);

    filter:
        brightness(0.55)
        saturate(0.8);

    transition:
        opacity 0.5s ease,
        transform 1.2s ease;
}

.site-background-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(15, 12, 11, 0.3),
            rgba(15, 12, 11, 0.65)
        );
}


/* =========================================================
   MAIN SITE SHELL
========================================================= */

.site-shell {
    width: calc(100% - 32px);
    max-width: 1600px;

    margin: 16px auto;

    background: var(--cream);

    border-radius: var(--radius-large);

    overflow: hidden;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.28);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    min-height: 96px;

    padding:
        20px
        var(--page-padding);

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom:
        1px solid
        var(--border);

    background:
        rgba(239, 230, 221, 0.93);

    backdrop-filter: blur(14px);

    position: sticky;
    top: 0;

    z-index: 100;
}


/* =========================================================
   LOGO
========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: 190px;
    height: auto;

    object-fit: contain;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-nav {
    display: flex;
    align-items: center;

    gap: 36px;

    font-size: 0.78rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}

.desktop-nav a {
    position: relative;

    transition:
        color var(--transition-fast);
}

.desktop-nav a:not(.nav-book)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: var(--cherry);

    transition:
        width var(--transition-fast);
}

.desktop-nav a:not(.nav-book):hover {
    color: var(--cherry);
}

.desktop-nav a:not(.nav-book):hover::after {
    width: 100%;
}


/* =========================================================
   BOOK BUTTON
========================================================= */

.nav-book {
    display: flex;
    align-items: center;

    gap: 12px;

    background: var(--cherry);
    color: var(--cream);

    padding:
        14px
        20px;

    border-radius: 999px;

    transition:
        transform var(--transition-fast),
        background var(--transition-fast);
}

.nav-book:hover {
    transform: translateY(-2px);

    background: #7d0002;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    border: 1px solid var(--ink);
    border-radius: 50%;

    background: transparent;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 6px;

    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;

    background: var(--ink);
}


/* =========================================================
   MOBILE NAV
========================================================= */

.mobile-nav {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 78vh;

    padding:
        clamp(80px, 10vw, 150px)
        var(--page-padding)
        40px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* =========================================================
   SMALL LABELS
========================================================= */

.section-label,
.section-number {
    margin: 0 0 24px;

    color: var(--cherry);

    font-size: 0.72rem;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.17em;
}


/* =========================================================
   HERO HEADING
========================================================= */

.hero h1 {
    margin: 0;

    max-width: 1200px;

    font-size:
        clamp(4.3rem, 11vw, 11rem);

    font-weight: 900;

    letter-spacing: -0.075em;

    line-height: 0.78;

    text-transform: uppercase;
}

.hero h1 span {
    display: block;

    color: var(--cherry);
}


/* =========================================================
   HERO BOTTOM
========================================================= */

.hero-bottom {
    margin-top: 80px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;
}

.hero-location {
    margin: 0;

    font-size: 0.8rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.13em;
}

.scroll-link {
    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 0.8rem;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    transition:
        color var(--transition-fast);
}

.scroll-link span {
    font-size: 1.3rem;

    transition:
        transform var(--transition-fast);
}

.scroll-link:hover {
    color: var(--cherry);
}

.scroll-link:hover span {
    transform: translateY(5px);
}


/* =========================================================
   PORTFOLIO SECTION
========================================================= */

.portfolio-section {
    padding:
        110px
        var(--page-padding);

    border-top:
        1px solid
        var(--border);
}


/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
    margin-bottom: 54px;
}

.section-description {
    margin: 0;

    max-width: 350px;

    font-size: 1rem;

    line-height: 1.5;

    color: var(--gray);
}


/* =========================================================
   PORTFOLIO GRID
========================================================= */

.portfolio-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 14px;
}


/* =========================================================
   PORTFOLIO CARD
========================================================= */

.portfolio-card {
    position: relative;

    min-height: 550px;

    border-radius: var(--radius-medium);

    overflow: hidden;

    background: var(--ink);
    color: var(--white);

    isolation: isolate;
}

.portfolio-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(0.2, 0.65, 0.3, 1),
        filter var(--transition-normal);
}

.portfolio-card-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.68)
        );

    transition:
        background var(--transition-normal);
}

.portfolio-card-top {
    position: absolute;

    z-index: 2;

    top: 20px;
    left: 20px;
    right: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 0.74rem;
    font-weight: 800;

    letter-spacing: 0.12em;
}

.card-arrow {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.6);

    border-radius: 50%;

    font-size: 1.15rem;

    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}


/* =========================================================
   CARD CONTENT
========================================================= */

.portfolio-card-content {
    position: absolute;

    z-index: 2;

    left: 20px;
    right: 20px;
    bottom: 24px;
}

.portfolio-card-content h2 {
    margin: 0;

    font-size:
        clamp(1.8rem, 2.6vw, 3.2rem);

    line-height: 0.95;

    text-transform: uppercase;

    letter-spacing: -0.04em;
}

.portfolio-card-content p {
    margin:
        10px
        0
        0;

    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.11em;

    opacity: 0.78;
}


/* =========================================================
   CARD HOVER
========================================================= */

.portfolio-card:hover img {
    transform: scale(1.07);
}

.portfolio-card:hover
.portfolio-card-overlay {
    background:
        linear-gradient(
            to bottom,
            rgba(154, 0, 2, 0.08),
            rgba(20, 0, 1, 0.76)
        );
}

.portfolio-card:hover
.card-arrow {
    background: var(--cream);
    color: var(--cherry);

    transform: rotate(45deg);
}


/* =========================================================
   SELECTED WORK
========================================================= */

.selected-work {
    padding:
        120px
        var(--page-padding);

    background: var(--cream-light);
}

.selected-work
.section-heading h2 {
    margin: 0;

    font-size:
        clamp(4rem, 9vw, 9rem);

    line-height: 0.8;

    letter-spacing: -0.07em;

    text-transform: uppercase;
}

.selected-work
.section-heading h2 span {
    color: var(--cherry);
}


/* =========================================================
   EDITORIAL GALLERY
========================================================= */

.editorial-gallery {
    display: grid;

    grid-template-columns:
        1.4fr
        0.75fr
        1fr;

    align-items: start;

    gap: clamp(18px, 3vw, 46px);
}


/* =========================================================
   GALLERY ITEMS
========================================================= */

.gallery-item {
    margin: 0;
}

.gallery-item img {
    width: 100%;

    object-fit: cover;

    border-radius: var(--radius-small);

    filter:
        saturate(0.93);

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(0.985);

    filter:
        saturate(1.05);
}

.gallery-item-large img {
    aspect-ratio: 4 / 5;
}

.gallery-item-small {
    margin-top: 140px;
}

.gallery-item-small img {
    aspect-ratio: 4 / 3;
}

.gallery-item-tall {
    margin-top: 50px;
}

.gallery-item-tall img {
    aspect-ratio: 3 / 5;
}


/* =========================================================
   GALLERY CAPTIONS
========================================================= */

.gallery-item figcaption {
    margin-top: 12px;

    display: flex;
    justify-content: space-between;

    gap: 20px;

    font-size: 0.66rem;
    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    color: var(--gray);
}


/* =========================================================
   BRAND MARQUEE
========================================================= */

.brand-marquee {
    overflow: hidden;

    padding:
        20px
        0;

    background: var(--cherry);
    color: var(--cream);
}

.marquee-track {
    width: max-content;

    display: flex;
    align-items: center;

    animation:
        marquee-scroll
        24s
        linear
        infinite;
}

.marquee-track span {
    padding:
        0
        34px;

    font-size:
        clamp(1.2rem, 2vw, 2rem);

    font-weight: 900;

    white-space: nowrap;

    text-transform: uppercase;

    letter-spacing: -0.025em;
}

.marquee-track span::after {
    content: " ✦";

    margin-left: 68px;
}

@keyframes marquee-scroll {

    from {
        transform:
            translateX(0);
    }

    to {
        transform:
            translateX(-50%);
    }

}


/* =========================================================
   ABOUT SECTION
========================================================= */

.about-section {
    padding:
        130px
        var(--page-padding);

    display: grid;

    grid-template-columns:
        minmax(300px, 0.9fr)
        minmax(300px, 1.1fr);

    align-items: center;

    gap:
        clamp(50px, 8vw, 130px);
}


/* =========================================================
   ABOUT IMAGE
========================================================= */

.about-image {
    position: relative;
}

.about-image img {
    aspect-ratio: 4 / 5;

    object-fit: cover;

    border-radius: var(--radius-medium);
}

.image-label {
    position: absolute;

    bottom: 18px;
    left: 18px;

    padding:
        10px
        14px;

    background: var(--cream);

    border-radius: 999px;

    font-size: 0.68rem;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.1em;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content h2 {
    margin:
        0
        0
        38px;

    font-size:
        clamp(4rem, 8vw, 8rem);

    line-height: 0.8;

    letter-spacing: -0.07em;

    text-transform: uppercase;
}

.about-content h2 span {
    color: var(--cherry);
}

.about-lead {
    margin:
        0
        0
        26px;

    max-width: 590px;

    font-size:
        clamp(1.45rem, 2.5vw, 2.3rem);

    line-height: 1.15;

    letter-spacing: -0.03em;
}

.about-content > p:not(
    .section-number,
    .about-lead,
    .about-signature
) {
    max-width: 570px;

    font-size: 1rem;

    line-height: 1.7;

    color: var(--gray);
}

.about-signature {
    margin-top: 34px;

    color: var(--cherry);

    font-size: 0.82rem;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.15em;
}


/* =========================================================
   PROCESS SECTION
========================================================= */

.process-section {
    padding:
        120px
        var(--page-padding);

    background: var(--ink);
    color: var(--cream);
}

.process-section
.section-heading h2 {
    margin: 0;

    font-size:
        clamp(4rem, 8vw, 8rem);

    line-height: 0.8;

    letter-spacing: -0.07em;

    text-transform: uppercase;
}

.process-section
.section-heading h2 span {
    color: var(--cherry);
}

.process-section
.section-number {
    color: #d86b6c;
}


/* =========================================================
   PROCESS LIST
========================================================= */

.process-list {
    margin-top: 80px;

    border-top:
        1px solid
        rgba(239, 230, 221, 0.22);
}

.process-item {
    min-height: 120px;

    display: grid;

    grid-template-columns:
        80px
        1fr
        1fr;

    align-items: center;

    gap: 30px;

    padding:
        26px
        0;

    border-bottom:
        1px solid
        rgba(239, 230, 221, 0.22);

    transition:
        padding-left var(--transition-normal),
        color var(--transition-normal);
}

.process-item:hover {
    padding-left: 18px;

    color: #ffffff;
}

.process-number {
    color: #d86b6c;

    font-size: 0.72rem;
    font-weight: 800;

    letter-spacing: 0.14em;
}

.process-item h3 {
    margin: 0;

    font-size:
        clamp(1.8rem, 3vw, 3.2rem);

    text-transform: uppercase;

    letter-spacing: -0.04em;
}

.process-item p {
    margin: 0;

    max-width: 360px;

    line-height: 1.5;

    color:
        rgba(239, 230, 221, 0.7);
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    min-height: 75vh;

    padding:
        120px
        var(--page-padding)
        80px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: var(--cherry);
    color: var(--cream);
}

.contact-section
.section-number {
    color:
        rgba(239, 230, 221, 0.7);
}


/* =========================================================
   CONTACT HEADING
========================================================= */

.contact-heading h2 {
    margin:
        40px
        0
        80px;

    max-width: 1200px;

    font-size:
        clamp(4.2rem, 10vw, 10rem);

    line-height: 0.78;

    letter-spacing: -0.075em;

    text-transform: uppercase;
}

.contact-heading h2 span {
    display: block;

    color: var(--ink);
}


/* =========================================================
   CONTACT BOTTOM
========================================================= */

.contact-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;
}

.contact-bottom p {
    margin: 0;

    max-width: 450px;

    font-size:
        clamp(1rem, 1.6vw, 1.35rem);

    line-height: 1.45;
}


/* =========================================================
   BOOKING BUTTON
========================================================= */

.booking-button {
    min-width: 210px;

    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding:
        20px
        24px;

    border-radius: 999px;

    background: var(--cream);
    color: var(--cherry);

    font-size: 0.8rem;
    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    transition:
        transform var(--transition-fast),
        background var(--transition-fast);
}

.booking-button span {
    font-size: 1.2rem;

    transition:
        transform var(--transition-fast);
}

.booking-button:hover {
    transform: translateY(-4px);

    background: var(--white);
}

.booking-button:hover span {
    transform:
        translate(3px, -3px);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding:
        60px
        var(--page-padding)
        30px;

    background: var(--cream);
}

.footer-brand {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    padding-bottom: 55px;

    border-bottom:
        1px solid
        var(--border);
}

.footer-brand img {
    width: min(270px, 50vw);
    height: auto;
}

.footer-brand p {
    margin: 0;

    font-size: 0.78rem;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {
    padding:
        35px
        0;

    display: flex;

    gap: 36px;

    font-size: 0.75rem;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}

.footer-links a {
    transition:
        color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--cherry);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    padding-top: 22px;

    border-top:
        1px solid
        var(--border);

    display: flex;
    justify-content: space-between;

    gap: 30px;

    font-size: 0.65rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    color: var(--gray);
}

.footer-bottom p {
    margin: 0;
}


/* =========================================================
   RESPONSIVE — MEDIUM DESKTOP / TABLET
========================================================= */

@media (max-width: 1100px) {

    .portfolio-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .portfolio-card {
        min-height: 500px;
    }


    .editorial-gallery {
        grid-template-columns:
            1.3fr
            1fr;
    }

    .gallery-item-tall {
        grid-column: 2;

        margin-top: 0;
    }

    .gallery-item-small {
        margin-top: 80px;
    }


    .about-section {
        gap: 60px;
    }


    .process-item {
        grid-template-columns:
            60px
            1fr
            1fr;
    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 800px) {

    .site-shell {
        width: calc(100% - 16px);

        margin: 8px auto;

        border-radius: 20px;
    }


    /* -------------------------
       Header
    ------------------------- */

    .site-header {
        min-height: 78px;
    }

    .brand-logo {
        height: 46px;
    }


    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }


    /* -------------------------
       Mobile Navigation
    ------------------------- */

    .mobile-nav {
        position: fixed;

        inset:
            86px
            8px
            auto
            8px;

        z-index: 90;

        padding:
            30px
            var(--page-padding);

        background: var(--ink);
        color: var(--cream);

        border-radius:
            0
            0
            20px
            20px;

        flex-direction: column;

        gap: 8px;

        transform:
            translateY(-130%);

        opacity: 0;

        pointer-events: none;

        transition:
            transform 0.35s ease,
            opacity 0.35s ease;
    }

    .mobile-nav.active {
        display: flex;

        transform:
            translateY(0);

        opacity: 1;

        pointer-events: auto;
    }

    .mobile-nav a {
        padding:
            18px
            0;

        border-bottom:
            1px solid
            rgba(239, 230, 221, 0.15);

        font-size:
            clamp(2rem, 7vw, 3.5rem);

        font-weight: 900;

        text-transform: uppercase;

        letter-spacing: -0.05em;
    }


    /* -------------------------
       Hero
    ------------------------- */

    .hero {
        min-height: 75vh;

        padding-top: 90px;
    }

    .hero h1 {
        font-size:
            clamp(4rem, 16vw, 8rem);

        line-height: 0.82;
    }


    /* -------------------------
       Portfolio
    ------------------------- */

    .portfolio-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .portfolio-card {
        min-height: 430px;
    }


    /* -------------------------
       Editorial Gallery
    ------------------------- */

    .editorial-gallery {
        display: grid;

        grid-template-columns:
            1fr
            1fr;

        gap: 22px;
    }

    .gallery-item-small,
    .gallery-item-tall {
        margin-top: 0;
    }


    /* -------------------------
       About
    ------------------------- */

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 600px;
    }


    /* -------------------------
       Process
    ------------------------- */

    .process-item {
        grid-template-columns:
            50px
            1fr;

        gap: 18px;
    }

    .process-item p {
        grid-column: 2;
    }


    /* -------------------------
       Contact
    ------------------------- */

    .contact-bottom {
        flex-direction: column;
        align-items: flex-start;
    }


}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 560px) {

    :root {
        --page-padding: 20px;
    }


    /* -------------------------
       Background
    ------------------------- */

    .site-background-image {
        filter:
            brightness(0.45)
            saturate(0.75);
    }


    /* -------------------------
       Header
    ------------------------- */

    .site-header {
        padding:
            14px
            var(--page-padding);
    }

    .brand-logo {
        height: 40px;
    }


    /* -------------------------
       Hero
    ------------------------- */

    .hero {
        min-height: 68vh;

        padding:
            70px
            var(--page-padding)
            30px;
    }

    .hero h1 {
        font-size:
            clamp(3.5rem, 18vw, 6rem);
    }

    .hero-bottom {
        margin-top: 65px;

        align-items: flex-start;
    }


    /* -------------------------
       Sections
    ------------------------- */

    .portfolio-section,
    .selected-work,
    .about-section,
    .process-section,
    .contact-section {
        padding-left:
            var(--page-padding);

        padding-right:
            var(--page-padding);
    }


    .portfolio-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }


    /* -------------------------
       Portfolio Cards
    ------------------------- */

    .portfolio-grid {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .portfolio-card {
        min-height: 440px;
    }

    .portfolio-card-content h2 {
        font-size: 2.6rem;
    }


    /* -------------------------
       Selected Work
    ------------------------- */

    .selected-work {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .selected-work
    .section-heading h2 {
        font-size:
            clamp(3.5rem, 16vw, 6rem);
    }


    .editorial-gallery {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .gallery-item-large,
    .gallery-item-small,
    .gallery-item-tall {
        margin: 0;
    }

    .gallery-item-large img,
    .gallery-item-small img,
    .gallery-item-tall img {
        aspect-ratio: 4 / 5;
    }


    /* -------------------------
       Marquee
    ------------------------- */

    .marquee-track span {
        padding:
            0
            22px;

        font-size: 1.15rem;
    }

    .marquee-track span::after {
        margin-left: 44px;
    }


    /* -------------------------
       About
    ------------------------- */

    .about-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .about-content h2 {
        font-size:
            clamp(3.8rem, 18vw, 6rem);
    }

    .about-lead {
        font-size: 1.35rem;
    }


    /* -------------------------
       Process
    ------------------------- */

    .process-section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .process-section
    .section-heading h2 {
        font-size:
            clamp(3.6rem, 17vw, 6rem);
    }

    .process-list {
        margin-top: 55px;
    }

    .process-item {
        min-height: 0;

        padding:
            26px
            0;

        grid-template-columns:
            40px
            1fr;
    }

    .process-item h3 {
        font-size: 2rem;
    }

    .process-item p {
        font-size: 0.9rem;
    }


    /* -------------------------
       Contact
    ------------------------- */

    .contact-section {
        min-height: 70vh;

        padding-top: 90px;
        padding-bottom: 60px;
    }

    .contact-heading h2 {
        margin:
            35px
            0
            70px;

        font-size:
            clamp(3.5rem, 17vw, 6rem);
    }

    .booking-button {
        width: 100%;
    }


    /* -------------------------
       Footer
    ------------------------- */

    .footer-brand {
        align-items: flex-start;

        flex-direction: column;
    }

    .footer-brand img {
        width: 190px;
    }

    .footer-links {
        flex-direction: column;

        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 12px;
    }

}


/* =========================================================
   REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}