* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --gold: #e5a11a;
    --black: #0b0c0d;
    --ink: #151617;
    --muted: #707274;
    --line: #e7e7e5;
    --paper: #fff;
    --soft: #f6f6f4
}

html {
    scroll-behavior: smooth
}

body {
    font-family: "DM Sans", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.45
}

/* =========================================
   CINEMATIC PRELOADER
========================================= */

.bc-preloader {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    background: #0b0b0b;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999999;

    overflow: hidden;

    font-family: "Montserrat", sans-serif;
}


/* Subtle cinematic grain */

.bc-preloader::after {
    content: "";

    position: absolute;
    inset: -50%;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");

    opacity: .18;

    pointer-events: none;

    animation: bcGrain .18s steps(2) infinite;
}

@keyframes bcGrain {

    0% {
        transform: translate(0,0);
    }

    25% {
        transform: translate(2%,-1%);
    }

    50% {
        transform: translate(-1%,2%);
    }

    75% {
        transform: translate(1%,1%);
    }

    100% {
        transform: translate(0,0);
    }
}


/* =========================================
   CONTENT
========================================= */

.bc-preloader-content {
    position: relative;

    width: min(850px, 80vw);

    text-align: center;

    z-index: 2;
}


/* =========================================
   WELCOME
========================================= */

.bc-preloader-welcome {
    color: rgba(255,255,255,.55);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 5px;

    margin-bottom: 20px;

    opacity: 0;

    transform: translateY(15px);

    animation:
        bcWelcomeIn .8s ease forwards .25s;
}

@keyframes bcWelcomeIn {

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================
   GOLD LINE
========================================= */

.bc-preloader-line {
    width: 0;

    height: 1px;

    margin: 0 auto 32px;

    background: rgba(220,165,74,.25);

    overflow: hidden;

    animation:
        bcLineWidth 1s cubic-bezier(.77,0,.18,1) forwards .65s;
}

.bc-preloader-line span {
    display: block;

    width: 100%;
    height: 100%;

    background: #e5a11a;

    transform: translateX(-100%);

    animation:
        bcLineSweep 1s cubic-bezier(.77,0,.18,1) forwards .65s;
}

@keyframes bcLineWidth {

    to {
        width: 180px;
    }

}

@keyframes bcLineSweep {

    to {
        transform: translateX(0);
    }

}


/* =========================================
   MAIN TITLE
========================================= */

.bc-preloader-title {
    display: flex;

    flex-direction: column;

    align-items: center;

    overflow: hidden;
}


/* Each line */

.bc-preloader-title span {
    display: block;

    color: #DCA54A;

    font-family: "Manrope", sans-serif;

    font-size: clamp(55px, 9vw, 120px);

    font-weight: 800;

    line-height: .82;

    letter-spacing: -6px;

    opacity: 0;

    filter: blur(14px);

    transform:
        translateY(80px)
        scale(1.08);

    animation:
        bcTitleReveal 1.25s cubic-bezier(.16,1,.3,1) forwards;
}

.bc-preloader-title span:first-child {
    animation-delay: 1s;
}

.bc-preloader-title span:last-child {
    animation-delay: 1.12s;
}


@keyframes bcTitleReveal {

    0% {
        opacity: 0;

        filter: blur(14px);

        transform:
            translateY(80px)
            scale(1.08);
    }

    60% {
        opacity: 1;

        filter: blur(0);

        transform:
            translateY(-5px)
            scale(1);
    }

    100% {
        opacity: 1;

        filter: blur(0);

        transform:
            translateY(0)
            scale(1);
    }

}


/* =========================================
   BOTTOM TEXT
========================================= */

.bc-preloader-bottom {
    margin-top: 38px;

    color: rgba(255,255,255,.38);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 3px;

    opacity: 0;

    animation:
        bcBottomIn .8s ease forwards 1.8s;
}

@keyframes bcBottomIn {

    to {
        opacity: 1;
    }

}


/* =========================================
   LIGHT SWEEP
========================================= */

.bc-preloader-title::after {
    content: "";

    position: absolute;

    top: 50%;
    left: -30%;

    width: 15%;
    height: 150%;

    transform:
        translateY(-50%)
        rotate(18deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.16),
            transparent
        );

    pointer-events: none;

    opacity: 0;

    animation:
        bcLightSweep 1.5s ease forwards 2.15s;
}

@keyframes bcLightSweep {

    0% {
        left: -30%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    100% {
        left: 120%;
        opacity: 0;
    }

}


/* =========================================
   EXIT ANIMATION
========================================= */

.bc-preloader.is-hidden {
    animation:
        bcPreloaderExit 1.1s cubic-bezier(.77,0,.18,1) forwards;
}

@keyframes bcPreloaderExit {

    0% {
        clip-path: inset(0 0 0 0);
    }

    100% {
        clip-path: inset(0 0 100% 0);
        visibility: hidden;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .bc-preloader-content {
        width: 90vw;
    }

    .bc-preloader-title span {
        font-size: 54px;

        letter-spacing: -3px;
    }

    .bc-preloader-welcome {
        font-size: 8px;

        letter-spacing: 3px;
    }

    .bc-preloader-bottom {
        font-size: 7px;

        letter-spacing: 1.8px;
    }

}

a {
    text-decoration: none;
    color: inherit
}

.site-header {
    height: 82px;
    padding: 0 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 50
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 235px
}

.brand-mark {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--gold);
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 30px;
    line-height: 1
}

.brand strong {
    display: block;
    font: 800 15px/1 "Manrope", sans-serif;
    letter-spacing: -.5px
}

.brand small {
    display: block;
    font-size: 6px;
    letter-spacing: .5px;
    margin-top: 4px;
    color: #777
}

.main-nav {
    display: flex;
    gap: 42px;
    align-items: center
}

.main-nav a {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding: 31px 0
}

.main-nav a.active:after {
    content: "";
    position: absolute;
    height: 3px;
    background: var(--gold);
    left: 0;
    right: 0;
    bottom: 19px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 13px 20px;
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .2px;
    transition: .25s
}

.btn-dark {
    background: var(--black);
    color: #fff
}

.btn-dark:hover {
    background: var(--gold)
}

.btn-gold {
    background: var(--gold);
    color: #111
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px #e5a11a40
}

.btn-outline {
    border-color: #777;
    color: #fff
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 20px
}

/* =========================
   CINEMATIC HERO SLIDER
========================= */

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #111;
}

.hero-slides {
    position: absolute;
    inset: 0;
}


/* SLIDE */

.hero-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 1.4s cubic-bezier(.4, 0, .2, 1),
        visibility 1.4s;

    overflow: hidden;
}


/* ACTIVE SLIDE */

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}


/* IMAGE */

.hero-slide img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.08);

    transition:
        transform 7s cubic-bezier(.2, .65, .25, 1);
}


/*
   When slide becomes active,
   slowly zoom image back to normal.
*/

.hero-slide.active img {
    transform: scale(1);
}


/* =========================
   CINEMATIC OVERLAY
========================= */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.48) 0%,
            rgba(0,0,0,.18) 32%,
            rgba(0,0,0,0) 65%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.62) 0%,
            rgba(0,0,0,0) 42%
        );

    z-index: 2;
}


/* =========================
   PROJECT LABEL
========================= */

.image-label {
    position: absolute;

    right: 7%;
    bottom: 48px;

    color: #fff;

    border-left: 2px solid var(--gold);

    padding-left: 17px;

    z-index: 4;

    opacity: 0;
    transform: translateY(20px);

    transition:
        opacity .8s ease .45s,
        transform .8s cubic-bezier(.2,.7,.2,1) .45s;
}


/* Animate label when slide enters */

.hero-slide.active .image-label {
    opacity: 1;
    transform: translateY(0);
}


.image-label strong,
.image-label span,
.image-label b {
    display: block;
}

.image-label strong {
    font-size: 19px;
    font-weight: 700;
}

.image-label span {
    font-size: 10px;
    margin: 4px 0;
    color: #eee;
}

.image-label b {
    font-size: 11px;
    color: var(--gold);
}


/* =========================
   ARROWS
========================= */

.hero-arrow {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.65);

    background: rgba(0,0,0,.08);

    color: #fff;

    display: grid;
    place-items: center;

    cursor: pointer;

    z-index: 10;

    backdrop-filter: blur(6px);

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}

.hero-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);

    transform: translateY(-50%) scale(1.08);
}

.hero-prev {
    left: 28px;
}

.hero-next {
    right: 28px;
}


/* =========================
   COUNTER
========================= */

.hero-counter {
    position: absolute;

    top: 32px;
    right: 7%;

    display: flex;
    align-items: center;

    gap: 10px;

    color: #fff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;

    z-index: 10;
}

.hero-counter .current-slide {
    color: var(--gold);
    font-size: 13px;
}

.counter-line {
    width: 38px;
    height: 1px;

    background: rgba(255,255,255,.5);
}


/* =========================
   PROGRESS DOTS
========================= */

.hero-progress {
    position: absolute;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 8px;

    z-index: 10;
}

.hero-progress button {
    width: 7px;
    height: 7px;

    padding: 0;

    border-radius: 50%;

    border: 1px solid #fff;

    background: transparent;

    cursor: pointer;

    transition:
        width .4s ease,
        background .4s ease,
        border-color .4s ease;
}

.hero-progress button.active {
    width: 28px;

    border-radius: 20px;

    background: var(--gold);
    border-color: var(--gold);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

    .hero {
        height: auto;
        min-height: 0;

        display: flex;
        flex-direction: column;
    }

    .hero-copy {
        padding: 50px 7vw 45px;
    }

    .hero-slider {
        height: 520px;
    }

}

@media (max-width: 600px) {

    .hero-slider {
        height: 430px;
    }

    .image-label {
        left: 25px;
        right: auto;
        bottom: 30px;
    }

    .hero-arrow {
        width: 42px;
        height: 42px;
    }

    .hero-prev {
        left: 18px;
    }

    .hero-next {
        right: 18px;
    }

}

.section {
    padding: 100px 5vw
}

.split {
    display: flex;
    justify-content: space-between;
    gap: 40px
}

.section-intro h2 {
    font: 800 clamp(42px, 4.5vw, 70px)/.93 "Manrope", sans-serif;
    letter-spacing: -3px;
    margin-top: 18px
}

.intro-right {
    max-width: 330px;
    align-self: end;
    padding-bottom: 6px
}

.intro-right p {
    color: #666;
    font-size: 14px;
    margin-bottom: 28px
}

.text-link {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    border-bottom: 1px solid #111;
    padding-bottom: 7px;
    display: inline-flex;
    gap: 14px
}

.project-row {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 1fr;
    gap: 14px;
    margin-top: 70px
}

.project-card {
    background: #111;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 470px
}

.project-card:nth-child(2),
.project-card:nth-child(4) {
    margin-top: 55px
}

.project-image {
    height: 100%;
    min-height: 470px;
    transition: transform .5s
}

.project-card:hover .project-image {
    transform: scale(1.04)
}

.project-1 .project-image {
    background-image: linear-gradient(transparent 40%, #000 100%), url("assets/meubles.jpeg")
}

.project-2 .project-image {
    background-image: linear-gradient(transparent 40%, #000 100%), url("assets/Crystal.jpeg")
}

.project-3 .project-image {
    background-image: linear-gradient(transparent 40%, #000 100%), url("assets/parason.jpeg")
}

.project-4 .project-image {
    background-image: linear-gradient(transparent 40%, #000 100%), url("assets/Starpac.jpeg")
}

.project-meta {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px
}

.project-meta .number {
    color: var(--gold);
    font-size: 10px
}

.project-meta h3 {
    font: 700 17px "Manrope", sans-serif;
    margin-top: 8px
}

.project-meta p {
    font-size: 9px;
    color: #ddd;
    margin: 4px 0
}

.project-meta strong {
    font-size: 12px;
    color: var(--gold)
}

.section-dark {
    background: #0d0f10;
    color: #fff;
    padding: 90px 5vw;
    display: grid;
    grid-template-columns: 25% 75%;
    position: relative;
    overflow: hidden
}

.section-dark:after {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    border: 1px solid #ffffff15;
    border-radius: 50%;
    right: -250px;
    bottom: -400px;
    box-shadow: 0 0 0 80px #ffffff08, 0 0 0 160px #ffffff05
}

/* =========================================
   OUR PROCESS
========================================= */

.process-section {
    position: relative;
    background: #0c0e0f;
    color: #fff;
    padding: 70px 5vw 65px;
    overflow: hidden;
}


/* subtle background detail */

.process-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -250px;
    bottom: -300px;
    border: 1px solid rgba(220,165,74,0.12);
    border-radius: 50%;
    pointer-events: none;
}


/* =========================================
   TOP AREA
========================================= */

.process-top {
    max-width: 1500px;
    margin: 0 auto 55px;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
}


.process-eyebrow {
    display: inline-block;

    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #DCA54A;

    margin-bottom: 15px;
}


.process-top h2 {
    margin: 0;

    font-family: "Montserrat", sans-serif;
    font-size: clamp(38px, 4vw, 62px);
    font-weight: 700;
    line-height: 0.98;

    letter-spacing: -2.5px;
}


.process-top h2 span {
    color: #DCA54A;
}


.process-intro {
    max-width: 390px;

    margin: 0 0 5px;

    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.7;

    color: #969b9e;
}


/* =========================================
   PROCESS LINE
========================================= */

.process-line {
    max-width: 1500px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    position: relative;
}


/* horizontal connecting line */

.process-line::before {
    content: "";

    position: absolute;

    top: 28px;
    left: 10px;
    right: 10px;

    height: 1px;

    background: linear-gradient(
        90deg,
        rgba(220,165,74,0.15),
        rgba(220,165,74,0.7),
        rgba(220,165,74,0.15)
    );
}


/* =========================================
   STEP
========================================= */

.process-step {
    position: relative;

    padding: 0 25px;

    border-left: 1px solid rgba(255,255,255,0.08);

    min-height: 205px;
}


.process-step:first-child {
    border-left: none;
    padding-left: 0;
}


.process-step:last-child {
    padding-right: 0;
}


/* =========================================
   NUMBER
========================================= */

.step-number {
    position: relative;
    z-index: 2;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #0c0e0f;

    border: 1px solid rgba(220,165,74,0.5);

    border-radius: 50%;

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;

    color: #DCA54A;

    transition: all 0.3s ease;
}


/* =========================================
   CONTENT
========================================= */

.step-content {
    padding-top: 28px;
}


.step-content h3 {
    margin: 0 0 12px;

    font-family: "Montserrat", sans-serif;
    font-size: 25px;
    font-weight: 600;

    letter-spacing: -0.5px;

    color: #fff;
}


.step-content p {
    margin: 0;

    max-width: 210px;

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 1.65;

    color: #858b8e;
}


/* =========================================
   HOVER
========================================= */

.process-step:hover .step-number {
    background: #DCA54A;
    color: #0c0e0f;

    border-color: #DCA54A;

    transform: translateY(-3px);
}


.process-step:hover h3 {
    color: #DCA54A;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .process-section {
        padding: 60px 5vw;
    }

    .process-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .process-intro {
        max-width: 600px;
    }

    .process-line {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 45px;
    }

    .process-line::before {
        display: none;
    }

    .process-step {
        border-left: 1px solid rgba(255,255,255,0.08);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .process-section {
        padding: 50px 25px;
    }

    .process-top {
        margin-bottom: 40px;
    }

    .process-top h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .process-intro {
        font-size: 13px;
        line-height: 1.6;
    }

    .process-line {
        display: block;
    }

    .process-step {
        min-height: auto;

        padding: 0 0 35px 25px;

        margin-bottom: 30px;

        border-left: 1px solid rgba(220,165,74,0.25);
    }

    .process-step:first-child {
        padding-left: 25px;
    }

    .process-step:last-child {
        margin-bottom: 0;
    }

    .step-number {
        width: 50px;
        height: 50px;
    }

    .step-content {
        padding-top: 18px;
    }

    .step-content h3 {
        font-size: 22px;
    }

    .step-content p {
        max-width: 100%;
        font-size: 13px;
    }

}

/* =========================
   IMPACT / STATS SECTION
========================= */

.impact-section {
  width: 100%;
  padding: 60px 5vw;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  font-family: "Montserrat", sans-serif;
}

.impact-inner {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;

  align-items: center;
}


/* =========================
   LEFT CONTENT
========================= */

.impact-main {
  padding-right: 40px;
}

.impact-number {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(100px, 10vw, 170px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -8px;
  color: #DCA54A;
}

.impact-number span {
  font-size: 0.45em;
  vertical-align: top;
  letter-spacing: -2px;
}

.impact-title {
  margin-top: 30px;

  font-size: 28px;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -1px;
  color: #111111;
}

.impact-title strong {
  display: block;
  font-weight: 800;
}

.impact-description {
  max-width: 500px;
  margin-top: 22px;

  font-size: 15px;
  line-height: 1.7;
  color: #777777;
}


/* =========================
   STATS GRID
========================= */

.impact-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid #dddddd;
  border-left: 1px solid #dddddd;
}

.impact-stat {
  min-height: 175px;
  padding: 32px 35px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;

  transition: background 0.3s ease;
}

.impact-stat:hover {
  background: #faf9f6;
}


/* NUMBER */

.stat-number {
  display: block;

  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 750;
  line-height: 1.05;
  letter-spacing: -1.5px;

  color: #111111;
}


/* LABEL */

.stat-label {
  display: block;

  margin-top: 14px;

  font-size: 12px;
  line-height: 1.6;
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: 1px;

  color: #888888;
}


/* =========================
   GOLD ACCENT
========================= */

.impact-stat:first-child .stat-number,
.impact-stat:nth-child(3) .stat-number {
  color: #DCA54A;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

  .impact-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .impact-main {
    padding-right: 0;
  }

  .impact-number {
    font-size: 120px;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .impact-section {
    padding: 65px 24px;
  }

  .impact-number {
    font-size: 90px;
    letter-spacing: -5px;
  }

  .impact-title {
    font-size: 23px;
  }

  .impact-description {
    font-size: 14px;
  }

  .impact-stats {
    grid-template-columns: 1fr 1fr;
  }

  .impact-stat {
    min-height: 140px;
    padding: 24px 20px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 10px;
  }

}

.brands {
    padding: 65px 5vw 45px;
    text-align: center
}

.brand-strip {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    border: 1px solid var(--line);
    margin-top: 25px
}

.brand-strip span {
    height: 70px;
    display: grid;
    place-items: center;
    border-right: 1px solid var(--line);
    font: 700 13px "Manrope", sans-serif;
    color: #5e6062
}

.brand-strip span:last-child {
    border: 0;
    color: var(--gold)
}

.proof {
    padding-top: 45px
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.5fr 1fr;
    border: 1px solid var(--line)
}

.proof-block {
    padding: 35px 30px;
    min-height: 390px;
    border-right: 1px solid var(--line)
}

.proof-block:last-child {
    border: 0
}

.proof-block h3 {
    font: 700 25px/1.05 "Manrope", sans-serif;
    margin: 17px 0 30px
}

.award-number {
    font: 800 70px "Manrope", sans-serif;
    color: var(--gold);
    margin-top: 45px
}

.proof-block p {
    font-size: 10px;
    color: #666
}

.proof-block .text-link {
    margin-top: 45px
}

.video-thumb {
    height: 160px;
    background-image: linear-gradient(#0005, #0007), url("https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=800&q=80");
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    color: #fff;
    font-size: 9px;
    font-weight: 800
}

.play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: grid;
    place-items: center
}

.quote-mark {
    font: 800 70px/.5 Georgia;
    color: var(--gold);
    margin-top: 30px
}

.testimonial blockquote {
    font: 17px/1.55 "Manrope", sans-serif;
    font-weight: 500;
    margin: 25px 0
}

.person {
    display: flex;
    align-items: center;
    gap: 12px
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 10px
}

.person b,
.person small {
    display: block
}

.person b {
    font-size: 10px
}

.person small {
    font-size: 9px;
    color: #777
}

.partnership-icon {
    font-size: 95px;
    color: var(--gold);
    margin: 45px 0 15px
}

.final-cta {
    min-height: 300px;
    padding: 60px 5vw;
    display: grid;
    grid-template-columns: 1.4fr .8fr .55fr;
    align-items: center;
    gap: 50px;
    background: linear-gradient(90deg, #0d0f10eF, #0d0f1070), url("/assets/footerBG.jpg") center/cover;
    color: #fff
}

.final-cta h2 {
    font: 800 50px/.95 "Manrope", sans-serif;
    letter-spacing: -2px;
    margin: 15px 0
}

.final-cta p {
    max-width: 420px;
    color: #c5c5c5;
    font-size: 13px
}

.btn.large {
    padding: 18px 25px
}

.direct-contact {
    border-left: 1px solid #ffffff40;
    padding-left: 30px
}

.direct-contact small {
    display: block;
    font-size: 8px;
    color: #aaa;
    margin-bottom: 7px
}

.direct-contact strong {
    font: 700 17px "Manrope", sans-serif
}

/* =========================================================
   PREMIUM FOOTER
========================================================= */

.site-footer {
    position: relative;
    background: #090a0b;
    color: #fff;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
}


/* =========================================================
   CTA SECTION
========================================================= */

.footer-cta {
    position: relative;
    padding: 80px 5vw 70px;
    z-index: 2;
}

.footer-cta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
}

.footer-eyebrow {
    color: #e5a11a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-index {
    color: #666;
    font-size: 9px;
    letter-spacing: 1.5px;
}


.footer-cta-content {
    display: grid;
    grid-template-columns: 1.5fr .65fr;
    gap: 80px;
    align-items: end;
}


.footer-cta h2 {
    margin: 0;
    max-width: 900px;

    font-family: "Montserrat", sans-serif;
    font-size: clamp(55px, 8vw, 125px);
    font-weight: 800;
    line-height: .88;
    letter-spacing: -6px;
    text-transform: uppercase;
}

.footer-cta h2 span {
    display: block;
    color: #e5a11a;
}


.footer-cta-right {
    max-width: 350px;
    padding-bottom: 5px;
}

.footer-cta-right p {
    margin: 0 0 30px;

    color: #858585;
    font-size: 13px;
    line-height: 1.8;
}


.footer-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;

    min-width: 210px;
    padding: 17px 18px;

    border: 1px solid #e5a11a;

    color: #fff;
    text-decoration: none;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease;
}

.footer-main-btn i {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border: 1px solid #555;
    border-radius: 50%;

    font-style: normal;
    font-size: 14px;

    transition: .35s ease;
}

.footer-main-btn:hover {
    background: #e5a11a;
    color: #080808;
    transform: translateY(-3px);
}

.footer-main-btn:hover i {
    border-color: #080808;
    transform: rotate(45deg);
}


.footer-line {
    height: 1px;
    margin-top: 70px;

    background: linear-gradient(
        90deg,
        #e5a11a,
        #333 30%,
        transparent
    );
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.footer-main {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.45fr .7fr 1.2fr .85fr 1fr;

    gap: 55px;

    padding: 75px 5vw 80px;
}


/* =========================================================
   BRAND
========================================================= */

.footer-brand {
    padding-right: 30px;
}


.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 30px;
}


.footer-logo-mark {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border: 1px solid #e5a11a;

    color: #e5a11a;

    font-size: 25px;
    line-height: 1;
}


.footer-logo strong {
    display: block;

    font-size: 16px;
    font-weight: 800;
    letter-spacing: -.5px;
}


.footer-logo small {
    display: block;

    margin-top: 5px;

    color: #666;

    font-size: 14px;
    letter-spacing: 1.3px;
}


.footer-description {
    max-width: 280px;

    margin: 0;

    color: #777;

    font-size: 14px;
    line-height: 1.9;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-socials {
    display: flex;
    gap: 8px;

    margin-top: 30px;
}

.footer-socials a {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border: 1px solid #292929;
    border-radius: 50%;

    color: #aaa;

    font-size: 14px;
    text-decoration: none;

    transition: .3s ease;
}

.footer-socials a:hover {
    border-color: #e5a11a;
    background: #e5a11a;
    color: #080808;
}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column {
    position: relative;
}


.footer-column-number {
    display: block;

    margin-bottom: 17px;

    color: #e5a11a;

    font-size: 8px;
    letter-spacing: 1px;
}


.footer-column h3 {
    margin: 0 0 27px;

    color: #fff;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.footer-column nav a {
    position: relative;

    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;

    margin-bottom: 15px;

    color: #777;

    font-size: 14px;
    line-height: 1.4;

    text-decoration: none;

    transition: .3s ease;
}


.footer-column nav a span {
    color: #444;

    opacity: 0;

    transform: translateX(-5px);

    transition: .3s ease;
}


.footer-column nav a:hover {
    color: #fff;
}


.footer-column nav a:hover span {
    color: #e5a11a;

    opacity: 1;

    transform: translateX(0);
}


/* =========================================================
   LOCATIONS
========================================================= */

.footer-locations a {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 17px;

    color: #777;

    font-size: 14px;
    text-decoration: none;

    transition: .3s ease;
}


.location-dot {
    width: 5px;
    height: 5px;

    flex-shrink: 0;

    border: 1px solid #e5a11a;
    border-radius: 50%;

    transition: .3s ease;
}


.footer-locations a:hover {
    color: #fff;
}


.footer-locations a:hover .location-dot {
    background: #e5a11a;
    box-shadow: 0 0 10px #e5a11a;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-details a {
    display: block;

    margin-bottom: 20px;

    color: #aaa;

    font-size: 14px;
    line-height: 1.5;

    text-decoration: none;

    transition: .3s ease;
}


.contact-details a:hover {
    color: #fff;
}


.contact-details small {
    display: block;

    margin-bottom: 5px;

    color: #555;

    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.3px;
}


.footer-quote {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 28px;
    padding: 15px 17px;

    border: 1px solid #333;

    color: #e5a11a;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;

    text-decoration: none;

    transition: .35s ease;
}


.footer-quote i {
    font-style: normal;
    font-size: 15px;

    transition: .35s ease;
}


.footer-quote:hover {
    border-color: #e5a11a;
    background: #e5a11a;
    color: #090a0b;
}


.footer-quote:hover i {
    transform: rotate(45deg);
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.footer-bottom {
    position: relative;
    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 0 5vw;

    padding: 20px 0;

    border-top: 1px solid #202020;

    color: #444;

    font-size: 14px;
}


.footer-bottom-left,
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 12px;
}


.footer-bottom a {
    color: #444;
    text-decoration: none;

    transition: .3s ease;
}


.footer-bottom a:hover {
    color: #e5a11a;
}


/* =========================================================
   GIANT BACKGROUND WATERMARK
========================================================= */

.footer-watermark {
    position: absolute;

    left: 50%;
    bottom: -50px;

    transform: translateX(-50%);

    white-space: nowrap;

    color: rgba(255, 255, 255, .018);

    font-size: clamp(100px, 18vw, 300px);
    font-weight: 800;
    letter-spacing: -12px;

    pointer-events: none;
    user-select: none;

    z-index: 1;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1100px) {

    .footer-main {
        grid-template-columns: 1.3fr 1fr 1fr;
        row-gap: 60px;
    }

    .footer-brand {
        grid-column: span 3;
    }

    .footer-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-cta-right {
        max-width: 500px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .footer-cta {
        padding: 60px 6vw 50px;
    }

    .footer-cta-top {
        margin-bottom: 45px;
    }

    .footer-cta h2 {
        font-size: clamp(48px, 14vw, 75px);
        letter-spacing: -3px;
    }

    .footer-cta-right p {
        font-size: 12px;
    }

    .footer-line {
        margin-top: 50px;
    }


    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 50px 30px;

        padding: 60px 6vw;
    }

    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }


    .footer-services {
        grid-column: span 2;
    }


    .footer-column nav a {
        font-size: 10px;
    }


    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;

        margin: 0 6vw;
    }


    .footer-watermark {
        bottom: -15px;
        font-size: 28vw;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-services {
        grid-column: span 1;
    }

    .footer-cta h2 {
        font-size: 45px;
    }

    .footer-bottom-left,
    .footer-bottom-right {
        flex-wrap: wrap;
    }

}

@media(max-width:1000px) {
    .main-nav {
        gap: 18px
    }

    .hero-copy {
        padding-left: 5vw
    }

    .project-row {
        grid-template-columns: repeat(2, 1fr)
    }

    .project-card:nth-child(2),
    .project-card:nth-child(4) {
        margin-top: 0
    }

    .impact {
        grid-template-columns: 1fr 1fr;
        gap: 30px
    }

    .mini-stats {
        grid-column: 1/-1
    }

    .proof-grid {
        grid-template-columns: 1fr 1fr
    }

    .proof-block:nth-child(2) {
        border-right: 0
    }

    .proof-block:nth-child(3) {
        border-top: 1px solid var(--line)
    }

    .proof-block:nth-child(4) {
        border-top: 1px solid var(--line)
    }

    .final-cta {
        grid-template-columns: 1fr 1fr
    }

    .direct-contact {
        display: none
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:720px) {
    .site-header {
        height: 70px
    }

    .main-nav,
    .site-header>.btn {
        display: none
    }

    .menu-toggle {
        display: block
    }

    .hero {
        display: block;
        min-height: 760px
    }

    .hero-copy {
        padding: 100px 7vw 40px;
        background: linear-gradient(180deg, #f8f8f6 0%, #f8f8f6 65%, transparent 100%);
        min-height: 470px
    }

    .hero-copy h1 {
        font-size: 48px;
        letter-spacing: -2.5px
    }

    .image-hero {
        height: 370px;
        margin-top: -60px
    }

    .scroll-note {
        display: none
    }

    .section {
        padding: 70px 6vw
    }

    .split {
        display: block
    }

    .intro-right {
        margin-top: 25px
    }

    .project-row {
        grid-template-columns: 1fr
    }

    .project-card {
        min-height: 420px
    }

    .project-image {
        min-height: 420px
    }

    .section-dark {
        display: block;
        padding: 70px 6vw
    }

    .service-flow {
        display: block;
        margin-top: 50px
    }

    .service-flow article {
        border-left: 0;
        border-top: 1px solid #ffffff20;
        padding: 25px 0;
        min-height: auto
    }

    .service-flow article:first-child {
        border-top: 0
    }

    .service-flow span {
        margin-bottom: 15px
    }

    .service-flow:before {
        display: none
    }

    .impact {
        display: block;
        padding: 70px 6vw
    }

    .mega-number {
        font-size: 110px
    }

    .mega-copy {
        margin: 30px 0
    }

    .mini-stats {
        grid-template-columns: repeat(2, 1fr);
        border-left: 0
    }

    .mini-stats div {
        padding: 18px 0;
        border-bottom: 1px solid #ddd
    }

    .brands {
        padding: 55px 6vw
    }

    .brand-strip {
        grid-template-columns: repeat(2, 1fr)
    }

    .brand-strip span {
        border-bottom: 1px solid var(--line)
    }

    .proof-grid {
        grid-template-columns: 1fr
    }

    .proof-block {
        border-right: 0 !important;
        border-top: 1px solid var(--line)
    }

    .proof-block:first-child {
        border-top: 0
    }

    .final-cta {
        grid-template-columns: 1fr;
        padding: 60px 7vw
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px
    }

    .footer-brand {
        grid-column: 1/-1
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom span {
        display: block;
        margin: 6px 0
    }
}

/* =========================================================
   BRICKS & CLICKS
   CINEMATIC SERVICES SECTION
========================================================= */

.bc-services {

  --gold: #DCA54A;
  --black: #101010;
  --grey: #737373;
  --line: #dedede;

  width: 100%;
  background: #ffffff;

  padding: 60px 5vw 110px;

  font-family: "Montserrat", sans-serif;

  overflow: hidden;
}


/* =========================================================
   SECTION INTRO
========================================================= */

.bc-services-intro {

  max-width: 1550px;

  margin: 0 auto 85px;

  display: grid;

  grid-template-columns: 0.8fr 1.8fr 1fr;

  align-items: end;

  column-gap: 50px;

}


.bc-eyebrow {

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 2.5px;

  color: var(--gold);

  position: relative;

  padding-left: 35px;

}


.bc-eyebrow::before {

  content: "";

  position: absolute;

  left: 0;

  top: 50%;

  width: 24px;

  height: 1px;

  background: var(--gold);

}


.bc-services-intro h2 {

  margin: 0;

  font-size: clamp(42px, 5vw, 72px);

  line-height: 0.98;

  letter-spacing: -3px;

  font-weight: 700;

  color: var(--black);

}


.bc-services-intro h2 span {

  color: #e5a11a;

  font-weight: 500;

}


.bc-services-intro p {

  max-width: 370px;

  margin: 0;

  color: var(--grey);

  font-size: 15px;

  line-height: 1.8;

}


/* =========================================================
   SERVICE LIST
========================================================= */

.bc-service-list {

  max-width: 1550px;

  margin: 0 auto;

}


/* =========================================================
   SERVICE ITEM
========================================================= */

.bc-service {

  position: relative;

  min-height: 570px;

  display: grid;

  grid-template-columns: 58% 42%;

  align-items: center;

  margin-bottom: 100px;

}


/* =========================================================
   REVERSE
========================================================= */

.bc-service.reverse {

  grid-template-columns: 42% 58%;

}


/* =========================================================
   IMAGE
========================================================= */

.bc-service-image {

  position: relative;

  height: 570px;

  overflow: hidden;

  z-index: 1;

}


.bc-service-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  filter: saturate(0.92);

  transform: scale(1.02);

  transition:
    transform 1s cubic-bezier(.2,.7,.2,1),
    filter 0.6s ease;

}


.bc-service:hover .bc-service-image img {

  transform: scale(1.08);

  filter: saturate(1.05);

}


/* =========================================================
   IMAGE CINEMATIC OVERLAY
========================================================= */

.bc-image-overlay {

  position: absolute;

  inset: 0;

  background:

    linear-gradient(
      90deg,
      rgba(0,0,0,.55),
      rgba(0,0,0,.08) 55%,
      rgba(0,0,0,.28)
    );

  pointer-events: none;

}


.bc-service-tag {

  position: absolute;

  left: 35px;

  bottom: 30px;

  color: #ffffff;

  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

  border: 1px solid rgba(255,255,255,.5);

  padding: 10px 15px;

  backdrop-filter: blur(5px);

}


/* =========================================================
   GIANT NUMBER
========================================================= */

.bc-service-number {

  position: absolute;

  left: -20px;

  top: -55px;

  z-index: 5;

  font-size: 170px;

  line-height: 1;

  font-weight: 800;

  letter-spacing: -12px;

  color: rgba(220,165,74,.13);

  pointer-events: none;

}


/* Reverse number */

.bc-service.reverse .bc-service-number {

  right: -20px;

  left: auto;

}


/* =========================================================
   CONTENT PANEL
========================================================= */

.bc-service-content {

  position: relative;

  z-index: 3;

  background: #ffffff;

  padding: 65px 65px;

  margin-left: -80px;

  box-shadow: 0 18px 55px rgba(0,0,0,.10);

}


.bc-service.reverse .bc-service-content {

  margin-left: 0;

  margin-right: -80px;

  order: -1;

}


/* =========================================================
   SMALL LABEL
========================================================= */

.bc-service-small {

  font-size: 10px;

  letter-spacing: 2px;

  font-weight: 700;

  color: var(--gold);

  margin-bottom: 22px;

}


/* =========================================================
   SERVICE TITLE
========================================================= */

.bc-service-content h3 {

  margin: 0;

  font-size: clamp(38px, 4vw, 60px);

  line-height: .98;

  letter-spacing: -2.5px;

  font-weight: 700;

  color: var(--black);

}


.bc-gold-line {

  width: 65px;

  height: 2px;

  background: var(--gold);

  margin: 30px 0;

  transition: width .5s ease;

}


.bc-service:hover .bc-gold-line {

  width: 110px;

}


/* =========================================================
   DESCRIPTION
========================================================= */

.bc-service-content p {

  max-width: 500px;

  margin: 0 0 35px;

  color: var(--grey);

  font-size: 14px;

  line-height: 1.8;

}


/* =========================================================
   LINK
========================================================= */

.bc-service-link {

  display: inline-flex;

  align-items: center;

  gap: 12px;

  color: var(--black);

  text-decoration: none;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1.5px;

  transition: color .3s ease;

}


.bc-service-link span {

  width: 32px;

  height: 32px;

  border: 1px solid #cfcfcf;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 15px;

  transition:
    background .3s ease,
    border-color .3s ease,
    color .3s ease,
    transform .3s ease;

}


.bc-service-link:hover {

  color: var(--gold);

}


.bc-service-link:hover span {

  background: var(--gold);

  border-color: var(--gold);

  color: #ffffff;

  transform: rotate(45deg);

}


/* =========================================================
   BOTTOM CTA
========================================================= */

.bc-services-end {

  max-width: 1550px;

  margin: 20px auto 0;

  padding-top: 45px;

  border-top: 1px solid var(--line);

  display: flex;

  justify-content: space-between;

  align-items: center;

}


.bc-services-end span {

  font-size: 11px;

  letter-spacing: 2px;

  color: #888;

  font-weight: 600;

}


.bc-services-end a {

  display: inline-flex;

  align-items: center;

  gap: 15px;

  text-decoration: none;

  color: var(--black);

  font-size: 14px;

  font-weight: 700;

  letter-spacing: 1px;

}


.bc-services-end b {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: var(--black);

  color: #ffffff;

  font-size: 18px;

  transition: .3s ease;

}


.bc-services-end a:hover b {

  background: var(--gold);

  transform: rotate(45deg);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .bc-services {

    padding: 90px 5vw;

  }


  .bc-services-intro {

    grid-template-columns: 1fr;

    gap: 25px;

    margin-bottom: 60px;

  }


  .bc-services-intro p {

    max-width: 600px;

  }


  .bc-service,
  .bc-service.reverse {

    grid-template-columns: 1fr;

    min-height: auto;

    margin-bottom: 80px;

  }


  .bc-service-image {

    height: 480px;

  }


  .bc-service-content,
  .bc-service.reverse .bc-service-content {

    margin: -60px 30px 0;

    order: 2;

  }


  .bc-service-number,
  .bc-service.reverse .bc-service-number {

    left: 15px;

    right: auto;

    top: -35px;

  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .bc-services {

    padding: 70px 20px;

  }


  .bc-services-intro h2 {

    font-size: 42px;

    letter-spacing: -2px;

  }


  .bc-service {

    margin-bottom: 65px;

  }


  .bc-service-image {

    height: 350px;

  }


  .bc-service-content,
  .bc-service.reverse .bc-service-content {

    margin: -40px 15px 0;

    padding: 40px 30px;

  }


  .bc-service-content h3 {

    font-size: 38px;

  }


  .bc-service-number {

    font-size: 110px;

    letter-spacing: -8px;

  }


  .bc-service-tag {

    left: 20px;

    bottom: 20px;

  }


  .bc-services-end {

    flex-direction: column;

    align-items: flex-start;

    gap: 25px;

  }

}

.clients-section {
    position: relative;
    padding: 110px 5vw 70px;
    background: #fafaf8;
    overflow: hidden;
    font-family: "Montserrat", sans-serif;
}

/* subtle background detail */
.clients-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(218, 165, 74, 0.12);
    right: -230px;
    top: 80px;
}

.clients-intro {
    max-width: 1400px;
    margin: 0 auto 65px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 80px;
}

.clients-eyebrow {
    display: block;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #dca54a;
}

.clients-intro h2 {
    margin: 0;
    font-size: clamp(38px, 4vw, 64px);
    line-height: 0.98;
    letter-spacing: -2.5px;
    font-weight: 700;
    color: #111;
}

.clients-intro h2 em {
    font-family: Georgia, serif;
    font-weight: 400;
    color: #dca54a;
}

.clients-intro p {
    max-width: 400px;
    margin: 0 0 5px;
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}


/* LOGO WALL */

.clients-wall {
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(6, 1fr);

    border-top: 1px solid #dededb;
    border-left: 1px solid #dededb;
}

.client-logo {
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    border-right: 1px solid #dededb;
    border-bottom: 1px solid #dededb;

    transition:
        background 0.35s ease,
        transform 0.35s ease;
}

.client-logo img {
    width: 145px;
    height: 108px;

    object-fit: contain;

    filter: grayscale(100%);
    opacity: 0.72;

    transition:
        filter 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease;
}

.client-logo:hover {
    background: #ffffff;
    transform: translateY(-4px);
    position: relative;
    z-index: 2;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.06);
}


/* MANY MORE */

.client-more {
    height: 150px;

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #111;
    color: #fff;

    border-right: 1px solid #111;
    border-bottom: 1px solid #111;

    transition: 0.35s ease;
}

.client-more span {
    font-size: 34px;
    line-height: 1;
    color: #dca54a;
    margin-bottom: 12px;
}

.client-more strong {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-more small {
    margin-top: 6px;
    font-size: 10px;
    color: #999;
}

.client-more:hover {
    background: #dca54a;
}

.client-more:hover span {
    color: #111;
}

.client-more:hover small {
    color: #222;
}


/* BOTTOM CREDIBILITY BAR */

.clients-bottom {
    max-width: 1400px;
    margin: 35px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #777;
}

.clients-bottom i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #dca54a;
}


/* TABLET */

@media (max-width: 1000px) {

    .clients-intro {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .clients-wall {
        grid-template-columns: repeat(4, 1fr);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .clients-section {
        padding: 75px 20px 50px;
    }

    .clients-intro {
        margin-bottom: 40px;
    }

    .clients-intro h2 {
        font-size: 38px;
    }

    .clients-wall {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-logo,
    .client-more {
        height: 125px;
    }

    .client-logo img {
        width: 110px;
        height: 85px;
    }

    .clients-bottom {
        flex-wrap: wrap;
        gap: 10px 15px;
        justify-content: flex-start;
        line-height: 1.6;
    }

    .clients-bottom i {
        display: none;
    }
}

/* =====================================================
   BRICKS & CLICKS — PROJECT GALLERY
===================================================== */

.bc-projects {
    width: 100%;
    padding: 60px 5vw 60px;
    background: #ffffff;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
}


/* =====================================================
   HEADER
===================================================== */

.bc-projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1500px;
    margin: 0 auto 55px;
}

.bc-eyebrow {
    display: block;
    margin-bottom: 18px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #DCA54A;
}

.bc-projects-header h2 {
    margin: 0;

    font-size: clamp(48px, 5vw, 76px);
    line-height: .92;
    letter-spacing: -3px;
    font-weight: 700;
    color: #111;
}

.bc-projects-header h2 span {
    color: #DCA54A;
}

.bc-projects-intro {
    width: 300px;
    padding-bottom: 5px;
}

.bc-projects-intro p {
    margin: 0 0 25px;

    font-size: 14px;
    line-height: 1.7;
    color: #777;
}

.bc-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #111;
    text-decoration: none;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;

    border-bottom: 1px solid #111;
    padding-bottom: 7px;

    transition: .3s ease;
}

.bc-view-all span {
    font-size: 17px;
}

.bc-view-all:hover {
    color: #DCA54A;
    border-color: #DCA54A;
}


/* =====================================================
   FILTERS
===================================================== */

.bc-filters {
    max-width: 1500px;
    margin: 0 auto 30px;

    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bc-filters button {
    border: 1px solid #ddd;
    background: transparent;

    padding: 13px 20px;

    font-family: inherit;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.4px;

    color: #666;

    cursor: pointer;

    transition: all .3s ease;
}

.bc-filters button:hover,
.bc-filters button.active {
    background: #111;
    border-color: #111;
    color: #fff;
}


/* =====================================================
   GALLERY
===================================================== */

.bc-gallery {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;

    display: grid;

    /*
       4-column gallery
    */
    grid-template-columns:
        1.35fr
        1fr
        1fr
        1fr;

    grid-auto-rows: 300px;

    gap: 14px;
}


/* =====================================================
   PROJECT CARD
===================================================== */

.bc-project {
    position: relative;

    overflow: hidden;

    background: #111;

    min-width: 0;

    cursor: pointer;
}


/* Featured project */

.bc-project.featured {
    grid-row: span 2;
}


/* Give some cards different heights */

.bc-project:nth-child(5) {
    grid-column: span 2;
}

.bc-project:nth-child(6) {
    grid-row: span 2;
}

.bc-project:nth-child(7) {
    grid-column: span 2;
}


/* =====================================================
   IMAGE
===================================================== */

.bc-project-image {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transform: scale(1);

    transition:
        transform .8s cubic-bezier(.2,.7,.2,1),
        filter .5s ease;
}


/* Cinematic darkening */

.bc-project::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.05) 20%,
            rgba(0,0,0,.12) 45%,
            rgba(0,0,0,.88) 100%
        );

    z-index: 1;

    transition: .5s ease;
}


/* Hover */

.bc-project:hover .bc-project-image {
    transform: scale(1.06);
}

.bc-project:hover::after {
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.05) 10%,
            rgba(0,0,0,.18) 40%,
            rgba(0,0,0,.94) 100%
        );
}


/* =====================================================
   TOP INFORMATION
===================================================== */

.bc-project-top {
    position: absolute;

    top: 20px;
    left: 20px;
    right: 20px;

    display: flex;
    justify-content: space-between;

    z-index: 3;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;

    color: #fff;
}

.bc-project-top span:first-child {
    color: #DCA54A;
}


/* =====================================================
   PROJECT INFORMATION
===================================================== */

.bc-project-info {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 24px;

    z-index: 3;

    color: #fff;
}

.bc-project-type {
    display: block;

    margin-bottom: 8px;

    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.7px;

    color: #DCA54A;
}

.bc-project-info h3 {
    margin: 0 0 5px;

    font-size: 22px;
    line-height: 1.1;

    font-weight: 600;
    letter-spacing: -.5px;
}

.bc-project-info p {
    margin: 0;

    font-size: 11px;

    color: rgba(255,255,255,.72);
}


/* =====================================================
   ARROW
===================================================== */

.bc-arrow {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 17px;

    transition: all .35s ease;
}

.bc-project:hover .bc-arrow {
    background: #DCA54A;
    border-color: #DCA54A;
    color: #111;

    transform: rotate(45deg);
}


/* =====================================================
   LARGE FEATURED CARD TYPOGRAPHY
===================================================== */

.bc-project.featured .bc-project-info h3 {
    font-size: 30px;
}

.bc-project.featured .bc-project-info {
    left: 30px;
    right: 30px;
    bottom: 30px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

    .bc-projects {
        padding-left: 30px;
        padding-right: 30px;
    }

    .bc-projects-header {
        align-items: flex-start;
    }

    .bc-gallery {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 320px;
    }

    .bc-project.featured {
        grid-row: span 2;
    }

    .bc-project:nth-child(5),
    .bc-project:nth-child(7) {
        grid-column: span 1;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .bc-projects {
        padding: 70px 20px 80px;
    }

    .bc-projects-header {
        display: block;
        margin-bottom: 35px;
    }

    .bc-projects-header h2 {
        font-size: 48px;
    }

    .bc-projects-intro {
        width: 100%;
        max-width: 400px;
        margin-top: 25px;
    }

    .bc-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .bc-filters button {
        white-space: nowrap;
    }

    .bc-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 360px;
    }

    .bc-project.featured {
        grid-row: span 1;
    }

    .bc-project:nth-child(5),
    .bc-project:nth-child(7) {
        grid-column: span 1;
    }

    .bc-project:nth-child(6) {
        grid-row: span 1;
    }

    .bc-project.featured .bc-project-info h3 {
        font-size: 25px;
    }

}

/* ================================
   IMPACT / STATS SECTION
================================ */

.impact-section {
  width: 100%;
  padding: 90px 5vw;
  background: #fff;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.impact-inner {
  max-width: 1500px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(600px, 1.1fr);

  gap: 70px;
  align-items: stretch;
}


/* ================================
   MAIN 2000+ BLOCK
================================ */

.impact-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
}

.impact-number {
  font-family: "Manrope", sans-serif;
  font-size: clamp(120px, 10vw, 175px);
  line-height: 0.78;
  font-weight: 800;
  letter-spacing: -11px;
  color: var(--gold);
  white-space: nowrap;
}

.impact-number span {
  font-size: 0.48em;
  letter-spacing: -5px;
  vertical-align: top;
  position: relative;
  top: -5px;
}

.impact-line {
  width: 55px;
  height: 3px;
  background: var(--gold);
  margin: 38px 0 22px;
}

.impact-main h2 {
  margin: 0;

  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  font-weight: 500;
  color: #111;
}

.impact-main h2 strong {
  font-weight: 800;
}

.impact-main p {
  max-width: 520px;

  margin: 22px 0 0;

  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #777;
}


/* ================================
   STATS GRID
================================ */

.impact-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  border-top: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
}


/* Individual stat */

.impact-stat {
  min-height: 205px;

  padding: 38px 42px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  border-right: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.impact-stat:hover {
  background: #faf9f6;
}


/* Numbers */

.stat-number {
  display: block;

  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 3.2vw, 52px);
  line-height: 1;
  letter-spacing: -2px;
  font-weight: 800;

  color: #111;
}

.stat-number.gold {
  color: var(--gold);
}


/* Labels */

.stat-label {
  display: block;

  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 1.55;

  letter-spacing: 1.2px;
  text-transform: uppercase;

  color: #777;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {

  .impact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .impact-main p {
    max-width: 650px;
  }

  .impact-stats {
    width: 100%;
  }

}


@media (max-width: 650px) {

  .impact-section {
    margin-top: 100px;
    padding: 65px 25px;
  }

  .impact-number {
    font-size: 95px;
    letter-spacing: -7px;
  }

  .impact-main h2 {
    font-size: 24px;
  }

  .impact-main p {
    font-size: 14px;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }

  .impact-stat {
    min-height: 160px;
    padding: 30px;
  }

}


/* =========================================
   HERO SLIDER
========================================= */

.hero-slider {
    min-height: 640px;
    height: calc(100vh - 96px);
    max-height: 760px;

    position: relative;
    display: grid;
    grid-template-columns: 35% 65%;

    overflow: hidden;
    background: #f8f8f6;
}


/* =========================================
   LEFT CONTENT
========================================= */

.hero-copy {
    padding: 70px 5vw;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;
    z-index: 10;

    background: #f8f8f6;
}

.hero-copy .eyebrow {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #555;

    margin-bottom: 20px;
}

.hero-copy h1 {
    font: 800 clamp(48px, 5vw, 78px)/.96 "Manrope", sans-serif;

    letter-spacing: -4px;

    margin: 0 0 25px;

    max-width: 620px;
}

.hero-copy h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-copy p {
    max-width: 390px;

    font-size: 15px;
    line-height: 1.6;

    color: #505254;

    margin: 0;
}


/* =========================================
   BUTTONS
========================================= */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;

    margin-top: 35px;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 16px 24px;

    background: var(--gold);
    color: #111;

    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;

    text-decoration: none;

    transition: .3s ease;
}

.btn-gold span {
    font-size: 16px;
    transition: transform .3s ease;
}

.btn-gold:hover {
    background: #111;
    color: #fff;
}

.btn-gold:hover span {
    transform: translateX(5px);
}


.play-link {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #111;

    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;

    text-decoration: none;
}

.play-link i {
    width: 34px;
    height: 34px;

    border: 1px solid #111;
    border-radius: 50%;

    display: grid;
    place-items: center;

    font-style: normal;
    font-size: 9px;

    transition: .3s ease;
}

.play-link:hover i {
    background: #111;
    color: #fff;
}


/* =========================================
   SLIDER
========================================= */

.hero-slides {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}


/* =========================================
   INDIVIDUAL SLIDE
========================================= */

.hero-slide {
    position: absolute;

    inset: 0;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .9s ease,
        visibility .9s ease;

    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}


/* =========================================
   IMAGE
========================================= */

.slide-image {
    position: absolute;

    inset: -3%;

    background-size: cover;
    background-position: center;

    transform: scale(1.08);

    transition:
        transform 6s cubic-bezier(.2,.6,.2,1);
}


/*
   Slow cinematic zoom when slide becomes active
*/

.hero-slide.active .slide-image {
    transform: scale(1);
}


/* =========================================
   DARK CINEMATIC OVERLAY
========================================= */

.slide-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.65) 0%,
            rgba(0,0,0,.15) 45%,
            rgba(0,0,0,.08) 100%
        );

    z-index: 2;
}


/* Bottom cinematic gradient */

.slide-overlay::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 35%;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.65),
            transparent
        );
}


/* =========================================
   PROJECT INFORMATION
========================================= */

.slide-info {
    position: absolute;

    right: 9%;
    bottom: 55px;

    z-index: 5;

    color: #fff;

    padding-left: 18px;

    border-left: 2px solid var(--gold);

    display: flex;
    flex-direction: column;

    opacity: 0;
    transform: translateY(20px);

    transition:
        opacity .7s ease .3s,
        transform .7s ease .3s;
}

.hero-slide.active .slide-info {
    opacity: 1;
    transform: translateY(0);
}

.slide-info strong {
    font-size: 20px;
    line-height: 1.2;

    margin-bottom: 5px;
}

.slide-info span {
    font-size: 11px;

    color: #eee;

    margin-bottom: 5px;
}

.slide-info b {
    font-size: 11px;

    color: var(--gold);

    letter-spacing: .5px;
}


/* =========================================
   ARROWS
========================================= */

.hero-arrow {
    position: absolute;

    z-index: 10;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,.6);

    background: rgba(0,0,0,.08);

    backdrop-filter: blur(5px);

    color: #fff;

    border-radius: 50%;

    display: grid;
    place-items: center;

    font-size: 18px;

    cursor: pointer;

    transition: .3s ease;
}

.hero-prev {
    left: 28px;
}

.hero-next {
    right: 28px;
}

.hero-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);

    color: #111;

    transform:
        translateY(-50%)
        scale(1.08);
}


/* =========================================
   SLIDE COUNTER
========================================= */

.slide-counter {
    position: absolute;

    top: 30px;
    right: 35px;

    z-index: 10;

    color: #fff;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.slide-counter i {
    font-style: normal;

    opacity: .45;

    margin: 0 5px;
}

.current-slide {
    color: var(--gold);
}


/* =========================================
   PROGRESS DOTS
========================================= */

.hero-progress {
    position: absolute;

    z-index: 10;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 9px;
}

.hero-progress button {
    width: 7px;
    height: 7px;

    padding: 0;

    border-radius: 50%;

    border: 1px solid #fff;

    background: transparent;

    cursor: pointer;

    transition:
        width .3s ease,
        background .3s ease,
        border-color .3s ease;
}

.hero-progress button.active {
    width: 24px;

    border-radius: 10px;

    background: var(--gold);

    border-color: var(--gold);
}


/* =========================================
   SCROLL NOTE
========================================= */

.scroll-note {
    position: absolute;

    z-index: 15;

    left: 20px;
    bottom: 30px;

    writing-mode: vertical-rl;

    transform: rotate(180deg);

    font-size: 7px;

    letter-spacing: 1.5px;

    font-weight: 800;

    color: #666;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .hero-slider {
        grid-template-columns: 1fr;

        height: auto;
        min-height: auto;
    }

    .hero-copy {
        padding: 70px 7vw 60px;
    }

    .hero-copy h1 {
        font-size: clamp(48px, 10vw, 72px);
    }

    .hero-slides {
        height: 600px;
    }

    .scroll-note {
        display: none;
    }
}


@media (max-width: 600px) {

    .hero-copy {
        padding: 55px 6vw;
    }

    .hero-copy h1 {
        font-size: 48px;

        letter-spacing: -2.5px;
    }

    .hero-copy p {
        font-size: 14px;
    }

    .hero-actions {
        gap: 18px;
        flex-wrap: wrap;
    }

    .hero-slides {
        height: 500px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-prev {
        left: 15px;
    }

    .hero-next {
        right: 15px;
    }

    .slide-info {
        left: 25px;
        right: auto;
        bottom: 50px;
    }

    .slide-counter {
        top: 20px;
        right: 20px;
    }

    .hero-progress {
        bottom: 20px;
    }
}

/* =========================================
   CLIENT TESTIMONIALS
========================================= */

.testimonials-section {
    position: relative;
    padding: 110px 5vw 90px;
    background: #f7f7f5;
    overflow: hidden;
}


/* Subtle background detail */

.testimonials-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -220px;
    top: -180px;
    border: 1px solid rgba(229, 161, 26, .14);
    border-radius: 50%;
}

.testimonials-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -140px;
    top: -100px;
    border: 1px solid rgba(229, 161, 26, .10);
    border-radius: 50%;
}


.testimonials-container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* =========================================
   HEADER
========================================= */

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 55px;
}


.testimonials-title {
    max-width: 650px;
}


.testimonial-eyebrow {
    display: block;
    margin-bottom: 18px;

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #e5a11a;
}


.testimonials-title h2 {
    margin: 0;

    font-family: "Montserrat", sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: .98;
    font-weight: 800;

    letter-spacing: -3px;
    color: #111827;
}


.testimonials-title h2 span {
    color: #8b8e93;
}


.testimonials-intro {
    width: 310px;
}


.testimonials-intro p {
    margin: 0 0 25px;

    font-size: 13px;
    line-height: 1.7;
    color: #686c72;
}


/* =========================================
   CONTROLS
========================================= */

.testimonial-controls {
    display: flex;
    gap: 8px;
}


.testimonial-arrow {
    width: 45px;
    height: 45px;

    border: 1px solid #d9d9d6;
    background: transparent;

    color: #111;
    font-size: 18px;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.testimonial-arrow:hover {
    background: #e5a11a;
    border-color: #e5a11a;
    color: #111;

    transform: translateY(-3px);
}


/* =========================================
   SLIDER
========================================= */

.testimonial-slider {
    width: 100%;
    overflow: hidden;
}


.testimonial-track {
    display: flex;
    gap: 18px;

    transition:
        transform .75s cubic-bezier(.22, .61, .36, 1);

    will-change: transform;
}


/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card {
    position: relative;

    flex: 0 0 calc((100% - 36px) / 3);

    min-height: 325px;

    padding: 30px;

    background: #fff;

    border: 1px solid #e5e5e2;

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}


.testimonial-card:hover {
    transform: translateY(-6px);

    border-color: rgba(229, 161, 26, .4);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .07);
}


/* Gold vertical accent */

.testimonial-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 3px;

    background: #e5a11a;

    transform: scaleY(0);
    transform-origin: bottom;

    transition: transform .4s ease;
}


.testimonial-card:hover::before {
    transform: scaleY(1);
}


/* =========================================
   PERSON
========================================= */

.testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.testimonial-person {
    display: flex;
    align-items: center;
    gap: 13px;
}


.testimonial-avatar {
    width: 48px;
    height: 48px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background: #e5a11a;

    color: #111;

    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
}


.testimonial-person h3 {
    margin: 0 0 4px;

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 700;

    color: #111827;
}


.testimonial-person span {
    font-size: 11px;
    color: #888;
}


/* =========================================
   GOOGLE MARK
========================================= */

.google-mark {
    font-family: Arial, sans-serif;

    font-size: 21px;
    font-weight: 800;

    background:
        linear-gradient(
            90deg,
            #4285f4 0%,
            #34a853 30%,
            #fbbc05 60%,
            #ea4335 100%
        );

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================
   RATING
========================================= */

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 22px;
}


.testimonial-rating span {
    color: #f5b400;

    font-family: Arial, sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
}


.testimonial-rating small {
    width: 17px;
    height: 17px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #4285f4;
    color: #fff;

    font-size: 10px;
    font-weight: 800;
}


/* =========================================
   REVIEW CONTENT
========================================= */

.testimonial-content {
    margin-top: 22px;
}


.testimonial-content p {
    margin: 0;

    max-width: 460px;

    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.75;

    color: #24272b;
}


.testimonial-read {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-top: 18px;

    font-size: 11px;
    font-weight: 700;

    color: #7b7f84;

    text-decoration: none;

    transition: color .3s ease;
}


.testimonial-read span {
    transition: transform .3s ease;
}


.testimonial-read:hover {
    color: #e5a11a;
}


.testimonial-read:hover span {
    transform: translate(3px, -3px);
}


/* =========================================
   CARD NUMBER
========================================= */

.testimonial-number {
    position: absolute;

    right: 25px;
    bottom: 20px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;

    color: #c7c7c4;
}


/* =========================================
   BOTTOM PROGRESS
========================================= */

.testimonial-bottom {
    display: flex;
    align-items: center;
    gap: 25px;

    margin-top: 35px;
}


.testimonial-progress {
    position: relative;

    width: 100%;
    height: 1px;

    background: #d7d7d3;

    overflow: hidden;
}


.testimonial-progress-bar {
    display: block;

    width: 16.66%;
    height: 100%;

    background: #e5a11a;

    transition: width .7s ease;
}


.testimonial-count {
    display: flex;
    align-items: center;
    gap: 6px;

    white-space: nowrap;

    font-family: "Montserrat", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1px;
}


.testimonial-count .testimonial-current {
    color: #e5a11a;
}


.testimonial-count i {
    font-style: normal;
    color: #aaa;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .testimonials-section {
        padding: 85px 5vw 70px;
    }


    .testimonials-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 30px;
    }


    .testimonials-intro {
        width: 100%;
        max-width: 500px;
    }


    .testimonial-card {
        flex: 0 0 calc((100% - 18px) / 2);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .testimonials-section {
        padding: 70px 5vw 60px;
    }


    .testimonials-header {
        margin-bottom: 35px;
    }


    .testimonials-title h2 {
        font-size: 42px;
        letter-spacing: -2px;
    }


    .testimonial-card {
        flex: 0 0 100%;
        min-height: 310px;

        padding: 25px;
    }


    .testimonial-content p {
        font-size: 13px;
    }


    .testimonial-controls {
        margin-top: 10px;
    }

}


/* =========================================================
   MOBILE HERO SLIDER FIX
   Only changes the slider position/height.
   Does NOT redesign the hero.
   ========================================================= */

@media (max-width: 900px) {

    /* Keep the main hero section in normal document flow */
    .hero-slider {
        position: relative !important;
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    /* Keep your existing headline/content first */
    .hero-copy {
        position: relative !important;
        z-index: 5 !important;
        width: 100%;
    }

    /*
       THIS IS THE IMPORTANT FIX.

       Desktop:
       .hero-slides = absolute full-screen layer

       Mobile:
       .hero-slides becomes a normal block
       BELOW .hero-copy.
    */
    .hero-slides {
        position: relative !important;

        inset: auto !important;

        width: 100% !important;
        height: 500px !important;

        overflow: hidden !important;

        display: block !important;
    }

    /* Individual slides remain absolute INSIDE the slider */
    .hero-slide {
        position: absolute !important;

        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        overflow: hidden !important;
    }

    /* Your actual background image */
    .slide-image {
        position: absolute !important;

        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    /* Overlay stays inside the image */
    .slide-overlay {
        position: absolute !important;

        inset: 0 !important;

        width: 100% !important;
        height: 100% !important;

        z-index: 2 !important;
    }

    /* Slide information stays inside image */
    .slide-info {
        z-index: 5 !important;
    }

    /* Counter stays inside slider */
    .hero-counter {
        z-index: 10 !important;
    }

    /* Arrows stay inside slider */
    .hero-arrow {
        z-index: 20 !important;
    }

    /* Dots stay inside slider */
    .hero-progress {
        z-index: 20 !important;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .hero-slides {
        height: 430px !important;
        min-height: 430px !important;
    }

    .hero-slide {
        height: 430px !important;
    }

    .slide-image {
        width: 100% !important;
        height: 100% !important;

        background-size: cover !important;
        background-position: center center !important;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .hero-slides {
        height: 400px !important;
        min-height: 400px !important;
    }

    .hero-slide {
        height: 400px !important;
    }
}

