/* Custom CSS for Brand96 Bootstrap 4 Project */

/* Switzer font family */
@font-face {
    font-family: 'Switzer';
    src: url('../fonts/switzer/Switzer-Regular.woff2') format('woff2'),
         url('../fonts/switzer/Switzer-Regular.woff') format('woff'),
         url('../fonts/switzer/Switzer-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/switzer/Switzer-Medium.woff2') format('woff2'),
         url('../fonts/switzer/Switzer-Medium.woff') format('woff'),
         url('../fonts/switzer/Switzer-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/switzer/Switzer-Semibold.woff2') format('woff2'),
         url('../fonts/switzer/Switzer-Semibold.woff') format('woff'),
         url('../fonts/switzer/Switzer-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Global Styles */
body {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding-top: 0;
}

/* Home page: reserve header space from start - no layout shift when header fades in */
body.home-page {
    padding-top: var(--navbar-height, 72px) !important;
}

html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-top: calc(-1 * var(--navbar-height, 72px));
    min-height: calc(100vh + var(--navbar-height, 72px));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    /* Fallback JPG, then WebP preferred where supported */
    background-image: url('../Images/home-banner-new.jpg');
    background-image: image-set(
        url('../Images/home-banner-new.webp') type('image/webp') 1x,
        url('../Images/home-banner-new.jpg') type('image/jpeg') 1x
    );
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 767px) {
    .hero-section {
        background-image: url('../Images/home-banner-new-mobile.jpg');
        background-image: image-set(
            url('../Images/home-banner-new-mobile.webp') type('image/webp') 1x,
            url('../Images/home-banner-new-mobile.jpg') type('image/jpeg') 1x
        );
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-logo-container {
    position: relative;
    z-index: 10;
    display: inline-block;
    width: fit-content;
}

.home-page .hero-logo-container {
    opacity: 0;
    animation: heroLogoFadeInUp 1s ease-out forwards;
}

@keyframes heroLogoFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    min-width: 250px;
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.1s linear;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.home-page .hero-logo-container .hero-logo:hover {
    transform: none;
}

/* Home hero: video-only banner */
.hero-video-section {
    background: #000 !important;
    background-image: none !important;
}

.hero-video-section .hero-overlay,
.hero-video-section .container {
    display: none !important;
}

.hero-video-section .hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
}

/* Hero background videos: hide native play / media UI (autoplay-only, no controls) */
.hero-video-section .hero-bg-video,
.hero-video-section-mobile .hero-bg-video-mobile {
    -webkit-tap-highlight-color: transparent;
}

.hero-video-section .hero-bg-video::-webkit-media-controls,
.hero-video-section-mobile .hero-bg-video-mobile::-webkit-media-controls,
.hero-video-section .hero-bg-video::-webkit-media-controls-enclosure,
.hero-video-section-mobile .hero-bg-video-mobile::-webkit-media-controls-enclosure,
.hero-video-section .hero-bg-video::-webkit-media-controls-start-playback-button,
.hero-video-section-mobile .hero-bg-video-mobile::-webkit-media-controls-start-playback-button {
    display: none !important;
}
/* Navbar */
.navbar {
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    transition: box-shadow 0.3s ease;
    z-index: 1000;
    background-color: #ffffff;
    padding: 1rem 0;
}

.home-page .navbar-home {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease-out, visibility 0.45s ease-out, box-shadow 0.35s ease-out;
}

.home-page .navbar-home.header-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.navbar .container.navbar-container-full,
#mainNavbar .container.navbar-container-full {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

#mainNavbar .navbar-brand,
.navbar-brand {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0;
}

.navbar-logo {
    width: 30px;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.navbar-logo:hover {
    opacity: 0.8;
}

#mainNavbar .navbar-nav-left,
#mainNavbar .navbar-nav-right {
    display: flex !important;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 55px !important;
}

#mainNavbar .navbar-nav-left {
    flex: 0 0 auto !important;
    justify-content: flex-start !important;
    margin-right: 100px;
}

#mainNavbar .navbar-nav-right {
    flex: 0 0 auto !important;
    justify-content: flex-end !important;
    margin-left: 100px;
}

#mainNavbar .navbar-nav-left .nav-link,
#mainNavbar .navbar-nav-right .nav-link,
.nav-link {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #241F20 !important;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    padding: 0.5rem 0 !important;
    margin: 0 !important;
    text-decoration: none !important;
    display: inline-block;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: #241F20 !important;
    text-decoration: none;
}

/* Section: 91BRANDS response narrative */
.section-response {
    padding: 100px 100px;
    background-color: #000000;
    color: #ffffff;
}

.section-response-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-response-block {
    margin: 0 auto 0px auto;
}

.section-response-title {
    font-size: 126px;
    line-height: 134px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #4C4B49;
    margin: 0 0 18px 0;
    font-family: 'Lora', serif;
}

.section-response-text {
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    margin: 0 0 18px 0;
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.section-response-block:last-child .section-response-text {
    margin-bottom: 0;
}

/* Global scroll-triggered animations */
.scroll-animate {
    opacity: 0;
}

.scroll-animate.animate__animated {
    animation-fill-mode: both;
}

.animate-delay-0s { animation-delay: 0s; }
.animate-delay-0-1s { animation-delay: 0.1s; }
.animate-delay-0-2s { animation-delay: 0.2s; }
.animate-delay-0-3s { animation-delay: 0.3s; }
.animate-delay-0-4s { animation-delay: 0.4s; }
.animate-delay-0-5s { animation-delay: 0.5s; }
.animate-delay-0-6s { animation-delay: 0.6s; }
.animate-delay-0-8s { animation-delay: 0.8s; }
.animate-delay-0-7s { animation-delay: 0.7s; }
.animate-delay-0-9s { animation-delay: 0.9s; }
.animate-delay-1s { animation-delay: 1s; }
.animate-delay-1-5s { animation-delay: 1.5s; }
.animate-delay-1-2s { animation-delay: 1.2s; }
.animate-delay-1-4s { animation-delay: 1.4s; }
.animate-delay-1-6s { animation-delay: 1.6s; }
.animate-delay-1-8s { animation-delay: 1.8s; }
.animate-delay-2s { animation-delay: 2s; }
.animate-delay-2-5s { animation-delay: 2.5s; }
.animate-delay-3s { animation-delay: 3s; }
.animate-delay-3-5s { animation-delay: 3.5s; }
.animate-delay-4s { animation-delay: 4s; }
.animate-delay-4-5s { animation-delay: 4.5s; }
.animate-delay-5s { animation-delay: 5s; }
.animate-delay-5-5s { animation-delay: 5.5s; }
.animate-delay-6s { animation-delay: 6s; }
.animate-delay-6-5s { animation-delay: 6.5s; }
.animate-delay-7s { animation-delay: 7s; }
.animate-delay-7-5s { animation-delay: 7.5s; }
.animate-delay-8s { animation-delay: 8s; }
.animate-delay-8-5s { animation-delay: 8.5s; }
.animate-delay-9s { animation-delay: 9s; }
.animate-delay-9-5s { animation-delay: 9.5s; }
.animate-delay-10s { animation-delay: 10s; }
.animate-delay-10-5s { animation-delay: 10.5s; }
.animate-delay-11s { animation-delay: 11s; }
.animate-delay-11-5s { animation-delay: 11.5s; }
.animate-delay-12s { animation-delay: 12s; }

/* Translate section */
.section-translate {
    display: none;
}

.section-translate-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-translate-heading {
    margin: 0 auto 150px auto;
}

.section-translate-title {
    font-size: 134px;
    line-height: 142px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #4C4B49;
    margin: 0 0 60px 0;
    font-family: 'Lora', serif;
}

.section-translate-title-emphasis {
    color: #000000;
}

.section-translate-text {
    font-size: 27px;
    line-height: 35px;
    color: #000000;
    margin: 0;
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.section-translate-portfolio-title {
    font-size: 25px;
    line-height: 33px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    font-family: 'Lora', serif;
    font-weight: 400;
}

.section-translate-portfolio-divider {
    height: 1px;
    width: 100%;
    background-color: #4C4B49;
    margin-bottom: 50px;
}

.section-translate-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
    align-items: center;
    justify-items: center;
}

.translate-logo img {
    max-width: 180px;
    height: auto;
    display: block;
}

/* News section */
.section-news {
    padding: 100px 100px;
    background-color: #000000;
}

.section-news-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.section-news-cols {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.news-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-news-heading {
    display: flex;
    flex-direction: column;
}

.section-news-title {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.news-card {
    width: 100%;
}

.news-card-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.news-card-body {
    padding-top: 28px;
}

.news-card-title {
    font-size: 28px;
    line-height: 36px;
    color: #DBDAD9;
    margin: 0 0 5px 0;
    font-family: 'Lora', serif;
    font-weight: 400;
}

.news-card-meta {
    font-size: 14px;
    line-height: 20px;
    color: #4C4B49;
    margin: 0;
}

.news-card-link-wrapper {
    display: block;
    color: inherit;
    text-decoration: none;
}

.news-card-link-wrapper:hover {
    text-decoration: none;
}

.theme-btn {
    display: inline-block;
    width: fit-content;
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #ffffff;
    font-family: 'Lora', serif;
    font-weight: 400;
}

.theme-btn:hover {
    color: #ffffff;
    text-decoration: none;
}

.news-card .theme-btn {
    margin-top: 50px;
}

/* Section express (India expressive) */
.section-express {
    padding: 100px 100px;
    background-color: #ffffff;
    background-image: url("../Images/section3-lines-background.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.section-express .container {
    max-width: 100%;
    width: 100%;
}

.section-express .row {
    align-items: flex-end;
}

.section-express-media {
    position: relative;
    z-index: 1;
}

.express-collage {
    position: relative;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 200px;
}

.express-collage-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1024 / 689; /* match reference collage proportion */
    min-height: 500px;
}

@media (max-width: 991px) {
    .express-collage-wrapper {
        min-height: 360px;
    }
}

/* Express collage – self-contained (no shared classes with horizontal scroll section) */
.express-collage-wrapper .express-collage-item {
    position: absolute;
    overflow: hidden;
    transform-origin: center center;
    border-radius: 0;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-play-state: paused;
}

.express-collage-wrapper.collage-trigger .express-collage-item {
    animation-play-state: running;
}

.express-collage-wrapper .express-collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Z‑order and animation mapping for 6‑image express collage
   Top → bottom overlap order:
   5 (top), 1, 3, 2, 4, 6 (bottom)
*/
.express-collage-wrapper .express-pos-5 { animation-name: express-pos5; z-index: 6; }
.express-collage-wrapper .express-pos-1 { animation-name: express-pos1; z-index: 6; }
.express-collage-wrapper .express-pos-3 { animation-name: express-pos3; z-index: 4; left: 45% !important; }
.express-collage-wrapper .express-pos-2 { animation-name: express-pos2; z-index: 5; }
.express-collage-wrapper .express-pos-4 { animation-name: express-pos4; z-index: 2; top: -15% !important; }
.express-collage-wrapper .express-pos-6 { animation-name: express-pos6; z-index: 1; }

@media (max-width: 576px) {
    .express-collage-wrapper .express-pos-5 {
        left: 0% !important;
    }
}

/* Express collage keyframes – animate from centre outwards into final layout */
@keyframes express-pos1 {
    from { left: 50%; top: 50%; width: 10%; height: 10%; transform: translate(-50%, -50%) scale(0.4); opacity: 0; }
    to   { left: 50%; top: 50%; width: 60%; height: 100%; transform: translate(-50%, -57%) scale(1); opacity: 1; }
}

@keyframes express-pos2 {
    from { left: 50%; top: 50%; width: 10%; height: 10%; transform: translate(-50%, -50%) scale(0.4); opacity: 0; }
    to   { left: 15%; top: 0%; width: 35%; height: 22%; transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

@keyframes express-pos3 {
    from { left: 50%; top: 50%; width: 10%; height: 10%; transform: translate(-50%, -50%) scale(0.4); opacity: 0; }
    to   { left: 45%; top: 10%; bottom: auto; width: 37%; height: 43%; transform: translate(-50%, -100%) scale(1); opacity: 1; }
}

@keyframes express-pos4 {
    from { left: 50%; top: 50%; width: 10%; height: 10%; transform: translate(-50%, -50%) scale(0.4); opacity: 0; }
    to   { left: auto; right: -20%; top: -15%; width: 38%; height: 40%; transform: translate(-50%, -61%) scale(1); opacity: 1; }
}

@keyframes express-pos5 {
    from { left: 50%; top: 50%; width: 10%; height: 10%; transform: translate(-50%, -50%) scale(0.4); opacity: 0; }
    to   { left: 3%; right: auto; top: auto; bottom: 32%; width: 30%; height: 14%; transform: translate(0, 0) scale(1); opacity: 1; }
}

@keyframes express-pos6 {
    from { left: 50%; top: 50%; width: 10%; height: 10%; transform: translate(-50%, -50%) scale(0.4); opacity: 0; }
    to   { left: auto; right: 0%; top: auto; bottom: 0%; width: 49%; height: 40%; transform: translate(0, 0) scale(1); opacity: 1; }
}

.section-express-content {
    position: relative;
    z-index: 1;
}

.express-headline {
    color: #241F20;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
}

.express-text {
    color: #241F20;
    margin: 50px 0 0 120px;
}

/* Approach section (after horizontal scroll) */
.section-approach {
    padding: 150px 100px;
}

.section-approach-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.section-approach-heading {
    text-align: center;
    margin-bottom: 120px;
}

.section-approach-mobile-alt {
    display: none;
}

.approach-mobile-alt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 18px;
    row-gap: 0;
    align-items: start;
}

.approach-mobile-alt-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.approach-mobile-method-heading {
    margin-bottom: 4px;
}

.approach-mobile-alt-item .approach-item-title {
    margin-top: 10px;
}

.section-approach-title {
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #241F20;
    margin: 0 0 24px 0;
}

.section-approach-subtitle,
.section-approach-text {
    color: #241F20;
    margin: 0;
}

.section-approach .body-font-large {
    font-size: 18px;
    line-height: 26px;
}

.section-approach-subtitle {
    margin-bottom: 4px;
}

.section-approach-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.section-approach-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Column alignment: 1,3,5 bottom-aligned; 2,4 top-aligned */
.section-approach-grid .section-approach-col:nth-child(1),
.section-approach-grid .section-approach-col:nth-child(3),
.section-approach-grid .section-approach-col:nth-child(5) {
    align-self: end;
}

.approach-method-heading {
    margin: 0 0 24px 0;
}

.approach-method-heading h3 {
    font-family: 'Lora', serif;
    font-size: 30px;
    line-height: 38px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #999999;
    margin: 0;
}

.approach-method-list {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #241F20;
    margin: 0;
}

.approach-item {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.approach-item-media {
    width: 100%;
    background-color: #D9D7D3;
    overflow: hidden;
}

.approach-item-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.approach-item-title {
    color: #999999;
    margin: 0;
    position: relative;
}

.approach-item-title::before {
    content: "";
    display: block;
    width: 15px;
    height: 2px;
    background-color: #999999;
    margin-bottom: 12px;
}

.approach-item--image-above .approach-item-title {
    margin-top: 25px;
}

.approach-item--image-below .approach-item-title {
    margin-bottom: 25px;
}

@media (max-width: 576px) {
    /* On mobile, show text above image for image-above variant by reordering children */
    .approach-item--image-above {
        display: flex;
        flex-direction: column;
    }

    .approach-item--image-above .approach-item-title {
        order: 1;
        margin-top: 0;
        margin-bottom: 25px;
    }

    .approach-item--image-above .approach-item-media {
        order: 2;
    }
}

.approach-item-copy {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: #7A7570;
    margin: 4px 0 0 0;
}

.approach-item:hover .approach-item-title {
    color: #000000;
}

/* Footer */
.site-footer {
    padding: 50px 100px 80px 100px;
    background-color: #000000;
    color: #ffffff;
}

.site-footer-inner {
    width: 100%;
}

.footer-top {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-top: 120px;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    margin-top: 140px;
}

.footer-text {
    max-width: 520px;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
}

.footer-text p {
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 25px 0;
}

.footer-text p:last-child {
    margin-bottom: 0;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.footer-nav li + li {
    margin-top: 10px;
}

.footer-nav a {
    font-size: 18px;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
}

/* Footer LinkedIn item inside nav */
.footer-nav ul li:last-child {
    margin-top: 30px;
}

.footer-nav ul li:last-child img {
    width: 32px;
    height: 32px;
    
}

.footer-divider {
    height: 1px;
    background-color: #4C4B49;
    margin-top: 15px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    gap: 40px;
}

.footer-copy,
.footer-links {
    font-family: 'Lora', serif;
    color: #A39C98;
    text-transform: uppercase;
}

.footer-copy,
.footer-links a {
    font-size: 14px;
    line-height: 22px;
    color: #A39C98;
}

.footer-links {
    display: inline-block;
    font-size: 14px;
}

.footer-link-separator {
    color: #A39C98;
}

.footer-social a {
    display: none !important;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 10px;
    text-decoration: none;
}

.footer-social img {
    width: 32px;
    height: 32px;
    display: block;
}

.site-footer a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.site-footer a:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

.footer-links a:hover {
    transform: none;
}

/* Custom CSS for Brand96 Bootstrap 4 Project */

/* Responsive breakpoints (use consistently across the project):
   - Up to 576px
   - 576px to 767px
   - 768px to 991px
   - 992px to 1280px
   - Above 1280px
   Line-height convention: font-size + 8px
*/

/* Switzer font family */
@font-face {
    font-family: 'Switzer';
    src: url('../fonts/switzer/Switzer-Regular.woff2') format('woff2'),
         url('../fonts/switzer/Switzer-Regular.woff') format('woff'),
         url('../fonts/switzer/Switzer-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/switzer/Switzer-Medium.woff2') format('woff2'),
         url('../fonts/switzer/Switzer-Medium.woff') format('woff'),
         url('../fonts/switzer/Switzer-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Switzer';
    src: url('../fonts/switzer/Switzer-Semibold.woff2') format('woff2'),
         url('../fonts/switzer/Switzer-Semibold.woff') format('woff'),
         url('../fonts/switzer/Switzer-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Global Styles */
body {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    padding-top: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Keep 2-column layout from 768px to 991px (instead of stacking at 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Hero Section */
.hero-section {
    position: relative;
    /* Fallback JPG, then WebP preferred where supported */
    background-image: url('../Images/home-banner-new.jpg');
    background-image: image-set(
        url('../Images/home-banner-new.webp') type('image/webp') 1x,
        url('../Images/home-banner-new.jpg') type('image/jpeg') 1x
    );
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

/* Fallback - also set via inline style in HTML */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-logo-container {
    position: relative;
    z-index: 10;
    display: inline-block;
    width: fit-content;
}

/* Home page: logo fade-in-up on load */
.home-page .hero-logo-container {
    opacity: 0;
    animation: heroLogoFadeInUp 1s ease-out forwards;
}

.hero-logo {
    min-width: 250px;
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.1s linear;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.home-page .hero-logo-container .hero-logo:hover {
    transform: none;
}

/* Home hero: video-only banner */
.hero-video-section {
    background: #000 !important;
    background-image: none !important;
}

.hero-video-section .hero-overlay,
.hero-video-section .container {
    display: none !important;
}

.hero-video-section .hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
    transition: box-shadow 0.3s ease;
    z-index: 1000;
    background-color: #ffffff;
    padding: 1rem 0;
}

/* Home page navbar - fixed at top, hidden initially until hero logo merges */
.home-page .navbar-home {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease-out, visibility 0.45s ease-out, box-shadow 0.35s ease-out;
}

.home-page .navbar-home.header-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

/* Other pages - navbar always fixed */
.navbar:not(.navbar-home) {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

/* Header: full width container, content centered as one block */
.navbar .container.navbar-container-full,
#mainNavbar .container.navbar-container-full {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Logo: exact center of screen, 100px space from left nav and from right nav */
#mainNavbar .navbar-brand,
.navbar-brand {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0;
}

.navbar-logo {
    width: 30px;
    height: auto;
    display: block;
    transition: opacity 0.3s ease;
}

.navbar-logo:hover {
    opacity: 0.8;
}

/* Left and right navigation menus - full width spread, 55px between links */
#mainNavbar .navbar-nav-left,
#mainNavbar .navbar-nav-right {
    display: flex !important;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 55px !important;
}

/* Left nav: 55px between links, then 100px space before logo */
#mainNavbar .navbar-nav-left {
    flex: 0 0 auto !important;
    justify-content: flex-start !important;
    min-width: 0;
    margin-right: 100px;
}

/* Right nav: 100px space after logo, then 55px between links */
#mainNavbar .navbar-nav-right {
    flex: 0 0 auto !important;
    justify-content: flex-end !important;
    min-width: 0;
    margin-left: 100px;
}

#mainNavbar .navbar-nav-left .nav-link,
#mainNavbar .navbar-nav-right .nav-link {
    font-weight: 400;
    font-size: 16px !important;
    letter-spacing: 0.5px;
    color: #241F20 !important;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    padding: 0.5rem 0 !important;
    margin: 0 !important;
    text-decoration: none !important;
    display: inline-block;
    white-space: nowrap;
}

#mainNavbar .navbar-nav-left .nav-link:hover,
#mainNavbar .navbar-nav-right .nav-link:hover {
    color: #241F20 !important;
    text-decoration: none !important;
}

.navbar-nav-left .nav-link:hover,
.navbar-nav-right .nav-link:hover {
    color: #241F20;
    text-decoration: none;
}

.nav-link {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #241F20 !important;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    padding: 0.5rem 0 !important;
    margin: 0 !important;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: #241F20 !important;
    text-decoration: none;
}

/* Navbar toggler for mobile - open icon, no box */
.navbar-toggler {
    border: none;
    background: transparent;
    padding: 0.5rem;
    display: none !important; /* Hidden on desktop */
    align-items: center;
    justify-content: center;
    align-self: center;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("../Images/mobile-menu-btn.svg") !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

/* Hide collapse menu on desktop - override Bootstrap defaults */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }
    
    .navbar-collapse {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .navbar-collapse.show {
        display: none !important;
        visibility: hidden !important;
    }
    
    .navbar-expand-lg .navbar-collapse {
        display: none !important;
        visibility: hidden !important;
    }
}

/* Global typography utility classes */
.hero-text,
.primary-title {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 72px; /* 8px extra */
}

.secondary-title {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 56px; /* 8px extra */
}

.tertiary-title {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 33px;
    line-height: 41px; /* 8px extra */
}

.body-font {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px; /* 8px extra */
}

.body-font-large {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 29px; /* 8px extra */
}

.body-serif {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 21px;
    line-height: 29px; /* 8px extra */
}

.approach-item-title.body-serif {
    font-size: 18px;
    line-height: 26px;
}

@media (max-width: 576px) {
    .hero-text,
    .primary-title {
        font-size: 40px;
        line-height: 48px; /* 8px extra */
    }

    .secondary-title {
        font-size: 36px;
        line-height: 44px; /* 8px extra */
    }

    .tertiary-title {
        font-size: 24px;
        line-height: 32px; /* 8px extra */
    }

    .body-font {
        font-size: 16px;
        line-height: 24px; /* 8px extra */
    }

    .body-font-large {
        font-size: 18px;
        line-height: 26px; /* 8px extra */
    }

    .approach-item-title.body-serif {
        font-size: 18px;
        line-height: 26px;
        color: #000 !important;
    }
}

@media (min-width: 577px) and (max-width: 991px) {
    .hero-text,
    .primary-title {
        font-size: 48px;
        line-height: 56px;
    }

    .secondary-title {
        font-size: 40px;
        line-height: 48px;
    }
}

@media (min-width: 992px) and (max-width: 1280px) {
    .hero-text,
    .primary-title {
        font-size: 56px;
        line-height: 64px;
    }
}

/* 91BRANDS response narrative section (above horizontal scroll) */
.section-response {
    padding: 100px 100px;
    background-color: #000000;
    color: #ffffff;
}

.section-response-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-response-block {
    margin: 0 auto 0px auto;
}

.section-response-title {
    font-size: 126px;
    line-height: 134px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #4C4B49;
    margin: 0 0 18px 0;
    font-family: 'Lora', serif;
}

.section-response-text {
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    margin: 0 0 18px 0;
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.section-response-block:last-child .section-response-text {
    margin-bottom: 0;
}

/* Scroll reveal – scroll-driven (items move with vertical scroll). Add class="scroll-reveal-item" to any element to include it. */
[data-scroll-reveal] .scroll-reveal-item,
[data-scroll-reveal] .express-headline,
[data-scroll-reveal] .express-text,
[data-scroll-reveal] .section-approach-title,
[data-scroll-reveal] .section-approach-subtitle,
[data-scroll-reveal] .section-approach-text,
[data-scroll-reveal] .approach-item,
[data-scroll-reveal] .section-news-title,
[data-scroll-reveal] .news-card,
[data-scroll-reveal] .about-banner-title,
[data-scroll-reveal] .about-intro-text p,
[data-scroll-reveal] .about-intro-image img,
[data-scroll-reveal] .about-founder-image img,
[data-scroll-reveal] .about-founder-name,
[data-scroll-reveal] .about-founder-title,
[data-scroll-reveal] .about-founder-text,
[data-scroll-reveal] .about-founder-linkedin,
[data-scroll-reveal] .about-partner-image img,
[data-scroll-reveal] .about-partner .sf-big-title,
[data-scroll-reveal] .about-partner-text,
[data-scroll-reveal] .about-partner .theme-btn,
[data-scroll-reveal] .about-work .sf-big-title,
[data-scroll-reveal] .about-work-text,
[data-scroll-reveal] .about-work .theme-btn,
[data-scroll-reveal] .about-work-image img,
[data-scroll-reveal] .contact-details-title,
[data-scroll-reveal] .contact-details-email,
[data-scroll-reveal] .contact-details-image,
.site-footer-inner[data-scroll-reveal] .footer-logo,
.site-footer-inner[data-scroll-reveal] .footer-text,
.site-footer-inner[data-scroll-reveal] .footer-nav ul,
.site-footer-inner[data-scroll-reveal] .footer-social,
.site-footer-inner[data-scroll-reveal] .footer-copy {
    transition: transform 0.12s ease-out, opacity 0.18s ease-out;
    will-change: transform, opacity;
}


/* Global scroll-triggered animations – add class="scroll-animate" data-animate="fadeIn" data-delay="0.5" */
.scroll-animate {
    opacity: 0;
}

.scroll-animate.animate__animated {
    animation-fill-mode: both;
}

/* Animation delay utility classes – reusable across the site */
.animate-delay-0s { animation-delay: 0s; }
.animate-delay-0-1s { animation-delay: 0.1s; }
.animate-delay-0-2s { animation-delay: 0.2s; }
.animate-delay-0-3s { animation-delay: 0.3s; }
.animate-delay-0-4s { animation-delay: 0.4s; }
.animate-delay-0-5s { animation-delay: 0.5s; }
.animate-delay-0-6s { animation-delay: 0.6s; }
.animate-delay-0-8s { animation-delay: 0.8s; }
.animate-delay-0-7s { animation-delay: 0.7s; }
.animate-delay-0-9s { animation-delay: 0.9s; }
.animate-delay-1s { animation-delay: 1s; }
.animate-delay-1-5s { animation-delay: 1.5s; }
.animate-delay-1-2s { animation-delay: 1.2s; }
.animate-delay-1-4s { animation-delay: 1.4s; }
.animate-delay-1-6s { animation-delay: 1.6s; }
.animate-delay-1-8s { animation-delay: 1.8s; }
.animate-delay-2s { animation-delay: 2s; }
.animate-delay-2-5s { animation-delay: 2.5s; }
.animate-delay-3s { animation-delay: 3s; }
.animate-delay-3-5s { animation-delay: 3.5s; }
.animate-delay-4s { animation-delay: 4s; }
.animate-delay-4-5s { animation-delay: 4.5s; }
.animate-delay-5s { animation-delay: 5s; }
.animate-delay-5-5s { animation-delay: 5.5s; }
.animate-delay-6s { animation-delay: 6s; }
.animate-delay-6-5s { animation-delay: 6.5s; }
.animate-delay-7s { animation-delay: 7s; }
.animate-delay-7-5s { animation-delay: 7.5s; }
.animate-delay-8s { animation-delay: 8s; }
.animate-delay-8-5s { animation-delay: 8.5s; }
.animate-delay-9s { animation-delay: 9s; }
.animate-delay-9-5s { animation-delay: 9.5s; }
.animate-delay-10s { animation-delay: 10s; }
.animate-delay-10-5s { animation-delay: 10.5s; }
.animate-delay-11s { animation-delay: 11s; }
.animate-delay-11-5s { animation-delay: 11.5s; }
.animate-delay-12s { animation-delay: 12s; }

@media (max-width: 991px) {
    .section-response {
        padding: 100px 50px;
    }

    .section-response-title {
        font-size: 64px;
        line-height: 72px;
    }
}

@media (max-width: 576px) {
    .section-response {
        padding: 100px 40px;
    }

    .section-response-inner {
        text-align: left;
    }

    .section-response-title {
        font-size: 48px;
        line-height: 56px;
        color: #ffffff;
    }

    .section-response-text {
        color: #6C6970;
        font-size: 16px;
        line-height: 24px;
    }
}

/* Translate section (after horizontal scroll) */
.section-translate {
    display: none;
}

.section-translate-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-translate-heading {
    margin: 0 auto 150px auto;
}

.section-translate-title {
    font-size: 134px;
    line-height: 142px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #4C4B49;
    margin: 0 0 60px 0;
    font-family: 'Lora', serif;
}

.section-translate-title-emphasis {
    color: #000000;
}

.section-translate-text {
    font-size: 27px;
    line-height: 35px;
    color: #000000;
    margin: 0;
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.section-translate-portfolio-title {
    font-size: 25px;
    line-height: 33px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    font-family: 'Lora', serif;
    font-weight: 400;
}

.section-translate-portfolio-divider {
    height: 1px;
    width: 100%;
    background-color: #4C4B49;
    margin-bottom: 50px;
}

.section-translate-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
    align-items: center;
    justify-items: center;
}

.translate-logo img {
    max-width: 180px;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .section-translate {
        padding: 50px 40px;
    }

    .section-translate-title {
        font-size: 72px;
        line-height: 78px;
    }

    .section-translate-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .section-translate {
        padding: 50px 24px;
    }

    .section-translate-title {
        font-size: 42px;
        line-height: 48px;
    }

    .section-translate-logos {
        grid-template-columns: 1fr;
    }
}

/* News / stories section */
.section-news {
    display: none;
}

.section-news-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.section-news-cols {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.news-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-news-heading {
    display: flex;
    flex-direction: column;
}

.section-news-title {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.section-news-grid {
    /* no-op now; kept for backward compatibility */
}

.news-card {
    width: 100%;
}

.section-news-heading {
    /* participates as first grid cell */
}

.news-card-thumb {
    width: 100%;
}

/* news-card--1..5 classes kept only for possible future custom placement */

.news-card-body {
    padding-top: 28px;
}

.news-card-title {
    font-size: 28px;
    line-height: 36px;
    color: #DBDAD9;
    margin: 0 0 5px 0;
    font-family: 'Lora', serif;
    font-weight: 400;
}

.news-card-meta {
    font-size: 14px;
    line-height: 20px;
    color: #4C4B49;
    margin: 0;
}

.news-card-link-wrapper {
    display: block;
    color: inherit;
    text-decoration: none;
}

.news-card-link-wrapper:hover {
    text-decoration: none;
}

/* Theme button - shared CTA link style */
.theme-btn {
    display: inline-block;
    width: fit-content;
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #ffffff;
    font-family: 'Lora', serif;
    font-weight: 400;
}

.theme-btn:hover {
    color: #ffffff;
    text-decoration: none;
}

.news-card .theme-btn {
    margin-top: 50px;
}

.news-single-readmore {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 50px;
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Lora', serif;
    font-weight: 400;
}

.news-single-readmore::before {
    content: "";
    width: 48px;
    height: 11px;
    background-image: url("../Images/btn-icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.news-single-readmore:hover {
    color: #ffffff;
}

.news-card-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .section-news {
        padding: 100px 50px;
    }

    .section-news-cols {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .section-news {
        padding: 50px 25px;
    }

    .news-card-title {
        font-size: 24px;
        line-height: 32px;
    }

    .section-news-cols {
        flex-direction: column;
    }
}

/* Next section after stack: collage left, text right */
.section-express {
    padding: 100px 100px;
    background-color: #ffffff;
    background-image: url("../Images/section3-lines-background.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.section-express .container {
    max-width: 100%;
    width: 100%;
}

.section-express .row {
    align-items: flex-end;
}

.section-express-media {
    position: relative;
    z-index: 1;
}

.express-collage {
    position: relative;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.express-collage-main {
    width: 100%;
    height: auto;
    display: block;
}

.section-express-content {
    position: relative;
    z-index: 1;
}

.express-headline {
    color: #241F20;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
}

.express-text {
    color: #241F20;
    margin: 50px 0 0 120px;
}

@media (max-width: 768px) {
    .section-express-content {
        margin-top: 50px;
    }

    .express-text {
        margin-top: 25px;
    }
}

@media (max-width: 991px) {
    .section-express {
        padding: 100px 50px;
    }

    .express-collage {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .section-express {
        padding: 100px 25px;
    }

}

@media (min-width: 577px) and (max-width: 992px) {
    .express-text {
        margin: 25px 0 0 100px;
    }
}

@media (max-width: 576px) {
    .express-text {
        margin: 50px 0 0 52px;
    }
}

/* Approach section (after horizontal scroll) */
.section-approach {
    padding: 150px 100px;
}

.section-approach-inner {
    max-width: 1300px;
    margin: 0 auto;
}

.section-approach-heading {
    text-align: center;
    margin-bottom: 120px;
}

.section-approach-title {
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #241F20;
    margin: 0 0 24px 0;
}

.section-approach-subtitle,
.section-approach-text {
    color: #241F20;
    margin: 0;
}

.section-approach .body-font-large {
    font-size: 18px;
    line-height: 26px;
}

.section-approach-subtitle {
    margin-bottom: 4px;
}

.section-approach-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.section-approach-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach-method-heading {
    margin: 0 0 24px 0;
}

.approach-method-heading h3 {
    font-family: 'Lora', serif;
    font-size: 30px;
    line-height: 38px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #999999;
    margin: 0;
}

.approach-method-list {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #241F20;
    margin: 0;
}

.approach-item {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.approach-item-media {
    width: 100%;
    background-color: #D9D7D3;
    overflow: hidden;
}

.approach-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.approach-item-title {
    color: #999999;
    margin: 0;
    position: relative;
}

.approach-item-title::before {
    content: "";
    display: block;
    width: 15px;
    height: 2px;
    background-color: #999999;
    margin-bottom: 12px;
}

.approach-item--image-above .approach-item-title {
    margin-top: 25px;
}

.approach-item--image-below .approach-item-title {
    margin-bottom: 25px;
}

.approach-item-copy {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: #7A7570;
    margin: 4px 0 0 0;
}

.approach-item:hover .approach-item-title {
    color: #000000;
}

@media (max-width: 991px) {
    .section-approach {
        padding: 100px 50px;
    }

    .section-approach-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 50px;
    }
}

@media (max-width: 768px) {
    .section-approach-heading {
        margin-bottom: 56px;
    }
}

@media (max-width: 576px) {
    .section-approach {
        padding: 50px 25px;
    }

    .section-approach-heading {
        text-align: left;
    }

    .section-approach .body-font-large {
        font-size: 16px;
        line-height: 24px;
    }

    .approach-method-heading h3 {
        font-size: 24px;
        line-height: 32px;
    }

    .approach-item-title {
        min-height: 77px;
    }

    .section-approach-grid {
        grid-template-columns: 1fr;
    }

    .section-approach-mobile-alt .section-approach-heading {
        margin-bottom: 60px;
    }

    /* One visual paragraph on small phones; two separate blocks from 577px up (still in mobile-alt until 768px) */
    .section-approach-mobile-alt .section-approach-subtitle,
    .section-approach-mobile-alt .section-approach-text {
        display: inline;
        margin: 0;
        vertical-align: baseline;
    }

    .section-approach-mobile-alt .section-approach-subtitle::after {
        content: " ";
    }
}

/* Approach mobile slider: visible only on small screens */
.approach-slider-mobile {
    display: none;
}

.approach-slider-mobile-track {
    position: relative;
}

.approach-slider-mobile-slide {
    display: none;
}

.approach-slider-mobile-slide.is-active {
    display: block;
}

.approach-slider-mobile-slide .approach-item-title {
    margin-top: 25px;
}

.approach-slider-mobile-dots {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    gap: 0;
}

.approach-slider-mobile-dot {
    width: 48px;
    height: 2px;
    border-radius: 0;
    background: rgba(36, 31, 32, 0.3);
    cursor: pointer;
    transition: background 0.3s ease, height 0.2s ease;
}

.approach-slider-mobile-dot.is-active {
    background: #241F20;
    height: 3px;
}

@media (max-width: 768px) {
    .section-approach-inner {
        display: none;
    }

    .section-approach-mobile-alt {
        display: block;
    }

    .approach-mobile-alt-grid {
        column-gap: 30px;
    }

    .approach-method-heading.approach-mobile-method-heading h3 {
        color: #000000;
    }

    .approach-mobile-alt-item-1 {
        margin-top: 90px;
    }

    .approach-mobile-alt-item-4 {
        margin-top: 80px;
    }

    .approach-mobile-alt-item-3 {
        margin-top: 60px;
    }

    .approach-mobile-alt-item-5 {
        margin-top: 60px;
    }
}

@media (min-width: 769px) {
    .section-approach-mobile-alt {
        display: none;
    }

    .section-approach-inner {
        display: block;
    }
}

/* Card Hover Effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.15) !important;
}

/* Service Items */
.service-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.15) !important;
}

.service-item i {
    transition: transform 0.3s ease;
}

.service-item:hover i {
    transform: scale(1.1);
}

/* Button Styles */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-outline-primary {
    border: 2px solid #667eea;
    color: #667eea;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Form Styles */
.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Footer Styles */
.site-footer {
    padding: 50px 100px 80px 100px;
    background-color: #000000;
    color: #ffffff;
}

.site-footer-inner {
    width: 100%;
}

.footer-top {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-top: 120px;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    margin-top: 140px;
}

.footer-text {
    max-width: 520px;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
}

.footer-text p {
    font-family: 'Lora', serif;
    font-size: 18px;
    line-height: 26px;
    margin: 0 0 25px 0;
}

.footer-text p:last-child {
    margin-bottom: 0;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.footer-nav li + li {
    margin-top: 10px;
}

.footer-nav a {
    font-size: 18px;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
}

.footer-divider {
    height: 1px;
    background-color: #4C4B49;
    margin-top: 15px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    gap: 40px;
}

.footer-copy,
.footer-links a {
    font-size: 14px;
    line-height: 22px;
    color: #A39C98;
    font-family: 'Lora', serif;
}

.footer-copy,
.footer-links {
    text-transform: uppercase;
}

.footer-links {
    display: inline-block;
    font-size: 14px;
}

.footer-links a {
    text-decoration: none;
}

.footer-link-separator {
    color: #A39C98;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-left: 10px;
    text-decoration: none;
}

.footer-social img {
    width: 32px;
    height: 32px;
    display: block;
}

.site-footer a {
    transition: transform 0.3s ease, color 0.3s ease;
}

.site-footer a:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

.footer-links a:hover {
    transform: none;
}

@media (max-width: 991px) {
    .site-footer {
        padding: 50px 40px 80px 40px;
    }

    .footer-main {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-nav ul {
        text-align: left;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 576px) {
    .site-footer {
        padding: 40px 24px 60px 24px;
    }

    .footer-main {
        margin-top: 60px;
    }

    .footer-text p {
        font-size: 16px;
        line-height: 24px;
    }

    .footer-bottom {
        gap: 15px;
    }

    .footer-social {
        margin-top: 60px;
    }
}

@media (min-width: 461px) and (max-width: 576px) {
    .footer-links {
        gap: 12px;
    }
}

@media (max-width: 460px) {
    .footer-links {
        gap: 6px;
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .navbar {
        padding: 0 !important;
    }

    .navbar-logo {
        width: 30px !important;
        margin-top: 20px;
    }

    /* Mobile header: logo stays centered, toggler right - position fixed when menu opens */
    #mainNavbar .container.navbar-container-full {
        position: relative;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: flex-start;
        min-height: 56px;
        padding-top: 13px;
        padding-bottom: 13px;
    }
    
    /* Hide left/right nav on mobile, show collapsed menu */
    #mainNavbar .navbar-nav-left,
    #mainNavbar .navbar-nav-right {
        display: none !important;
    }
    
    .navbar-brand {
        position: absolute !important;
        left: 50% !important;
        top: 28px !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        order: 1;
    }
    
    /* Show toggler and collapse menu on mobile */
    .navbar-toggler {
        display: flex !important;
        align-items: center;
        align-self: center;
        order: 2;
        position: relative;
        z-index: 11;
    }
    
    /* Mobile menu: full screen, fade in / fade out */
    .navbar-collapse {
        position: fixed !important;
        z-index: 1050;
        top: 0;
        left: 0;
        right: 0;
        width: 100% !important;
        max-width: 100vw;
        height: 100vh;
        background-color: #000 !important;
        background: #000 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        order: unset;
        flex-basis: unset;
        display: block !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: none;
    }
    
    .navbar-menu-close {
        position: fixed !important;
        top: 20px !important;
        right: 20px !important;
        width: 30px !important;
        height: 30px !important;
        padding: 0 !important;
        background-image: url(../Images/mobile-menu-close.svg) !important;
        background-size: contain !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        background-color: transparent !important;
        border: none !important;
        font-size: 0 !important;
        line-height: 1 !important;
        color: transparent !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 1060 !important;
    }
    
    .navbar-menu-close span {
        display: none !important;
    }
    
    .navbar-menu-close:focus {
        outline: none !important;
    }
    
    .navbar-collapse.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    
    .navbar-expand-lg .navbar-collapse {
        display: block !important;
    }
    
    .navbar-collapse .navbar-nav {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 72px 24px 24px 24px;
        height: 100%;
        text-align: center;
        background: #000;
    }
    
    .navbar-collapse .nav-item {
        padding: 16px 0;
    }
    
    .navbar-collapse .nav-link {
        text-align: center;
        color: #fff !important;
        font-size: 24px;
    }

    /* Logo in mobile menu – same position as header logo, white filter */
    .navbar-collapse .navbar-brand-mobile-menu {
        position: fixed !important;
        left: 50% !important;
        top: 28px !important;
        transform: translate(-50%, -50%) !important;
        z-index: 1055;
        margin: 0;
        padding: 0;
    }

    .navbar-collapse .navbar-logo-mobile-menu {
        width: 30px !important;
        height: auto;
        display: block;
        filter: brightness(0) invert(1);
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        min-height: 80vh;
    }
    
    .hero-logo {
        min-width: 200px;
        max-width: 280px;
    }
    
    section {
        padding: 60px 0;
    }
    
    footer .text-right {
        text-align: left !important;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .hero-logo {
        min-width: 180px;
        max-width: 240px;
    }
}

/* Mobile-specific home hero video section */
.hero-video-section-mobile {
    display: none;
}

.hero-scroll-arrow {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: 2px;
    height: 52px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 6;
    cursor: pointer;
    display: block;
    opacity: 0;
    pointer-events: none;
    animation: heroArrowShow 0.35s ease forwards 4s, heroArrowBounce 1.5s ease-in-out 4.35s infinite, heroArrowGlow 1.8s ease-in-out 4.35s infinite;
}

.hero-scroll-arrow:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.hero-scroll-arrow-icon {
    display: none;
}

@keyframes heroArrowShow {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        pointer-events: auto;
    }
}

@keyframes heroArrowBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes heroArrowGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.85);
    }
    50% {
        box-shadow: 0 0 16px rgba(255, 255, 255, 0.55);
        background: #ffffff;
    }
}

@media (max-width: 576px) {
    .hero-video-desktop {
        display: none;
    }

    .hero-video-section-mobile {
        display: block;
        position: relative;
        margin-top: calc(-1 * var(--navbar-height, 72px));
        min-height: calc(100svh - 71px + var(--navbar-height, 72px));
        overflow: hidden;
        background: #000;
    }

    .hero-video-section-mobile .hero-bg-video-mobile {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}
