/* =============================================================
   STYLESHEET
   =============================================================

   CONTENTS
   -------------------------------------------------------------
   01. Design System
   02. Reset & Global Styles
   03. Accessibility
   04. Site Header
   05. Navigation
   06. Hero Video
   07. Client Logo Ticker
   08. Parallax Sections
   09. Parallax CTA
   10. Intro / Content Sections
   11. What We Do
   12. Split Image / Text Sections
   13. Client Testimonials
   14. Site Footer
   15. Contact Modal
   16. Tablet Responsive Styles
   17. Mobile Responsive Styles
   18. Small Screen Adjustments

   ============================================================= */


/* =============================================================
   01. DESIGN SYSTEM
   ============================================================= */

   :root {
    /* Colours */
    --color-black: #000;
    --color-white: #fff;

    /* Typography */
    --font-primary: "Montserrat", sans-serif;
    --font-secondary: "DM Sans", sans-serif;

    /* Layout */
    --content-width: 1450px;
    --header-height: 82px;

    /* Animation */
    --transition-fast: 0.25s ease;
    --transition-standard: 0.35s ease;
    --transition-smooth: 0.45s cubic-bezier(.22, 1, .36, 1);

    /* Sections */
    --section-padding: clamp(4rem, 8vw, 8rem);
}


/* =============================================================
   02. RESET & GLOBAL STYLES
   ============================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    min-height: 100vh;

    overflow-x: hidden;

    background: var(--color-black);
    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;

    letter-spacing: 0.1rem;
}

img,
video {
    max-width: 100%;
}

img {
    display: block;
}

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

button {
    color: inherit;
}

a {
    color: inherit;
}

ul {
    list-style: none;
}

h1,
h2 {
    color: var(--color-white);
    font-weight: 100;
}

p,
li {
    font-family: var(--font-secondary);
}


/* =============================================================
   03. ACCESSIBILITY
   ============================================================= */

:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 5px;
}

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* =============================================================
   04. SITE HEADER
   ============================================================= */

.site-header {
    position: fixed;
    inset: 0 0 auto;

    z-index: 1000;

    width: 100%;

    background: transparent;

    transition:
        background var(--transition-standard),
        box-shadow var(--transition-standard);
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.98);
}


/* =============================================================
   05. NAVIGATION
   ============================================================= */

.navbar {
    width: min(100%, var(--content-width));
    min-height: var(--header-height);

    margin-inline: auto;
    padding: 1rem;

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

.logo {
    display: block;
    line-height: 0;
}

.logo img {
    width: auto;
    height: 50px;
}


/* -------------------------------------------------------------
   Navigation Links
   ------------------------------------------------------------- */

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
    font-family: var(--font-primary);
}

.nav-links li + li::before {
    content: "/";

    margin-inline: 20px;

    color: var(--color-white);
    opacity: 0.75;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 400;

    transition: opacity var(--transition-fast);
}

.nav-links a:hover {
    opacity: 0.65;
}


/* -------------------------------------------------------------
   Mobile Menu Button
   ------------------------------------------------------------- */

.menu-toggle {
    position: relative;

    display: none;

    width: 50px;
    height: 50px;

    padding: 0;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 2px;

    width: 45px;
    height: 3px;

    background: var(--color-white);

    transition: transform var(--transition-standard);
}

.menu-toggle span:first-child {
    top: 16px;
}

.menu-toggle span:last-child {
    top: 30px;
}


/* Hamburger → X */

.menu-toggle.active span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:last-child {
    transform: translateY(-7px) rotate(-45deg);
}



/* =============================================================
   06. HERO VIDEO
   ============================================================= */

.hero {
    position: relative;

    width: 100%;
    height: 100svh;

    min-height: 500px;

    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =============================================================
   07. CLIENT LOGO TICKER
   ============================================================= */

.logo-ticker {
    position: relative;

    width: 100%;

    overflow: hidden;

    padding-block: 10px;

    background: var(--color-black);

    cursor: grab;
    user-select: none;

    touch-action: pan-y;
}

.logo-ticker.is-dragging {
    cursor: grabbing;
}

.ticker-track {
    display: flex;

    width: max-content;

    will-change: transform;
}

.ticker-group {
    display: flex;
    align-items: center;

    flex-shrink: 0;

    gap: 80px;

    padding-right: 80px;
}

.ticker-group img {
    width: auto;
    height: 52px;

    object-fit: contain;

    opacity: 0.75;

    pointer-events: none;

    transition:
        opacity var(--transition-fast),
        transform var(--transition-fast);
}

.ticker-group img:hover {
    opacity: 1;
    transform: scale(1.04);
}


/* -------------------------------------------------------------
   Ticker Fade Edges
   ------------------------------------------------------------- */

.logo-ticker::before,
.logo-ticker::after {
    content: "";

    position: absolute;
    top: 0;

    z-index: 5;

    width: 220px;
    height: 100%;

    pointer-events: none;
}

.logo-ticker::before {
    left: 0;

    background:
        linear-gradient(
            to right,
            var(--color-black),
            transparent
        );
}

.logo-ticker::after {
    right: 0;

    background:
        linear-gradient(
            to left,
            var(--color-black),
            transparent
        );
}


/* =============================================================
   08. PARALLAX SECTIONS
   ============================================================= */

.parallax-section {
    position: relative;

    height: 85vh;
    min-height: 550px;

    overflow: hidden;
}

.parallax-image {
    position: absolute;
    inset: 0;

    overflow: hidden;
}

.parallax-image img {
    position: absolute;

    top: -20%;
    left: 0;

    width: 100%;
    height: 140%;

    object-fit: cover;

    will-change: transform;
}


/* -------------------------------------------------------------
   Parallax Text Overlay
   ------------------------------------------------------------- */

.text-overlay {
    position: absolute;
    z-index: 2;

    top: 50%;
    left: 8%;

    transform: translateY(-50%);

    color: var(--color-white);

    text-shadow:
        0 2px 15px rgba(0, 0, 0, 0.7);
}

.text-overlay h1,
.text-overlay h2 {
    font-size: clamp(3rem, 6vw, 6rem);

    line-height: 0.95;

    font-weight: 600;

    text-transform: uppercase;
}

.text-overlay h2 {
    font-size: clamp(3rem, 6vw, 5rem);
}


/* =============================================================
   09. CALL-TO-ACTION BUTTON
   ============================================================= */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 2rem;
    padding: 0.8rem 1.5rem;

    border: 2px solid var(--color-white);
    border-radius: 999px;

    background: transparent;
    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    font-weight: 500;
    letter-spacing: 0.1rem;

    text-decoration: none;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.cta-button:hover {
    background: var(--color-white);
    color: var(--color-black);

    text-shadow: none;
}

.cta-button:active {
    transform: scale(0.98);
}


/* -------------------------------------------------------------
   Centred Parallax CTA
   ------------------------------------------------------------- */

.parallax-section--centered .text-overlay {
    top: 50%;
    left: 50%;

    width: min(90%, 900px);

    transform: translate(-50%, -50%);

    text-align: center;
}

.parallax-section--centered .cta-button {
    margin-inline: auto;
}


/* =============================================================
   10. INTRO / CONTENT SECTIONS
   ============================================================= */

.intro-section {
    padding: var(--section-padding) 1.5rem;

    text-align: center;
}

.intro-section--compact {
    padding-block: clamp(4rem, 7vw, 6rem);
}

.section-content {
    width: min(100%, 850px);

    margin-inline: auto;
}

.section-content h2 {
    margin-bottom: 2rem;

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    line-height: 1;

    font-weight: 600;

    text-transform: uppercase;
}

.section-content p {
    max-width: 800px;

    margin-inline: auto;

    font-size: clamp(1rem, 2vw, 1.5rem);

    line-height: 1.7;
}


/* =============================================================
   11. WHAT WE DO
   ============================================================= */

.what-we-do {
    position: relative;

    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.50),
            rgba(0, 0, 0, 0.20)
        ),
        url("/visual_assets/photos/2.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.what-we-do__content {
    position: relative;
    z-index: 1;
}

.services {
    width: min(100%, 1200px);

    margin-inline: auto;
    padding: var(--section-padding) 1.5rem;

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

    gap: clamp(2rem, 7vw, 8rem);

    text-align: center;
}

.services ul {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 0.75rem;
}

.services li {
    font-size: clamp(0.8rem, 1.3vw, 1rem);

    font-weight: 500;

    text-transform: uppercase;
}


/* =============================================================
   12. SPLIT IMAGE / TEXT SECTIONS
   ============================================================= */

.split-section {
    display: flex;
    align-items: stretch;
}

.split-section--reverse {
    flex-direction: row-reverse;
}

.split-image,
.split-content {
    flex: 1 1 50%;
}

.split-image {
    overflow: hidden;
}

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

    display: block;

    object-fit: cover;
}

.split-content {
    min-height: 600px;

    padding: clamp(3rem, 7vw, 7rem);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-label {
    display: block;

    margin-bottom: 3rem;

    font-size: clamp(2.2rem, 3vw, 3rem);

    line-height: 1;

    font-weight: 600;
}

.split-copy {
    max-width: 650px;
}

.split-copy p {
    margin-bottom: 2rem;

    font-size: clamp(0.9rem, 1vw, 1rem);

    line-height: 1.8;
}

.split-copy p:last-child {
    margin-bottom: 0;
}


/* =============================================================
   13. CLIENT TESTIMONIAL
   ============================================================= */

.testimonial-section {
    position: relative;

    height: 75vh;
    min-height: 550px;

    overflow: hidden;

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


/* -------------------------------------------------------------
   Dark Image Overlay
   ------------------------------------------------------------- */

.testimonial-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.65)
        );

    pointer-events: none;
}


/* -------------------------------------------------------------
   Testimonial Content
   ------------------------------------------------------------- */

.testimonial-content {
    position: relative;

    z-index: 2;

    width: min(90%, 850px);

    margin-inline: auto;

    text-align: center;

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


/* -------------------------------------------------------------
   Decorative Quote Mark
   ------------------------------------------------------------- */

.testimonial-quote-mark {
    display: block;

    margin-bottom: 1rem;

    font-family: var(--font-secondary);

    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 400;

    line-height: 0.45;

    opacity: 0.75;
}


/* -------------------------------------------------------------
   Testimonial Quote
   ------------------------------------------------------------- */

.testimonial-content blockquote {
    font-family: var(--font-secondary);

    max-width: 800px;

    margin-inline: auto;

    font-size: clamp(1.35rem, 2.8vw, 2.2rem);

    font-weight: 400;

    line-height: 1.5;

    letter-spacing: 0.03rem;

    text-shadow:
        0 2px 20px rgba(0, 0, 0, 0.6);
}


/* -------------------------------------------------------------
   Client Information
   ------------------------------------------------------------- */

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 0.3rem;

    margin-top: 2.5rem;
}

.testimonial-author cite {
    font-size: 0.85rem;

    font-style: normal;
    font-weight: 600;

    letter-spacing: 0.12rem;

    text-transform: uppercase;
}

.testimonial-author span {
    font-size: 0.7rem;

    letter-spacing: 0.1rem;

    text-transform: uppercase;

    opacity: 0.65;
}


/* =============================================================
   14. SITE FOOTER
   ============================================================= */

.site-footer {
    width: 100%;
    min-height: var(--header-height);

    background: var(--color-black);
    color: var(--color-white);

    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-inner {
    position: relative;

    width: min(100%, var(--content-width));
    min-height: var(--header-height);

    margin-inline: auto;
    padding: 1rem;

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


/* -------------------------------------------------------------
   Social Links
   ------------------------------------------------------------- */

.footer-socials {
    display: flex;
    align-items: center;

    gap: 1.25rem;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    color: var(--color-white);

    transition:
        opacity var(--transition-fast),
        transform var(--transition-fast);
}

.footer-socials a:hover {
    opacity: 0.6;
    transform: translateY(-2px);
}

.footer-socials svg {
    width: 20px;
    height: 20px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-socials .icon-fill {
    fill: currentColor;
    stroke: none;
}


/* -------------------------------------------------------------
   Back To Top
   ------------------------------------------------------------- */

.back-to-top {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 0.15rem;

    color: var(--color-white);

    text-decoration: none;

    opacity: 0.7;

    transition:
        opacity var(--transition-fast),
        transform var(--transition-fast);
}

.back-to-top__arrow {
    display: block;

    font-size: 1.35rem;
    font-weight: 300;

    line-height: 0.8;

    transition: transform var(--transition-fast);
}

.back-to-top__label {
    font-size: 0.55rem;
    font-weight: 500;

    letter-spacing: 0.1rem;

    text-transform: uppercase;

    white-space: nowrap;
}

.back-to-top:hover {
    opacity: 1;

    transform:
        translate(-50%, calc(-50% - 3px));
}

.back-to-top:hover .back-to-top__arrow {
    transform: translateY(-2px);
}


/* -------------------------------------------------------------
   Copyright
   ------------------------------------------------------------- */

.footer-copyright {
    margin: 0;

    font-family: var(--font-primary);
    font-size: 0.65rem;
    font-weight: 400;

    letter-spacing: 0.08rem;

    text-align: right;
    text-transform: uppercase;

    opacity: 0.6;
}


/* =============================================================
   15. CONTACT MODAL
   ============================================================= */

.contact-modal {
    width: min(90vw, 650px);
    max-height: 90vh;

    margin: auto;
    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.2);

    background: var(--color-black);
    color: var(--color-white);

    overflow: auto;
}


/* -------------------------------------------------------------
   Modal Backdrop
   ------------------------------------------------------------- */

.contact-modal::backdrop {
    background: rgba(0, 0, 0, 0.8);

    backdrop-filter: blur(6px);
}


/* -------------------------------------------------------------
   Modal Content
   ------------------------------------------------------------- */

.contact-modal__inner {
    position: relative;

    padding: clamp(2rem, 5vw, 4rem);
}


/* -------------------------------------------------------------
   Close Button
   ------------------------------------------------------------- */

.contact-modal__close {
    position: absolute;

    top: 1.5rem;
    right: 1.5rem;

    width: 40px;
    height: 40px;

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

    padding: 0;

    border: 0;

    background: transparent;
    color: var(--color-white);

    cursor: pointer;

    font-size: 2rem;
    font-weight: 300;
    line-height: 1;

    opacity: 0.7;

    transition:
        opacity var(--transition-fast),
        transform var(--transition-fast);
}

.contact-modal__close:hover {
    opacity: 1;
    transform: rotate(90deg);
}


/* -------------------------------------------------------------
   Modal Header
   ------------------------------------------------------------- */

.contact-modal__header {
    margin-bottom: 2.5rem;
    padding-right: 3rem;
}

.contact-modal__header h2 {
    margin: 0 0 0.75rem;

    font-size: clamp(2rem, 5vw, 3rem);

    font-weight: 500;

    text-transform: uppercase;
}

.contact-modal__header p {
    margin: 0;

    font-size: 0.9rem;

    opacity: 0.65;
}


/* -------------------------------------------------------------
   Contact Form
   ------------------------------------------------------------- */

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 1.5rem;
}

.contact-form__field {
    display: flex;
    flex-direction: column;

    gap: 0.5rem;
}

.contact-form__field label {
    font-size: 0.7rem;

    font-weight: 500;

    letter-spacing: 0.1rem;

    text-transform: uppercase;
}

.contact-form__field input,
.contact-form__field textarea {
    width: 100%;

    padding: 0.9rem 0;

    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 0;

    outline: none;

    background: transparent;
    color: var(--color-white);

    font-family: inherit;
    font-size: 1rem;

    transition:
        border-color var(--transition-fast);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
    border-bottom-color: var(--color-white);
}

.contact-form__field textarea {
    min-height: 140px;

    resize: vertical;
}


/* -------------------------------------------------------------
   Submit Button
   ------------------------------------------------------------- */

.contact-form__submit {
    align-self: flex-start;

    margin-top: 1rem;
    padding: 0.85rem 1.6rem;

    border: 2px solid var(--color-white);
    border-radius: 100px;

    background: transparent;
    color: var(--color-white);

    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 500;

    letter-spacing: 0.08rem;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        background var(--transition-fast),
        color var(--transition-fast);
}

.contact-form__submit:hover {
    background: var(--color-white);
    color: var(--color-black);
}


/* -------------------------------------------------------------
   Honeypot
   ------------------------------------------------------------- */

.contact-form__honeypot {
    position: absolute;

    width: 1px;
    height: 1px;

    margin: -1px;
    padding: 0;

    overflow: hidden;

    clip-path: inset(50%);

    white-space: nowrap;

    border: 0;
}


/* -------------------------------------------------------------
   Form Status
   ------------------------------------------------------------- */

.contact-form__status {
    margin: 0;

    font-size: 0.8rem;

    opacity: 0.8;
}


/* =============================================================
   16. TABLET
   ============================================================= */

@media (max-width: 900px) {

    :root {
        --header-height: 72px;
    }


    /* ---------------------------------------------------------
       Header
       --------------------------------------------------------- */

    .site-header {
        background: var(--color-black);
    }

    .navbar {
        min-height: var(--header-height);
    }

    .menu-toggle {
        display: block;
    }


    /* ---------------------------------------------------------
       Mobile Navigation
       --------------------------------------------------------- */

    .nav-links {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        padding: 2rem 5%;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        background: rgba(0, 0, 0, 0.97);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-18px);

        transition:
            opacity var(--transition-standard),
            transform var(--transition-smooth),
            visibility 0s linear 0.45s;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateY(0);

        transition:
            opacity var(--transition-standard),
            transform var(--transition-smooth),
            visibility 0s;
    }

    .nav-links li {
        width: 100%;

        opacity: 0;

        transform: translateY(-12px);

        transition:
            opacity var(--transition-fast),
            transform var(--transition-standard);
    }

    .nav-links.open li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links li:nth-child(1) {
        transition-delay: 0.08s;
    }

    .nav-links li:nth-child(2) {
        transition-delay: 0.14s;
    }

    .nav-links li:nth-child(3) {
        transition-delay: 0.20s;
    }

    .nav-links li + li::before {
        display: none;
    }

    .nav-links a {
        display: block;

        width: 100%;

        padding: 1rem 0;

        text-align: center;

        font-size: 1rem;
    }


    /* ---------------------------------------------------------
       Logo Ticker
       --------------------------------------------------------- */

    .ticker-group {
        gap: 50px;
        padding-right: 50px;
    }

    .ticker-group img {
        height: 36px;
    }


    /* ---------------------------------------------------------
       Split Sections
       --------------------------------------------------------- */

    .split-section,
    .split-section--reverse {
        flex-direction: column;
    }

    .split-image,
    .split-content {
        flex-basis: auto;
        width: 100%;
    }

    .split-image {
        min-height: 60vw;
    }

    .split-content {
        min-height: auto;

        padding: 4rem 2rem;
    }

    .split-label {
        margin-bottom: 2rem;
    }
}


/* =============================================================
   17. MOBILE
   ============================================================= */

@media (max-width: 600px) {

    body {
        letter-spacing: 0.06rem;
    }


    /* ---------------------------------------------------------
       Header
       --------------------------------------------------------- */

    .logo img {
        height: 42px;
    }


    /* ---------------------------------------------------------
       Hero
       --------------------------------------------------------- */

    .hero {
        min-height: 450px;
    }


    /* ---------------------------------------------------------
       Logo Ticker
       --------------------------------------------------------- */

    .logo-ticker::before,
    .logo-ticker::after {
        width: 80px;
    }


    /* ---------------------------------------------------------
       Parallax
       --------------------------------------------------------- */

    .parallax-section {
        height: 75vh;
        min-height: 500px;
    }

    .text-overlay {
        left: 7%;
        right: 7%;
    }

    .text-overlay h1,
    .text-overlay h2 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }


    /* ---------------------------------------------------------
       Intro Sections
       --------------------------------------------------------- */

    .intro-section {
        padding-inline: 1.25rem;
    }

    .section-content h2 {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
    }


    /* ---------------------------------------------------------
       Services
       --------------------------------------------------------- */

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

        justify-items: center;

        gap: 1rem;

    }

    .services ul {
        align-items: center;
    }

    .services li {
        justify-content: center;
    }


    /* ---------------------------------------------------------
       Split Sections
       --------------------------------------------------------- */

    .split-image {
        min-height: 75vw;
    }

    .split-content {
        padding: 3rem 1.5rem;
    }

    .split-label {
        font-size: 2.2rem;
    }

    .split-copy p {
        font-size: 1rem;
        line-height: 1.7;
    }


    /* ---------------------------------------------------------
       CTA
       --------------------------------------------------------- */

    .cta-button {
        padding: 0.7rem 1.2rem;
    }


    /* ---------------------------------------------------------
       Testimonial
       --------------------------------------------------------- */

    .testimonial-section {
        height: 70vh;
        min-height: 500px;
    }

    .testimonial-content {
        width: 85%;
    }

    .testimonial-content blockquote {
        font-size: 1.25rem;
        line-height: 1.55;
    }

    .testimonial-quote-mark {
        font-size: 4.5rem;
    }

    .testimonial-author {
        margin-top: 2rem;
    }


    /* ---------------------------------------------------------
       Footer
       --------------------------------------------------------- */

    .footer-inner {
        min-height: var(--header-height);

        padding: 1rem;

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

        align-items: center;
    }

    .footer-socials {
        gap: 1rem;
    }

    .footer-socials a {
        width: 22px;
        height: 22px;
    }

    .footer-socials svg {
        width: 18px;
        height: 18px;
    }

    .back-to-top {
        position: static;

        grid-column: 2;
        grid-row: 1;

        justify-self: center;

        width: auto;
        height: auto;

        transform: none;
    }

    .back-to-top:hover {
        transform: translateY(-3px);
    }

    .back-to-top__arrow {
        font-size: 1.25rem;
    }

    .back-to-top__label {
        font-size: 0.5rem;
    }


    /* ---------------------------------------------------------
       Contact Modal
       --------------------------------------------------------- */

    .contact-modal {
        width: 94vw;
        max-height: 90vh;
    }

    .contact-modal__inner {
        padding: 2rem 1.5rem;
    }

    .contact-modal__close {
        top: 1rem;
        right: 1rem;
    }

    .contact-modal__header {
        margin-bottom: 2rem;
    }

    .contact-form__submit {
        width: 100%;
    }
}


/* =============================================================
   18. SUPER SMALL SCREENS
   ============================================================= */

@media (max-width: 400px) {

    .navbar {
        padding-inline: 0.75rem;
    }

    .menu-toggle {
        width: 45px;
    }

    .menu-toggle span {
        width: 40px;
    }

    .text-overlay {
        left: 6%;
    }
}