/* =========================================================
   PAWAR RUBBER PRODUCTS
   E-BROCHURE PAGE
   ========================================================= */


/* =========================================================
   ROOT
   ========================================================= */

:root {

    --black: #151719;
    --dark: #1d1f21;

    --text: #343638;
    --muted: #6f7275;

    --light: #f5f5f3;
    --lighter: #fafaf9;

    --white: #ffffff;

    --border: #dededb;

    --red: #b3262d;

    --container:
        min(1180px, calc(100% - 48px));
}


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

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


html {

    scroll-behavior: smooth;

    scrollbar-gutter: stable;
}


html::-webkit-scrollbar {
    width: 0;
}


body {

    overflow-x: hidden;

    font-family: "Inter", sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;

    text-rendering: optimizeLegibility;
}


img {

    max-width: 100%;
}


a {

    color: inherit;

    text-decoration: none;
}


button {

    font-family: inherit;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {

    width: var(--container);

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


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

.scroll-progress {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: transparent;

    z-index: 9999;
}


.scroll-progress span {

    display: block;

    width: 0;
    height: 100%;

    background: var(--red);
}


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

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    min-height: 82px;

    z-index: 1000;

    background: #000000;
    color: #ffffff;

    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================================
   HEADER AFTER SCROLL
   ========================================================= */

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    color: #111111;

    box-shadow:
        0 5px 24px rgba(0, 0, 0, 0.08);

    backdrop-filter: blur(12px);
}


.header-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


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

.brand {

    display: flex;

    align-items: center;

    gap: 11px;
}


.brand-mark {

    width: 42px;
    height: 42px;

    display: flex;

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

    border: 1px solid currentColor;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 0.5px;
}


.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1.1;
}


.brand-text strong {

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 0.8px;
}


.brand-text span {

    margin-top: 4px;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.8px;

    opacity: 0.68;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-nav {

    display: flex;

    align-items: center;

    gap: 30px;
}


.nav-link {

    position: relative;

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 0.2px;

    padding: 8px 0;

    transition:
        color 0.25s ease;
}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: var(--red);

    transition:
        width 0.25s ease;
}


.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;
}


/* =========================================================
   PRODUCTS DROPDOWN
   ========================================================= */

.nav-product-dropdown {

    position: relative;

    display: flex;

    align-items: center;
}


.nav-product-dropdown > .nav-link {

    display: inline-flex;

    align-items: center;
}


.products-dropdown-menu {

    position: absolute;

    top: calc(100% + 18px);

    left: 50%;

    min-width: 235px;

    padding: 8px;

    background: #ffffff;

    border: 1px solid #e3e3e1;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.10);

    opacity: 0;

    visibility: hidden;

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

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

    z-index: 2000;
}


.products-dropdown-menu::before {

    content: "";

    position: absolute;

    top: -19px;

    left: 0;

    width: 100%;

    height: 19px;
}


.nav-product-dropdown:hover
.products-dropdown-menu {

    opacity: 1;

    visibility: visible;

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


.products-dropdown-menu a {

    min-height: 43px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 0 13px;

    color: #222222;

    background: transparent;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.7px;

    text-transform: uppercase;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}


.products-dropdown-menu a:hover {

    color: var(--red);

    background: #f6f6f4;
}


.products-dropdown-menu a span:last-child {

    color: var(--red);

    font-size: 16px;

    font-weight: 700;

    transition:
        transform 0.2s ease;
}


.products-dropdown-menu a:hover
span:last-child {

    transform:
        translateX(4px);
}


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

.header-quote {

    min-height: 42px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 0 16px;

    background:
        rgba(255, 255, 255, 0.05);

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

    border-radius: 6px;

    color: #ffffff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    cursor: pointer;

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


.header-quote span:last-child {

    font-size: 16px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


.header-quote:hover {

    background: var(--red);

    border-color: var(--red);

    color: #ffffff;

    transform:
        translateY(-2px);
}


.header-quote:hover span:last-child {

    transform:
        translateX(5px);
}


.site-header.scrolled
.header-quote {

    background: transparent;

    border-color: var(--black);

    color: var(--black);
}


.site-header.scrolled
.header-quote:hover {

    background: var(--red);

    border-color: var(--red);

    color: #ffffff;
}


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

.menu-toggle {

    display: none;

    width: 42px;
    height: 42px;

    border: 0;

    background: transparent;

    cursor: pointer;
}


.menu-toggle span {

    display: block;

    width: 23px;
    height: 1px;

    margin: 5px auto;

    background: currentColor;

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


.menu-toggle.active
span:nth-child(1) {

    transform:
        translateY(6px)
        rotate(45deg);
}


.menu-toggle.active
span:nth-child(2) {

    opacity: 0;
}


.menu-toggle.active
span:nth-child(3) {

    transform:
        translateY(-6px)
        rotate(-45deg);
}



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

.brochure-hero {

    min-height: 520px;

    padding-top: 82px;

    display: flex;



    align-items: center;

    justify-content: center;

    background: #000000;
        
    color: var(--white);

    text-align: center;
}


.brochure-hero-content {

    width: 100%;

    padding-top: 0;

    padding-bottom: 0;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   E-BROCHURE TITLE
   ========================================================= */

.brochure-hero h1 {

    position: relative;

    display: inline-block;

    padding-bottom: 18px;

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(50px, 7vw, 82px);

    font-weight: 700;

    line-height: 1;

    letter-spacing: -3px;

    color: var(--white);
}


/* RED UNDERLINE */

.brochure-hero h1::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 300px;

    height: 4px;

    background: var(--red);

    transform: translateX(-50%);
}


.section-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--red);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.8px;

    line-height: 1;

    text-transform: uppercase;
}


.section-label::before {

    content: "";

    display: block;

    width: 3px;

    height: 20px;

    background: var(--red);
}


.brochure-hero h1 {

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(50px, 7vw, 82px);

    font-weight: 700;

    line-height: 1;

    letter-spacing: -3px;
}


.brochure-hero p {

    max-width: 650px;

    margin-top: 24px;

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

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   BROCHURE SECTION
   ========================================================= */

.brochure-section {

    padding-top: 90px;

    padding-bottom: 90px;

    background: var(--light);
}


.brochure-heading {

    max-width: 650px;

    margin-bottom: 48px;
}


.brochure-heading h2 {

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(38px, 4.5vw, 54px);

    font-weight: 700;

    line-height: 1.08;

    letter-spacing: -1.5px;

    color: var(--black);
}


.brochure-heading p {

    margin-top: 18px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   BROCHURE GRID
   ========================================================= */

.brochure-grid {

    display: grid;

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

    gap: 22px;
}


/* =========================================================
   BROCHURE CARD
   ========================================================= */

.brochure-card {

    position: relative;

    min-height: 470px;

    overflow: hidden;

    background: var(--white);

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

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.brochure-card:hover {

    transform:
        translateY(-6px);

    border-color:
        #cfcfcb;

    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, 0.08);
}


/* =========================================================
   CARD NUMBER
   ========================================================= */

.brochure-number {

    position: absolute;

    top: 18px;

    right: 20px;

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

    color: #a1a3a4;
}


/* =========================================================
   CARD CONTENT
   ========================================================= */

.brochure-card-content {

    height: 100%;

    min-height: 470px;

    padding: 48px 30px 30px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


/* =========================================================
   PDF ICON
   ========================================================= */

.brochure-icon {

    width: 72px;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 35px;

    border: 1px solid
        rgba(179, 38, 45, 0.35);

    background:
        #faf5f5;
}


.brochure-icon span {

    color: var(--red);

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   CATEGORY
   ========================================================= */

.brochure-category {

    margin-bottom: 9px;

    color: var(--red);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   BROCHURE TITLE
   ========================================================= */

.brochure-card h3 {

    font-family: "Manrope", sans-serif;

    font-size: 30px;

    font-weight: 700;

    line-height: 1.15;

    letter-spacing: -0.8px;

    color: var(--black);
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.brochure-card p {

    margin-top: 17px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   CARD ACTION
   ========================================================= */

.brochure-action {

    margin-top: auto;

    padding-top: 35px;

    width: 100%;
}


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

.download-button {

    width: 100%;

    min-height: 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 18px;

    background: var(--black);

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

    color: var(--white);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}


.download-button:hover {

    background: var(--red);

    border-color: var(--red);
}


.download-arrow {

    font-size: 18px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


.download-button:hover
.download-arrow {

    transform:
        translateY(3px);
}


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

.brochure-cta {

    padding-top: 65px;

    padding-bottom: 65px;

    background: var(--white);
}


.brochure-cta-inner {

    min-height: 150px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    padding: 35px 0;

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

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


.brochure-cta h2 {

    margin-top: 5px;

    font-family: "Manrope", sans-serif;

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

    font-weight: 700;

    line-height: 1.1;

    letter-spacing: -1.3px;

    color: var(--black);
}


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

.cta-button {

    min-height: 50px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    padding: 0 21px;

    flex-shrink: 0;

    background: var(--black);

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

    color: var(--white);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

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


.cta-button span:last-child {

    font-size: 18px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


.cta-button:hover {

    background: var(--red);

    border-color: var(--red);

    transform:
        translateY(-2px);
}


.cta-button:hover span:last-child {

    transform:
        translateX(5px);
}


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

.site-footer {

    padding-top: 58px;

    padding-bottom: 24px;

    background: var(--black);

    color: var(--white);
}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 0.8fr 0.9fr 1.2fr;

    gap: 55px;

    padding-bottom: 42px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.12);
}


.footer-brand {

    color: var(--white);
}


.footer-company p {

    max-width: 360px;

    margin-top: 18px;

    font-size: 15px;

    line-height: 1.75;

    color:
        rgba(255, 255, 255, 0.62);
}


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

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


.footer-column h4 {

    margin-bottom: 18px;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.6px;

    text-transform: uppercase;

    color:
        rgba(255, 255, 255, 0.9);
}


.footer-column a {

    margin-bottom: 10px;

    font-size: 15px;

    line-height: 1.5;

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

    transition:
        color 0.25s ease;
}


.footer-column a:hover {

    color: var(--white);
}


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

.footer-contact p {

    margin-bottom: 10px;

    font-size: 15px;

    line-height: 1.7;

    color:
        rgba(255, 255, 255, 0.62);
}


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

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 20px;

    font-size: 11px;

    color:
        rgba(255, 255, 255, 0.42);
}


/* =========================================================
   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: 1050px) {

    .container {

        width:
            calc(100% - 40px);
    }


    .main-nav {

        gap: 22px;
    }


    .brochure-grid {

        gap: 16px;
    }


    .brochure-card-content {

        padding:
            45px 23px 25px;
    }


    .footer-grid {

        gap: 35px;
    }

}


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

@media (max-width: 850px) {

    html,
    body {

        max-width: 100%;
        width: 100%;
        overflow-x: hidden;
    }


    body {

        width: 100%;
    }


    .site-header {

        width: 100%;
        max-width: 100vw;
    }


    .header-inner {

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


    .brand {

        min-width: 0;

        max-width:
            calc(100% - 58px);
    }


    .brand-text {

        min-width: 0;
    }


    .brand-text strong,
    .brand-text span {

        white-space: nowrap;
    }


    /* -----------------------------------------
       HAMBURGER
       ----------------------------------------- */

    .menu-toggle {

        position: relative;

        z-index: 3000;

        display: block;

        width: 42px;

        height: 42px;

        flex-shrink: 0;

        padding: 0;

        border: 0;

        background: transparent;

        color: #ffffff;

        cursor: pointer;

        -webkit-tap-highlight-color:
            transparent;
    }


    .menu-toggle span {

        display: block;

        width: 23px;

        height: 1px;

        margin: 5px auto;

        background: currentColor;

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


    /* -----------------------------------------
       HAMBURGER → X
       ----------------------------------------- */

    .menu-toggle.active span:nth-child(1) {

        transform:
            translateY(6px)
            rotate(45deg);
    }


    .menu-toggle.active span:nth-child(2) {

        opacity: 0;
    }


    .menu-toggle.active span:nth-child(3) {

        transform:
            translateY(-6px)
            rotate(-45deg);
    }


    /* -----------------------------------------
       HAMBURGER COLORS
       TOP = WHITE
       SCROLLED = BLACK
       ----------------------------------------- */

    .site-header .menu-toggle,
    .site-header .menu-toggle:hover,
    .site-header .menu-toggle:focus,
    .site-header .menu-toggle:active {

        color: #ffffff !important;

        background: transparent !important;
    }


    .site-header .menu-toggle span,
    .site-header .menu-toggle:hover span,
    .site-header .menu-toggle:focus span,
    .site-header .menu-toggle:active span {

        background-color: #ffffff !important;
    }


    .site-header.scrolled .menu-toggle,
    .site-header.scrolled .menu-toggle:hover,
    .site-header.scrolled .menu-toggle:focus,
    .site-header.scrolled .menu-toggle:active {

        color: #111111 !important;

        background: transparent !important;
    }


    .site-header.scrolled .menu-toggle span,
    .site-header.scrolled .menu-toggle:hover span,
    .site-header.scrolled .menu-toggle:focus span,
    .site-header.scrolled .menu-toggle:active span {

        background-color: #111111 !important;
    }


    /* -----------------------------------------
       MOBILE NAV PANEL
       ----------------------------------------- */

    .main-nav {

        position: fixed;

        top: 82px;

        left: 0;

        width: 100%;

        max-width: 100vw;

        min-width: 0;

        max-height:
            calc(100vh - 82px);

        overflow-x: hidden;

        overflow-y: auto;

        padding:
            22px 24px 28px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 4px;

        background:
            rgba(255, 255, 255, 0.98);

        color: var(--black);

        box-shadow:
            0 12px 30px
            rgba(0, 0, 0, 0.08);

        opacity: 0;

        visibility: hidden;

        pointer-events: none;

        transform:
            translateY(-10px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;

        z-index: 2500;
    }


    .main-nav.open {

        opacity: 1;

        visibility: visible;

        pointer-events: auto;

        transform:
            translateY(0);
    }


    /* -----------------------------------------
       MAIN NAV LINKS
       ----------------------------------------- */

    .main-nav > .nav-link,
    .main-nav >
    .nav-product-dropdown >
    .nav-link {

        width: 100%;

        min-width: 0;

        padding: 11px 0;

        font-size: 14px;

        color: var(--black);

        text-decoration: none;
    }


    .main-nav > .nav-link:hover,
    .main-nav > .nav-link:focus,
    .main-nav > .nav-link.active,
    .main-nav >
    .nav-product-dropdown >
    .nav-link:hover,
    .main-nav >
    .nav-product-dropdown >
    .nav-link:focus,
    .main-nav >
    .nav-product-dropdown >
    .nav-link.active {

        color: var(--black);
    }


    .header-quote {

        display: none !important;
    }


    /* -----------------------------------------
       PRODUCTS CONTAINER
       ----------------------------------------- */

    .nav-product-dropdown {

        width: 100%;

        min-width: 0;

        display: block;
    }


    /* -----------------------------------------
       PRODUCTS DROPDOWN
       ALWAYS OPEN ON MOBILE
       ----------------------------------------- */

    .products-dropdown-menu {

        position: static;

        width: 100%;

        min-width: 0;

        margin-top: 4px;

        padding: 0;

        border: 0;

        box-shadow: none;

        background: #f6f6f4;

        opacity: 1;

        visibility: visible;

        transform: none;

        display: block;
    }


    .products-dropdown-menu::before {

        display: none;
    }


    /* -----------------------------------------
       PRODUCT ITEMS
       ----------------------------------------- */

    .products-dropdown-menu a {

        width: 100%;

        min-height: 42px;

        padding: 0 12px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        gap: 20px;

        box-sizing: border-box;

        color: var(--black);

        background: transparent;

        font-size: 10px;

        font-weight: 700;

        letter-spacing: 0.7px;

        text-transform: uppercase;

        text-decoration: none;
    }


    .products-dropdown-menu a:hover {

        color: var(--red);

        background: #f6f6f4;
    }


    /* -----------------------------------------
       PRODUCT ARROW
       ----------------------------------------- */

    .products-dropdown-menu a span:last-child {

        color: var(--red);

        font-size: 16px;

        font-weight: 700;

        transform:
            translateX(0);

        transition:
            transform 0.2s ease;
    }


    .products-dropdown-menu a:hover span:last-child {

        transform:
            translateX(4px);
    }


    /* -----------------------------------------
       KEEP PRODUCTS DROPDOWN OPEN
       ----------------------------------------- */

    .nav-product-dropdown:hover
    .products-dropdown-menu {

        display: block;

        opacity: 1;

        visibility: visible;

        transform: none;
    }


    /* -----------------------------------------
       TOUCH
       ----------------------------------------- */

    .main-nav a,
    .menu-toggle {

        touch-action: manipulation;
    }


    /* -----------------------------------------
       FOOTER
       ----------------------------------------- */

    .footer-grid {

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

}


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

@media (max-width: 700px) {

    .brochure-grid {

        grid-template-columns:
            1fr;
    }


    .brochure-card {

        min-height: auto;
    }


    .brochure-card-content {

        min-height: 430px;
    }


    .brochure-cta-inner {

        align-items: flex-start;

        flex-direction: column;
    }


    .cta-button {

        width: 100%;
    }

}


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

@media (max-width: 600px) {

    .container {

        width:
            calc(100% - 32px);
    }


    /* HERO */

    .brochure-hero {

        min-height: 500px;

        padding-top: 82px;
    }


    .brochure-hero-content {

        padding-top: 30px;

        padding-bottom: 60px;
    }


    .brochure-hero h1 {

        font-size:
            clamp(46px, 13vw, 62px);

        letter-spacing: -2px;
    }


    .brochure-hero p {

        margin-top: 20px;

        font-size: 14px;

        line-height: 1.75;
    }


    /* BROCHURE SECTION */

    .brochure-section {

        padding-top: 60px;

        padding-bottom: 60px;
    }


    .brochure-heading {

        margin-bottom: 35px;
    }


    .brochure-heading h2 {

        font-size:
            clamp(34px, 9vw, 43px);
    }


    .brochure-heading p {

        font-size: 14px;
    }


    /* CARDS */

    .brochure-grid {

        gap: 18px;
    }


    .brochure-card-content {

        min-height: 400px;

        padding:
            38px 23px 23px;
    }


    .brochure-icon {

        width: 62px;

        height: 62px;

        margin-bottom: 28px;
    }


    .brochure-card h3 {

        font-size: 27px;
    }


    .brochure-card p {

        font-size: 13px;
    }


    /* CTA */

    .brochure-cta {

        padding-top: 50px;

        padding-bottom: 50px;
    }


    .brochure-cta-inner {

        padding:
            28px 0;
    }


    .brochure-cta h2 {

        font-size:
            clamp(30px, 8vw, 38px);
    }


    /* FOOTER */

    .site-footer {

        padding-top: 48px;
    }


    .footer-grid {

        grid-template-columns:
            1fr;

        gap: 32px;

        padding-bottom: 32px;
    }


    .footer-bottom {

        align-items: flex-start;

        flex-direction: column;

        gap: 7px;

        font-size: 10px;
    }

}


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

@media (max-width: 400px) {

    .container {

        width:
            calc(100% - 26px);
    }


    .brand-text strong {

        font-size: 12px;
    }


    .brand-text span {

        font-size: 7px;
    }


    .brand-mark {

        width: 38px;

        height: 38px;

        font-size: 11px;
    }


    .brochure-hero {

        min-height: 470px;
    }


    .brochure-hero h1 {

        font-size: 44px;
    }


    .brochure-card-content {

        min-height: 390px;
    }

}


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

@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;
    }

}


/* =========================================================
   SCROLL TO EXPLORE
   SAME BEHAVIOUR AS MARKETS SERVED
   ========================================================= */

.scroll-explore {

    position: fixed;

    top: 50%;
    right: 28px;

    z-index: 900;

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

    gap: 14px;

    transform: translateY(-50%);

    transition:
        opacity 0.3s ease;
}


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

.scroll-explore-text {

    writing-mode: vertical-rl;

    transform:
        rotate(180deg);

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2.4px;

    line-height: 1;

    white-space: nowrap;

    color: #777;
}


/* =========================================================
   LINE
   ========================================================= */

.scroll-explore-line {

    position: relative;

    width: 2px;

    height: 120px;

    overflow: hidden;

    background: #d5d5d2;
}


/* =========================================================
   RED PROGRESS
   ========================================================= */

.scroll-explore-line span {

    position: absolute;

    top: 0;
    left: 0;

    display: block;

    width: 100%;

    height: 0;

    background: var(--red);

    transition:
        height 0.05s linear;
}


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

@media (max-width: 850px) {

    .scroll-explore {

        display: none !important;
    }

}



/* =========================================================
   MOBILE — COMPLETELY HIDDEN
========================================================= */

@media (max-width: 850px) {

    .scroll-explore {
        display: none !important;
    }

}