/* =========================================================
   GOOGLE FONTS
========================================================= */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
  --navy: #101b2d;
  --gold: #c5a46d;
  --gold-light: #e0c993;
  --cream: #f5f2eb;
  --white: #ffffff;
  --text: #26303b;
  --muted: #6f7378;
  --border: #ddd8ce;
}

/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #eaeaea;
  line-height: 1.7;
}       

a {
  text-decoration: none;
  color: inherit;
}

/* =========================================================
   CONTAINER
========================================================= */

.container {
  width: min(1180px, 90%);
  margin: auto;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   WHAT WE ARE / INTRO
========================================================= */

.intro {
  background: #f5f2eb;
  padding: 120px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 22% 78%;
  gap: 60px;
  align-items: start;
}

/* =========================================================
   INTRO LABEL
========================================================= */

.intro-label {
  border-top: 1px solid #c5a46d;
  padding-top: 16px;
}

.intro-label span {
  display: block;

  color: #c5a46d;

  font-family: "Inter", sans-serif;

  font-size: 12px;
  font-weight: 600;

  letter-spacing: 1px;
}

.intro-label p {
  margin: 9px 0 0;

  color: #101b2d;

  font-family: "Inter", sans-serif;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 3px;

  text-transform: uppercase;
}

/* =========================================================
   INTRO CONTENT
========================================================= */

.intro-content {
  max-width: 850px;
}

.intro-content h2 {
  margin: 0 0 35px;

  color: #101b2d;

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(52px, 6vw, 82px);

  font-weight: 500;

  line-height: 0.95;

  letter-spacing: -1px;
}

.intro-content h2 em {
  color: #c5a46d;

  font-style: italic;

  font-weight: 500;
}

.intro-content p {
  max-width: 760px;

  margin: 0 0 22px;

  color: #6f7378;

  font-family: "Inter", sans-serif;

  font-size: 16px;

  font-weight: 400;

  line-height: 1.9;
}

/* =========================================================
   INTRO LINK
========================================================= */

.intro-content .text-link {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-top: 15px;

  padding-bottom: 6px;

  color: #101b2d;

  font-family: "Inter", sans-serif;

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  border-bottom: 1px solid #c5a46d;

  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.intro-content .text-link:hover {
  color: #c5a46d;

  border-color: #101b2d;

  transform: translateX(5px);
}

/* =========================================================
   WELLS HAMILTON MEDIA MARQUEE
========================================================= */

.wh-marquee-section {
  position: relative;

  width: 100%;

  overflow: hidden;

  background: #ffffff;

  padding: 115px 0 120px;

  --scroll-speed: 1;
}

/* =========================================================
   MARQUEE ROW
========================================================= */

.wh-marquee-row {
  position: relative;

  width: 100%;

  overflow: hidden;

  white-space: nowrap;
}

/* =========================================================
   MARQUEE TRACK
========================================================= */

.wh-marquee-track {
  display: flex;

  width: max-content;

  align-items: center;

  will-change: transform;
}

/* =========================================================
   MARQUEE TEXT
========================================================= */

.wh-marquee-track span {
  display: block;

  flex-shrink: 0;

  font-family: "Inter", sans-serif;

  font-size: clamp(5rem, 11vw, 12rem);

  font-weight: 600;

  line-height: 0.82;

  letter-spacing: -0.075em;

  padding-right: 80px;
}

/* =========================================================
   TOP MARQUEE
========================================================= */

.wh-marquee-top {
  margin-bottom: 10px;
}

.wh-marquee-top .wh-marquee-track {
  animation: wh-marquee-left 28s linear infinite;
}

.wh-marquee-top .wh-marquee-track span {
  color: #e4e4e4;
}

/* =========================================================
   BOTTOM MARQUEE
========================================================= */

.wh-marquee-bottom .wh-marquee-track {
  animation: wh-marquee-right 32s linear infinite;
}

.wh-marquee-bottom .wh-marquee-track span {
  color: #050505;
}

/* =========================================================
   LEFT MOVEMENT
========================================================= */

@keyframes wh-marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
   RIGHT MOVEMENT
========================================================= */

@keyframes wh-marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* =========================================================
   MARQUEE SCROLL EFFECT
========================================================= */

.wh-marquee-section.is-scrolling .wh-marquee-top .wh-marquee-track {
  animation-duration: 16s;
}

.wh-marquee-section.is-scrolling .wh-marquee-bottom .wh-marquee-track {
  animation-duration: 18s;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .wh-marquee-section {
    padding: 95px 0 100px;
  }

  .wh-marquee-track span {
    font-size: clamp(4.5rem, 12vw, 8rem);

    padding-right: 55px;
  }
}

/* =========================================================
   INTRO TABLET
========================================================= */

@media (max-width: 900px) {
  .intro {
    padding: 90px 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;

    gap: 40px;
  }

  .intro-label {
    width: 100%;
  }

  .intro-content {
    max-width: 100%;
  }

  .intro-content h2 {
    font-size: clamp(50px, 9vw, 75px);

    margin-bottom: 30px;
  }

  .intro-content p {
    max-width: 100%;

    font-size: 15px;

    line-height: 1.8;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .wh-marquee-section {
    padding: 75px 0 80px;
  }

  .wh-marquee-track span {
    font-size: clamp(3.8rem, 15vw, 6rem);

    padding-right: 40px;
  }

  .wh-marquee-top {
    margin-bottom: 6px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 550px) {
  .intro {
    padding: 70px 0;
  }

  .intro-grid {
    gap: 30px;
  }

  .intro-label {
    padding-top: 13px;
  }

  .intro-label span {
    font-size: 11px;
  }

  .intro-label p {
    font-size: 10px;

    letter-spacing: 2.5px;
  }

  .intro-content h2 {
    font-size: 48px;

    line-height: 0.95;

    letter-spacing: -0.5px;

    margin-bottom: 25px;
  }

  .intro-content p {
    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 18px;
  }

  .intro-content .text-link {
    margin-top: 10px;

    font-size: 11px;

    letter-spacing: 1.2px;
  }
}

/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .wh-marquee-section {
    padding: 65px 0 70px;
  }

  .wh-marquee-track span {
    font-size: 4rem;

    padding-right: 30px;
  }
}

.featured-work {
  width: 100%;
  background: #fff;
  color: #000;
  overflow: hidden;
}

.featured-header {
  height: 177px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e5e5e5;
}

.featured-header h2 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(70px, 8vw, 125px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -7px;
  white-space: nowrap;
}

.featured-header h2 span {
  font-size: 0.65em;
  vertical-align: top;
  margin-left: 3px;
  letter-spacing: -2px;
}

.featured-grid {
  width: min(1195px, calc(100% - 80px));
  margin: 75px auto 0;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 90px;
}

.work-card {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 19px;
}

.work-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-card:hover img {
  transform: scale(1.04);
}

.scroll-top {
  position: fixed;
  right: 40px;
  bottom: 40px;

  width: 43px;
  height: 43px;

  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #000;

  font-size: 20px;
  cursor: pointer;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Tablet */
@media (max-width: 900px) {
  .featured-header {
    height: 140px;
  }

  .featured-header h2 {
    font-size: 80px;
    letter-spacing: -5px;
  }

  .featured-grid {
    width: calc(100% - 50px);
    gap: 35px;
    margin-top: 50px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .featured-header {
    height: 110px;
    justify-content: flex-start;
    padding: 0 20px;
  }

  .featured-header h2 {
    font-size: 48px;
    letter-spacing: -3px;
  }

  .featured-grid {
    width: calc(100% - 40px);
    margin-top: 35px;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .work-card {
    border-radius: 14px;
  }

  .scroll-top {
    right: 20px;
    bottom: 20px;
  }
}
.featured-work {
    width: 100%;
    background: #fff;
    color: #000;
    overflow: hidden;

    margin-bottom: 100px;
}


.featured-header h2 {
    margin: 0;
    color: #b5b5b5;
    transition: color 0.8s ease;
}

.featured-header h2.active {
    color: #000;
}
.featured-header h2 {
    margin: 0;
    color: rgb(180, 180, 180);
}   


.featured-title {
    margin: 0;
    color: #b5b5b5;
}

.featured-title .letter {
    display: inline-block;
    color: #b5b5b5;
    transition: color 0.15s linear;
}

.featured-title span {
    display: inline-block;
}




/* =========================================================
   FEATURED WORK
========================================================= */

.featured-work {
    width: 100%;
    background: #eaeaea;
    color: #000;
    overflow: hidden;

    margin-bottom: 100px;
}


/* =========================================================
   FEATURED HEADER
========================================================= */

.featured-header {
    height: 177px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-bottom: 1px solid #e5e5e5;
}

.featured-header h2 {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;

    font-size: clamp(90px, 8vw, 125px);

    font-weight: 800;

    line-height: 0.9;

    letter-spacing: -9px;

    white-space: nowrap;

    color: #b5b5b5;
}

.featured-header h2 span {
    font-size: 0.65em;

    vertical-align: top;

    margin-left: 3px;

    letter-spacing: -2px;
}


/* =========================================================
   GRID
========================================================= */

.featured-grid {
    width: min(1195px, calc(100% - 80px));

    margin: 75px auto 0;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 90px;
}


/* =========================================================
   WORK CARD
========================================================= */

.work-card {
    position: relative;

    display: block;

    width: 100%;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 19px;

    cursor: none;

    text-decoration: none;
}


/* =========================================================
   IMAGE
========================================================= */

.work-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}


/* Image zoom */

.work-card:hover img {
    transform: scale(1.04);
}


/* =========================================================
   WHITE TITLE BAR
========================================================= */

.work-card::before {
    content: attr(data-title);

    position: absolute;

    left: 0;

    top: 50%;

    width: 100%;

    height: 70px;

    transform: translateY(-50%);

    background: rgba(255, 255, 255, 0.96);

    display: flex;

    align-items: center;
    justify-content: center;

    color: #000;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;

    font-weight: 400;

    z-index: 2;

    opacity: 0;

    transition: opacity 0.3s ease;

    pointer-events: none;
}


/* Show title */

.work-card:hover::before {
    opacity: 1;
}


/* =========================================================
   VIEW DETAILS CIRCLE
========================================================= */

.view-details {
    position: absolute;

    left: var(--mouse-x, 50%);
    top: var(--mouse-y, 50%);

    width: 100px;
    height: 100px;

    border-radius: 50%;

    background: #ffffff;

    color: #000000;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    font-weight: 400;

    line-height: 1.25;

    z-index: 5;

    pointer-events: none;

    opacity: 0;

    transform: translate(-50%, -50%);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12);

    transition:
        opacity 0.25s ease,
        width 0.25s ease,
        height 0.25s ease;
}


/* Show circle */

.work-card:hover .view-details {
    opacity: 1;
}


/* =========================================================
   SCROLL TOP
========================================================= */

.scroll-top {
    position: fixed;

    right: 40px;
    bottom: 40px;

    width: 43px;
    height: 43px;

    border: 0;

    border-radius: 50%;

    background: #fff;

    color: #000;

    font-size: 20px;

    cursor: pointer;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .featured-header {
        height: 140px;
    }

    .featured-header h2 {
        font-size: 80px;

        letter-spacing: -5px;
    }

    .featured-grid {
        width: calc(100% - 50px);

        gap: 35px;

        margin-top: 50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .featured-header {
        height: 110px;

        justify-content: flex-start;

        padding: 0 20px;
    }

    .featured-header h2 {
        font-size: 48px;

        letter-spacing: -3px;
    }

    .featured-grid {
        width: calc(100% - 40px);

        margin-top: 35px;

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .work-card {
        border-radius: 14px;

        cursor: pointer;
    }

    /*
       Disable custom cursor on touch devices
    */

    .view-details {
        display: none;
    }

    .work-card::before {
        display: none;
    }

    .scroll-top {
        right: 20px;
        bottom: 20px;
    }

}


.work-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 19px;
    cursor: none;
}



.work-card::before {
    content: attr(data-title);

    position: absolute;

    left: 0;
    top: 50%;

    width: 100%;
    height: 70px;

    transform: translateY(-50%);

    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #000000;

    font-family: Arial, Helvetica, sans-serif;

    /* Bigger */
    font-size: 22px;

    /* Thicker */
    font-weight: 700;

    letter-spacing: -0.5px;

    z-index: 2;

    opacity: 0;

    transition: opacity 0.3s ease;

    pointer-events: none;
}



/* =========================================
   SCROLL REVEAL ANIMATION
========================================= */

.work-card {
    opacity: 0;
    transition:
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.8s ease;

    will-change: transform, opacity;
}


/* Cards coming from the LEFT */

.work-card:nth-child(odd) {
    transform: translateX(-120px);
}


/* Cards coming from the RIGHT */

.work-card:nth-child(even) {
    transform: translateX(120px);
}


/* When visible */

.work-card.show {
    opacity: 1;
    transform: translateX(0);
}


/* Optional stagger effect */

.work-card:nth-child(1) {
    transition-delay: 0.05s;
}

.work-card:nth-child(2) {
    transition-delay: 0.15s;
}

.work-card:nth-child(3) {
    transition-delay: 0.25s;
}

.work-card:nth-child(4) {
    transition-delay: 0.35s;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .work-card:nth-child(odd) {
        transform: translateX(-60px);
    }

    .work-card:nth-child(even) {
        transform: translateX(60px);
    }

}


.highlights-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;

    color: #111;
    font-weight: 700;
    letter-spacing: 2px;
}


.highlight-letter {
    display: inline-block;

    color: #111;

    --glow: 0;

    transform:
        translateY(calc(var(--glow) * -5px))
        scale(calc(1 + var(--glow) * 0.12));

    text-shadow:
        0 0 calc(var(--glow) * 6px) rgba(255, 255, 255, 0.8),
        0 0 calc(var(--glow) * 15px) rgba(255, 255, 255, 0.5);

    transition:
        transform 0.15s ease-out,
        text-shadow 0.15s ease-out;

    will-change: transform, text-shadow;
}

/* =====================================================
   WHAT WE PROVIDE
   Compact + Premium + Larger Typography
===================================================== */

.provide-section {
    position: relative;
    width: 100%;
    padding: 75px 0;
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(255, 255, 255, 0.055),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 90%,
            rgba(255, 255, 255, 0.035),
            transparent 30%
        ),
        #111111;

    color: #ffffff;
    overflow: hidden;
}


/* =====================================================
   BACKGROUND TEXTURE
===================================================== */

.provide-section::before {
    content: "";
    position: absolute;
    inset: 0;

    pointer-events: none;

    opacity: 0.025;

    background-image:
        linear-gradient(
            rgba(255,255,255,.5) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.5) 1px,
            transparent 1px
        );

    background-size: 65px 65px;
}


.provide-container {
    position: relative;
    z-index: 2;

    width: min(1120px, 90%);
    margin: 0 auto;
}



/* =====================================================
   HEADER
===================================================== */

.provide-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 60px;

    margin-bottom: 40px;
}


.provide-eyebrow {
    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 14px;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 3px;

    color: #999999;
}


.provide-eyebrow::before {
    content: "";

    width: 30px;

    height: 1px;

    background: #ffffff;
}


.provide-heading h2 {
    margin: 0;

    font-size: clamp(40px, 4.5vw, 58px);

    line-height: .95;

    font-weight: 500;

    letter-spacing: -2.5px;

    color: #ffffff;
}


.provide-heading h2 span {
    color: #777777;
}


.provide-intro {
    max-width: 390px;

    margin: 0;

    font-size: 15px;

    line-height: 1.75;

    color: #a0a0a0;
}



/* =====================================================
   SERVICES GRID
===================================================== */

.provide-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}



/* =====================================================
   SERVICE CARD
===================================================== */

.provide-card {
    position: relative;

    background: #191919;

    border: 1px solid rgba(255,255,255,.10);

    overflow: hidden;

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1),
        border-color .4s ease,
        background .4s ease;
}


.provide-card:hover {
    transform: translateY(-7px);

    background: #1d1d1d;

    border-color: rgba(255,255,255,.30);
}



/* =====================================================
   SERVICE IMAGE
===================================================== */

.provide-image {
    position: relative;

    width: 100%;

    height: 175px;

    overflow: hidden;
}


.provide-image::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.05),
            rgba(0,0,0,.65)
        );
}


.provide-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    filter: grayscale(100%);

    transition:
        transform .75s cubic-bezier(.2,.7,.2,1),
        filter .5s ease;
}


.provide-card:hover .provide-image img {
    transform: scale(1.08);

    filter: grayscale(0%);
}



/* =====================================================
   NUMBER
===================================================== */

.provide-number {
    position: absolute;

    top: 14px;
    right: 14px;

    z-index: 3;

    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.4);

    border-radius: 50%;

    background: rgba(0,0,0,.3);

    backdrop-filter: blur(8px);

    font-size: 10px;

    color: #ffffff;

    transition:
        background .35s ease,
        color .35s ease,
        transform .35s ease;
}


.provide-card:hover .provide-number {
    background: #ffffff;

    color: #111111;

    transform: rotate(8deg);
}



/* =====================================================
   SERVICE CONTENT
===================================================== */

.provide-content {
    padding: 25px 23px 28px;
}


.provide-category {
    display: block;

    margin-bottom: 9px;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 2.5px;

    color: #777777;
}


.provide-content h3 {
    margin: 0 0 12px;

    font-size: 28px;

    line-height: 1.1;

    font-weight: 500;

    letter-spacing: -.8px;

    color: #ffffff;
}


/*
    Larger service description
*/

.provide-content p {
    margin: 0;

    max-width: 340px;

    font-size: 15px;

    line-height: 1.75;

    font-weight: 400;

    color: #a0a0a0;
}



/* =====================================================
   CTA
===================================================== */

.provide-footer {
    display: flex;

    align-items: center;

    gap: 30px;

    margin-top: 34px;
}


.provide-line {
    flex: 1;

    height: 1px;

    background: rgba(255,255,255,.12);
}


.provide-button {
    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    min-width: 160px;

    padding: 13px 15px 13px 20px;

    border: 1px solid rgba(255,255,255,.30);

    color: #ffffff;

    text-decoration: none;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 1.8px;

    text-transform: uppercase;

    overflow: hidden;

    transition:
        color .4s ease,
        border-color .4s ease;
}


.provide-button::before {
    content: "";

    position: absolute;

    inset: 0;

    background: #ffffff;

    transform: translateX(-101%);

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1);

    z-index: 0;
}


.provide-button span {
    position: relative;

    z-index: 1;
}


.provide-button:hover {
    color: #111111;

    border-color: #ffffff;
}


.provide-button:hover::before {
    transform: translateX(0);
}


.provide-arrow {
    font-size: 19px;

    line-height: 1;

    transition: transform .35s ease;
}


.provide-button:hover .provide-arrow {
    transform: translateX(5px);
}



/* =====================================================
   SCROLL REVEAL
===================================================== */

.reveal-provide {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.2,.7,.2,1);
}


.reveal-provide.provide-visible {
    opacity: 1;

    transform: translateY(0);
}


/* Stagger */

.provide-grid .provide-card:nth-child(1) {
    transition-delay: .05s;
}


.provide-grid .provide-card:nth-child(2) {
    transition-delay: .15s;
}


.provide-grid .provide-card:nth-child(3) {
    transition-delay: .25s;
}



/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .provide-section {
        padding: 65px 0;
    }


    .provide-header {
        display: block;

        margin-bottom: 35px;
    }


    .provide-intro {
        margin-top: 20px;

        max-width: 600px;

        font-size: 15px;
    }


    .provide-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .provide-card:last-child {
        grid-column: 1 / -1;

        width: calc(50% - 8px);

        margin: 0 auto;
    }


    .provide-content p {
        font-size: 14px;
    }
}



/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .provide-section {
        padding: 55px 0;
    }


    .provide-container {
        width: 88%;
    }


    .provide-header {
        margin-bottom: 30px;
    }


    .provide-heading h2 {
        font-size: 39px;

        letter-spacing: -1.8px;
    }


    .provide-intro {
        font-size: 14px;

        line-height: 1.7;

        margin-top: 18px;
    }


    .provide-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .provide-card:last-child {
        grid-column: auto;

        width: 100%;
    }


    .provide-image {
        height: 175px;
    }


    .provide-content {
        padding: 23px 21px 26px;
    }


    .provide-content h3 {
        font-size: 27px;

        margin-bottom: 11px;
    }


    .provide-content p {
        max-width: none;

        font-size: 15px;

        line-height: 1.7;
    }


    .provide-footer {
        display: block;

        margin-top: 27px;
    }


    .provide-line {
        margin-bottom: 20px;
    }


    .provide-button {
        width: 100%;
    }
}



/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 380px) {

    .provide-heading h2 {
        font-size: 35px;
    }


    .provide-image {
        height: 155px;
    }


    .provide-content p {
        font-size: 14px;
    }
}











/* =====================================================
   MEDIA / DIGITAL MOVING BACKGROUND
   ADD THIS AFTER YOUR EXISTING PROVIDE CSS
===================================================== */

.provide-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(255, 255, 255, 0.07),
            transparent 25%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(255, 255, 255, 0.05),
            transparent 28%
        ),
        #0d0d0d;
}


/* =====================================================
   DIGITAL GRID
===================================================== */

.provide-section::before {
    content: "";
    position: absolute;
    inset: -100px;
    z-index: -3;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.035) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    transform: perspective(500px) rotateX(55deg) scale(1.5);

    transform-origin: center bottom;

    animation: mediaGridMove 18s linear infinite;
}


@keyframes mediaGridMove {

    0% {
        background-position:
            0 0,
            0 0;
    }

    100% {
        background-position:
            0 110px,
            110px 0;
    }

}


/* =====================================================
   MOVING LIGHT / SCANNER
===================================================== */

.provide-section::after {
    content: "";

    position: absolute;

    width: 45%;
    height: 180%;

    top: -40%;
    left: -60%;

    z-index: -2;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.045),
        rgba(255,255,255,0.09),
        rgba(255,255,255,0.045),
        transparent
    );

    transform: rotate(18deg);

    filter: blur(15px);

    animation: mediaScanner 10s ease-in-out infinite;
}


@keyframes mediaScanner {

    0% {
        left: -60%;
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        left: 110%;
        opacity: .8;
    }

    70% {
        opacity: 0;
    }

    100% {
        left: 110%;
        opacity: 0;
    }

}


/* =====================================================
   FLOATING MEDIA PARTICLES
===================================================== */

.provide-container {
    position: relative;
    z-index: 5;
}


/* Decorative floating dots */

.provide-container::before,
.provide-container::after {
    content: "";

    position: absolute;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        120px 40px 0 rgba(255,255,255,.18),
        240px 170px 0 rgba(255,255,255,.10),
        380px 80px 0 rgba(255,255,255,.16),
        510px 230px 0 rgba(255,255,255,.08),
        680px 50px 0 rgba(255,255,255,.15),
        800px 190px 0 rgba(255,255,255,.08),
        930px 100px 0 rgba(255,255,255,.13);

    opacity: .5;

    pointer-events: none;

    animation: mediaParticles 8s ease-in-out infinite alternate;
}


.provide-container::before {
    top: 30px;
    left: 0;
}


.provide-container::after {
    bottom: 50px;
    right: 0;

    animation-delay: -4s;
}


@keyframes mediaParticles {

    0% {
        transform: translate3d(0, 15px, 0);
        opacity: .25;
    }

    50% {
        opacity: .7;
    }

    100% {
        transform: translate3d(20px, -25px, 0);
        opacity: .35;
    }

}


/* =====================================================
   MEDIA SIGNAL LINES
===================================================== */

.provide-grid {
    position: relative;
}


.provide-grid::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    right: -100px;
    top: -100px;

    border: 1px solid rgba(255,255,255,.08);

    border-radius: 50%;

    box-shadow:
        0 0 0 25px rgba(255,255,255,.018),
        0 0 0 50px rgba(255,255,255,.012),
        0 0 0 75px rgba(255,255,255,.008);

    animation: signalPulse 6s ease-in-out infinite;

    pointer-events: none;
}


@keyframes signalPulse {

    0%,
    100% {
        transform: scale(.85);
        opacity: .3;
    }

    50% {
        transform: scale(1.08);
        opacity: .8;
    }

}


/* =====================================================
   MOVING DIGITAL DASHES
===================================================== */

.provide-grid::after {
    content: "";

    position: absolute;

    left: -20%;
    bottom: -25px;

    width: 140%;

    height: 1px;

    background: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 18px,
        rgba(255,255,255,.18) 18px,
        rgba(255,255,255,.18) 35px,
        transparent 35px,
        transparent 55px
    );

    animation: digitalLine 7s linear infinite;

    pointer-events: none;
}


@keyframes digitalLine {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(110px);
    }

}


/* =====================================================
   CARD GLOW
===================================================== */

.provide-card {
    position: relative;
    z-index: 2;
}


.provide-card::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -100px;
    bottom: -100px;

    border-radius: 50%;

    background: rgba(255,255,255,.035);

    filter: blur(35px);

    transition:
        transform .7s ease,
        opacity .7s ease;

    pointer-events: none;
}


.provide-card:hover::before {
    transform: translate(80px, -70px);
    opacity: 1;
}


/* =====================================================
   FLOATING DIGITAL CODE / MEDIA MARKERS
===================================================== */

.provide-section .provide-header::after {
    content: "MEDIA  //  DIGITAL  //  CREATIVE  //  VISUAL  //  WEB";

    position: absolute;

    right: 4%;
    top: 22px;

    font-family: monospace;

    font-size: 8px;

    letter-spacing: 4px;

    color: rgba(255,255,255,.10);

    white-space: nowrap;

    animation: mediaTextMove 12s linear infinite;

    pointer-events: none;
}


@keyframes mediaTextMove {

    0% {
        transform: translateX(0);
        opacity: .15;
    }

    50% {
        transform: translateX(-35px);
        opacity: .4;
    }

    100% {
        transform: translateX(0);
        opacity: .15;
    }

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {

    .provide-section::before {
        background-size: 40px 40px;
    }

    .provide-section .provide-header::after {
        display: none;
    }

    .provide-grid::before {
        width: 150px;
        height: 150px;
    }

}


@media (prefers-reduced-motion: reduce) {

    .provide-section::before,
    .provide-section::after,
    .provide-container::before,
    .provide-container::after,
    .provide-grid::before,
    .provide-grid::after,
    .provide-section .provide-header::after {

        animation: none !important;
    }

}



































/* =====================================================
   ABOUT US
   WHITE / PREMIUM / COMPACT VERSION
===================================================== */

.about-media-section {

    position: relative;

    width: 100%;

    padding: 75px 0;

    background: #eaeaea;

    color: #111111;

    overflow: hidden;

    isolation: isolate;
}


/* =====================================================
   SUBTLE DIGITAL BACKGROUND
===================================================== */

.about-media-bg {

    position: absolute;

    inset: 0;

    z-index: -1;

    opacity: .55;

    background-image:
        linear-gradient(
            rgba(0,0,0,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(0,0,0,.025) 1px,
            transparent 1px
        );

    background-size: 65px 65px;

    transform:
        perspective(700px)
        rotateX(55deg)
        scale(1.4);

    transform-origin: center bottom;

    animation: aboutGridMove 22s linear infinite;
}


@keyframes aboutGridMove {

    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 130px;
    }

}


/* =====================================================
   CONTAINER
===================================================== */

.about-media-container {

    position: relative;

    width: min(1120px, 90%);

    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.about-media-header {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 40px;

    margin-bottom: 45px;

    padding-bottom: 20px;

    border-bottom: 1px solid #dddddd;
}


.about-eyebrow {

    display: flex;

    align-items: center;

    gap: 11px;

    margin-bottom: 8px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #666666;
}


.about-eyebrow span {

    width: 32px;

    height: 2px;

    background: #111111;

    display: block;
}


.about-media-header h2 {

    margin: 0;

    font-size: clamp(55px, 7vw, 90px);

    line-height: .82;

    font-weight: 600;

    letter-spacing: -5px;

    color: #111111;
}


.about-media-header h2 em {

    font-style: normal;

    color: #999999;
}


/* =====================================================
   MAIN CONTENT
===================================================== */

.about-media-content {

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    gap: 65px;

    align-items: center;
}


/* =====================================================
   IMAGE
===================================================== */

.about-media-visual {

    position: relative;

    width: 100%;
}


.about-image-frame {

    position: relative;

    width: 100%;

    height: 410px;

    overflow: hidden;

    background: #eeeeee;

    border: 1px solid #dddddd;
}


.about-image-frame img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    filter: grayscale(100%);

    transform: scale(1.02);

    transition:
        transform 1s cubic-bezier(.2,.7,.2,1),
        filter .7s ease;
}


.about-image-frame:hover img {

    transform: scale(1.07);

    filter: grayscale(0%);
}


/* =====================================================
   IMAGE OVERLAY
===================================================== */

.about-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.65),
            transparent 60%
        );

    pointer-events: none;
}


/* =====================================================
   IMAGE LABEL
===================================================== */

.about-image-label {

    position: absolute;

    left: 20px;

    bottom: 18px;

    color: #ffffff;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2.5px;
}


/* =====================================================
   IMAGE NUMBER
===================================================== */

.about-image-number {

    position: absolute;

    top: 17px;

    right: 17px;

    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.7);

    border-radius: 50%;

    background: rgba(0,0,0,.25);

    backdrop-filter: blur(8px);

    color: #ffffff;

    font-size: 10px;

    font-weight: 600;
}


/* =====================================================
   TEXT
===================================================== */

.about-media-text {

    max-width: 560px;
}


.about-small-title {

    display: block;

    margin-bottom: 15px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #777777;
}


.about-media-text h3 {

    margin: 0 0 22px;

    font-size: clamp(42px, 4vw, 58px);

    line-height: 1.02;

    font-weight: 600;

    letter-spacing: -2.2px;

    color: #111111;
}


.about-media-text h3 span {

    display: block;

    color: #777777;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.about-media-text > p {

    margin: 0 0 17px;

    max-width: 540px;

    font-size: 17px;

    line-height: 1.75;

    font-weight: 400;

    color: #555555;
}


/* =====================================================
   STATS
===================================================== */

.about-stats {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    margin-top: 27px;

    margin-bottom: 27px;

    border-top: 1px solid #dddddd;

    border-bottom: 1px solid #dddddd;
}


.about-stat {

    display: flex;

    align-items: center;

    gap: 11px;

    padding: 17px 12px 17px 0;
}


.about-stat:not(:last-child) {

    border-right: 1px solid #dddddd;
}


.about-stat strong {

    font-size: 20px;

    font-weight: 600;

    color: #111111;
}


.about-stat span {

    font-size: 10px;

    line-height: 1.45;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    color: #777777;
}


/* =====================================================
   BUTTON
===================================================== */

.about-media-button {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: 45px;

    min-width: 220px;

    padding: 15px 17px 15px 20px;

    border: 1px solid #222222;

    color: #111111;

    text-decoration: none;

    overflow: hidden;

    transition:
        color .35s ease,
        border-color .35s ease;
}


.about-media-button::before {

    content: "";

    position: absolute;

    inset: 0;

    background: #111111;

    transform: translateX(-101%);

    transition:
        transform .45s cubic-bezier(.2,.7,.2,1);

    z-index: 0;
}


.about-media-button span {

    position: relative;

    z-index: 1;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.about-media-button i {

    position: relative;

    z-index: 1;

    font-size: 13px;

    transition: transform .35s ease;
}


.about-media-button:hover {

    color: #ffffff;

    border-color: #111111;
}


.about-media-button:hover::before {

    transform: translateX(0);
}


.about-media-button:hover i {

    transform: translateX(6px);
}


/* =====================================================
   BOTTOM STATEMENT
===================================================== */

.about-media-bottom {

    display: grid;

    grid-template-columns: 160px 1fr;

    align-items: center;

    gap: 40px;

    margin-top: 55px;

    padding-top: 22px;

    border-top: 1px solid #dddddd;
}


.about-media-bottom > span {

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: #888888;
}


.about-media-bottom p {

    margin: 0;

    font-size: clamp(23px, 2.7vw, 34px);

    line-height: 1.25;

    font-weight: 400;

    letter-spacing: -.7px;

    color: #777777;
}


.about-media-bottom strong {

    color: #111111;

    font-weight: 600;
}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.about-reveal {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .8s ease,
        transform .9s cubic-bezier(.2,.7,.2,1);
}


.about-reveal.about-visible {

    opacity: 1;

    transform: translateY(0);
}


.about-media-visual {

    transition-delay: .05s;
}


.about-media-text {

    transition-delay: .15s;
}


.about-media-bottom {

    transition-delay: .25s;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .about-media-section {

        padding: 65px 0;
    }


    .about-media-content {

        gap: 40px;
    }


    .about-image-frame {

        height: 360px;
    }


    .about-media-text h3 {

        font-size: 42px;
    }


    .about-media-text > p {

        font-size: 16px;

        line-height: 1.7;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .about-media-section {

        padding: 55px 0;
    }


    .about-media-container {

        width: 88%;
    }


    .about-media-header {

        display: block;

        margin-bottom: 35px;
    }


    .about-eyebrow {

        margin-bottom: 20px;
    }


    .about-media-header h2 {

        font-size: 62px;

        letter-spacing: -4px;
    }


    .about-media-content {

        grid-template-columns: 1fr;

        gap: 32px;
    }


    .about-image-frame {

        height: 330px;
    }


    .about-media-text {

        max-width: none;
    }


    .about-small-title {

        font-size: 10px;

        margin-bottom: 13px;
    }


    .about-media-text h3 {

        font-size: 39px;

        line-height: 1.04;

        margin-bottom: 20px;
    }


    .about-media-text > p {

        font-size: 16px;

        line-height: 1.75;

        margin-bottom: 15px;
    }


    .about-stats {

        margin-top: 25px;

        margin-bottom: 25px;
    }


    .about-stat {

        display: block;

        padding: 16px 8px;
    }


    .about-stat strong {

        display: block;

        margin-bottom: 6px;
    }


    .about-stat span {

        font-size: 8px;
    }


    .about-media-button {

        width: 100%;
    }


    .about-media-bottom {

        grid-template-columns: 1fr;

        gap: 13px;

        margin-top: 50px;
    }


    .about-media-bottom p {

        font-size: 24px;

        line-height: 1.3;
    }

}


/* =====================================================
   SMALL PHONES
===================================================== */

@media (max-width: 400px) {

    .about-media-section {

        padding: 50px 0;
    }


    .about-media-header h2 {

        font-size: 54px;

        letter-spacing: -3px;
    }


    .about-image-frame {

        height: 290px;
    }


    .about-media-text h3 {

        font-size: 34px;
    }


    .about-media-text > p {

        font-size: 15px;

        line-height: 1.7;
    }


    .about-media-bottom p {

        font-size: 21px;
    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    .about-media-bg {

        animation: none;
    }


    .about-reveal {

        opacity: 1;

        transform: none;

        transition: none;
    }


    .about-image-frame img {

        transition: none;
    }

}


/* =====================================================
   WELLS HAMILTON MEDIA MARQUEE
   SIZE ONLY
===================================================== */

.wh-marquee-section {
    width: 100%;
    height: auto;
    padding: 5px 0;
    margin: 0;
    overflow: hidden;
}

.wh-marquee-row {
    height: auto;
    min-height: 0;
    padding: 2px 0;
    margin: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.wh-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    font-size: clamp(18px, 2vw, 28px);
    line-height: 1;
    font-weight: 500;
}

.wh-marquee-track span {
    display: inline-block;
    margin-right: 28px;
    line-height: 1;
}