
    @font-face {
      font-family: 'HelveticaBold';
      src: url('fonts/Helvetica-Bold.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
    }

    :root {
      --brand-red: #C0392B;
      --brand-deep: #9B2D20;
      --cta-orange: #E8500A;
      --cta-hover: #CC4408;
      --warm-100: #FFFFFF;
      --warm-200: #FFFFFF;
      --warm-300: #FFFFFF;
      --warm-400: #FFFFFF;
      --card-bg: #FFFFFF;
      --ink-900: #1C0A00;
      --ink-700: #3D1E0A;
      --ink-500: #000000;
      --ink-300: #A07050;
      --ink-100: #D4B8A0;
      --white: #FFFFFF;
      --font-head: 'HelveticaBold', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --radius-card: 10px;
      --radius-btn: 26px;
      --section-pad: 96px;
      --max-w: 1120px;
    }

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

    html {
      scroll-behavior: smooth;
      overflow-x: clip;
      width: 100%;
      max-width: 100%;
    }

    body {
      font-family: var(--font-body);
      background: var(--warm-100);
      color: var(--ink-500);
      overflow-x: clip;
      width: 100%;
      max-width: 100%;
    }

    body > section:not(#hero-new) {
      content-visibility: auto;
      contain-intrinsic-size: 1000px;
    }

    /* make images reliably responsive */
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: var(--font-head);
      font-weight: 800;
      line-height: 1.15;
      color: var(--ink-900);
    }

    h1 {
      font-size: clamp(2.1rem, 4.8vw, 3.5rem);
    }

    h2 {
      font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    }

    h3 {
      font-size: 1.08rem;
      font-weight: 700;
    }

    .btn {
      display: inline-block;
      padding: 14px 30px;
      border-radius: var(--radius-btn);
      font-family: var(--font-head);
      font-weight: 700;
      font-size: 0.95rem;
      cursor: pointer;
      border: none;
      text-decoration: none;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s;
      letter-spacing: 0.01em;
    }

    .btn:hover {
      transform: scale(1.03);
    }

    .btn-primary {
      background: var(--cta-orange);
      color: #fff;
      box-shadow: 0 4px 18px rgba(232, 80, 10, 0.30);
    }

    .btn-primary:hover {
      background: var(--cta-hover);
      box-shadow: 0 6px 26px rgba(232, 80, 10, 0.45);
    }

    .btn-outline {
      background: transparent;
      color: var(--brand-red);
      border: 2px solid var(--brand-red);
    }

    .btn-outline:hover {
      background: var(--brand-red);
      color: #fff;
    }

    .label {
      display: inline-block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--brand-red);
      margin-bottom: 10px;
    }

    .section-header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 56px;
    }

    .section-header h2 {
      margin-bottom: 14px;
    }

    .section-header p {
      color: var(--ink-500);
      font-size: 1.03rem;
      line-height: 1.75;
    }

    .reveal {
      --reveal-x: 0;
      --reveal-y: 30px;
      --reveal-scale: 1;
      opacity: 0;
      transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
      transition:
        opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
      transition-delay: var(--reveal-delay, 0s);
    }

    .reveal.visible {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }

    .reveal[data-reveal="fade"] {
      --reveal-y: 0;
    }

    .reveal[data-reveal="soft-scale"] {
      --reveal-y: 18px;
      --reveal-scale: 0.975;
    }

    .reveal[data-reveal="slide-left"] {
      --reveal-x: -34px;
      --reveal-y: 0;
    }

    .reveal[data-reveal="slide-right"] {
      --reveal-x: 34px;
      --reveal-y: 0;
    }

    .reveal[data-reveal="rise-soft"] {
      --reveal-y: 22px;
      --reveal-scale: 0.99;
    }

    .hero-header {
      animation: heroFadeDown 0.82s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .hero-left>* {
      opacity: 0;
      animation: heroCopyIn 0.82s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .hero-left>*:nth-child(1) {
      animation-delay: 0.24s;
    }

    .hero-left>*:nth-child(2) {
      animation-delay: 0.36s;
    }

    .hero-left>*:nth-child(3) {
      animation-delay: 0.48s;
    }

    .hero-giant-text h1 {
      animation: heroWordIn 1s 0.22s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    .hero-bg-image img {
      animation: heroImageIn 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    @keyframes heroFadeDown {
      from {
        opacity: 0;
        transform: translate3d(0, -18px, 0);
      }

      to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }
    }

    @keyframes heroCopyIn {
      from {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
      }

      to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }
    }

    @keyframes heroWordIn {
      from {
        opacity: 0;
        transform: translate3d(0, 28px, 0);
      }

      to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
      }
    }

    @keyframes heroImageIn {
      from {
        opacity: 0;
        transform: scale(1.025);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

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

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

      .reveal {
        opacity: 1;
        transform: none;
      }
    }

    .d1 {
      transition-delay: 0.08s;
    }

    .d2 {
      transition-delay: 0.16s;
    }

    .d3 {
      transition-delay: 0.24s;
    }

    .d4 {
      transition-delay: 0.32s;
    }

    .d5 {
      transition-delay: 0.40s;
    }

    /* NAVBAR */
    #navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: 82px;
      background: linear-gradient(to bottom, rgba(14, 6, 2, 0.42), rgba(14, 6, 2, 0.12));
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding: 0 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.25s, box-shadow 0.25s, height 0.25s;
    }

    #navbar::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      height: 46px;
      background: linear-gradient(to bottom, rgba(14, 6, 2, 0.16), transparent);
      pointer-events: none;
    }

    #navbar.scrolled {
      height: 70px;
      background: rgba(14, 6, 2, 0.48);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
    }

    .nav-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-head);
      font-weight: 900;
      font-size: 1.2rem;
      color: #fff;
      text-decoration: none;
      letter-spacing: -0.02em;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.32);
    }

    .nav-logo img {
      width: 36px;
      height: 36px;
      object-fit: contain;
      display: block;
      border-radius: 7px;
      filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.25));
    }

    .nav-logo-text {
      color: #fff;
    }

    .nav-logo-text span {
      color: #ff7a20;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      color: rgba(255, 255, 255, 0.82);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 600;
      transition: color 0.2s;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.26);
    }

    .nav-links a:hover {
      color: #fff;
    }

    .nav-cta {
      background: var(--cta-orange) !important;
      color: #fff !important;
      padding: 9px 20px;
      border-radius: 20px;
      font-weight: 700 !important;
    }

    .nav-cta:hover {
      transform: scale(1.03);
      box-shadow: 0 4px 14px rgba(232, 80, 10, 0.35);
      color: #fff !important;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 82px;
      left: 0;
      right: 0;
      background: rgba(14, 6, 2, 0.86);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 24px 5%;
      z-index: 999;
      flex-direction: column;
      gap: 4px;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      color: rgba(255, 255, 255, 0.82);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 600;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mobile-menu .btn-primary {
      text-align: center;
      margin-top: 8px;
    }

    /* HERO */

    #hero-new {
      min-height: 100vh;
      background: transparent;
      padding: 0;
      overflow: hidden;
    }

    .hero-shell {
      position: relative;
      min-height: 100vh;
      border-radius: 0 0 60px 60px;
      overflow: hidden;
      background: #e9e9e9;
      padding: 40px 60px 0;
    }

    /* background image */
    .hero-bg-image {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
    }

    .hero-bg-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    /* giant text */
    .hero-giant-text {
      position: absolute;
      bottom: -2.4vw;
      left: 50%;
      width: 100%;
      z-index: 3;
      pointer-events: none;
      text-align: center;
      transform: translateX(-50%);
    }

    .hero-giant-text h1 {
      font-family: 'Poppins', var(--font-head), sans-serif;
      font-size: clamp(8.6rem, 31vw, 29.9rem);
      line-height: 0.7;
      color: #fff;
      font-weight: 400;
      letter-spacing: -.105em;
      text-transform: none;
      white-space: nowrap;
    }

    /* prevent giant hero word from breaking layout on small viewports */
    @media (max-width: 640px) {
      .hero-giant-text,
      .hero-giant-text h1 {
        display: none;
      }
    }

    /* content */
    .hero-content-wrap {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      min-height: calc(100vh - 40px);
    }

    .hero-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .hero-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: #111;
    }

    .hero-logo img {
      width: 42px;
      height: 42px;
      object-fit: contain;
      display: block;
      border-radius: 14px;
    }

    .hero-logo-name {
      color: #111;
      font-family: var(--font-head);
      font-size: 0.95rem;
      font-weight: 800;
      line-height: 1;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .hero-nav {
      display: flex;
      gap: 36px;
    }

    .hero-nav a {
      text-decoration: none;
      color: rgba(0, 0, 0, .75);
      font-size: .85rem;
      font-weight: 700;
    }

    .hero-talk-btn {
      border: 1px solid #111;
      border-radius: 999px;
      padding: 14px 34px;
      text-decoration: none;
      color: #111;
      font-weight: 700;
    }

    .hero-body {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex: 1;
    }

    .hero-left {
      max-width: 420px;
      transform: translateY(-16vh);
    }

    .hero-tag {
      color: #FF5A1F;
      text-transform: uppercase;
      letter-spacing: 3px;
      font-size: .72rem;
      font-weight: 900;
    }

    .hero-left h2 {
      margin: 18px 0;
      line-height: .9;
    }

    .hero-left h2 span {
      display: block;
      font-size: clamp(1.875rem, 3.75vw, 3.125rem);
    }

    .hero-left .muted {
      color: #8d8d8d;
      white-space: nowrap;
    }

    .hero-begin-btn {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      background: white;
      padding: 10px 24px 10px 10px;
      border-radius: 999px;
      text-decoration: none;
      margin-top: 24px;
    }

    .hero-thumb {
      width: 55px;
      height: 36px;
      border-radius: 999px;
      overflow: hidden;
    }

    .hero-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-case-card {
      width: 300px;
      background: rgba(255, 255, 255, .4);
      border-radius: 40px;
      padding: 14px;
      backdrop-filter: blur(20px);
    }

    .hero-card-image {
      position: relative;
      aspect-ratio: 4/5;
      border-radius: 30px;
      overflow: hidden;
    }

    .hero-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-card-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top,
          rgba(0, 0, 0, .9),
          rgba(0, 0, 0, .15));
    }

    /* INTRO MISSION */
    #intro-mission {
      position: relative;
      overflow: hidden;
      min-height: 680px;
      padding: 88px 5% 78px;
      background: #ffffff;
      color: #bf2f1f;
      isolation: isolate;
    }

    .intro-mission-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
      gap: clamp(36px, 7vw, 110px);
      max-width: 1180px;
      min-height: 520px;
      margin: 0 auto;
      align-items: end;
    }

    .intro-mission-title {
      align-self: start;
      padding-top: 18px;
    }

    .intro-mission-title .intro-kicker {
      display: block;
      margin-bottom: 28px;
      color: #bf2f1f;
      font-family: var(--font-body);
      font-size: 0.76rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .intro-mission-title h2 {
      color: #d73520;
      font-family: var(--font-head);
      font-size: clamp(3.1rem, 7vw, 6.5rem);
      line-height: 0.82;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .intro-mission-title h2 span {
      display: block;
    }

    .intro-mission-table {
      padding-bottom: 54px;
    }

    .intro-row {
      display: grid;
      grid-template-columns: 140px minmax(0, 1fr);
      align-items: end;
      gap: 28px;
      min-height: 118px;
      padding: 30px 0 8px;
      border-top: 2px solid rgba(191, 47, 31, 0.62);
    }

    .intro-row:last-child {
      border-bottom: 2px solid rgba(191, 47, 31, 0.62);
    }

    .intro-row-label {
      color: #bf2f1f;
      font-family: var(--font-head);
      font-size: 0.86rem;
      line-height: 1;
      text-transform: uppercase;
    }

    .intro-row-copy {
      max-width: 420px;
      color: #bf2f1f;
      font-family: var(--font-head);
      font-size: clamp(0.86rem, 1.15vw, 1.05rem);
      line-height: 1.05;
      text-transform: uppercase;
    }

    .intro-row-copy strong {
      font-weight: 900;
    }

    /* CULTURE */
    #culture {
      background: #fff;
      padding: 110px 5%;
      overflow: hidden;
    }

    .culture-inner {
      display: grid;
      grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
      align-items: center;
      gap: clamp(42px, 8vw, 120px);
      max-width: 1160px;
      margin: 0 auto;
    }

    .culture-visual {
      width: 100%;
      max-width: 440px;
      justify-self: start;
    }

    .culture-visual img {
      display: block;
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    .culture-copy {
      text-align: left;
      max-width: 800px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
    }

    /* LOGO STRIP */
    #clients {
      background: var(--warm-200);
      padding: 44px 5%;
      overflow: hidden;
      border-top: 1px solid var(--warm-300);
      border-bottom: 1px solid var(--warm-300);
    }

    #clients .trust-pill {
      background: var(--white);
      border: 1px solid var(--warm-300);
      color: var(--ink-700);
      box-shadow: 0 8px 22px rgba(28, 10, 0, 0.06);
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
    }

    #clients .trust-pill strong {
      color: var(--cta-orange);
    }

    .clients-heading {
      text-align: center;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--ink-300);
      margin-bottom: 30px;
    }

    .marquee-wrapper {
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    }

    .marquee-track {
      display: flex;
      gap: 0;
      width: max-content;
      animation: marquee 25s linear infinite;
      will-change: transform;
    }

    .marquee-track:hover {
      animation-play-state: paused;
    }

    @keyframes marquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 40px;
      min-width: 220px;
      height: 72px;
    }

    .logo-item img {
      max-height: 64px;
      width: auto;
      filter: grayscale(100%) opacity(70%);
      transition: filter 0.3s ease;
      cursor: default;
    }

    .logo-item img:hover {
      filter: grayscale(0%) opacity(100%);
    }

    /* SERVICES */
    #services {
      padding: 88px 5% 96px;
      background: var(--warm-100);
      color: var(--ink-500);
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    #services::before {
      content: none;
    }

    #services::after {
      content: none;
    }

    #services .section-header {
      max-width: 720px;
      margin-bottom: 42px;
    }

    #services .label {
      color: var(--cta-orange);
      margin-bottom: 14px;
      position: relative;
    }

    #services .label::after {
      content: '';
      display: block;
      width: 34px;
      height: 2px;
      margin: 10px auto 0;
      background: var(--cta-orange);
    }

    .services-title {
      color: var(--ink-900);
      font-family: Georgia, 'Times New Roman', serif;
      font-size: clamp(2.55rem, 5vw, 4.35rem);
      line-height: 0.96;
      letter-spacing: 0;
      text-shadow: 0 8px 28px rgba(232, 80, 10, 0.08);
    }

    .services-title em {
      display: block;
      color: var(--cta-orange);
      font-style: italic;
    }

    #services .section-header p {
      color: var(--ink-500);
      max-width: 560px;
      margin: 22px auto 0;
      line-height: 1.75;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      max-width: var(--max-w);
      margin: 0 auto;
    }

    .service-card {
      min-height: 218px;
      background: #ffffff;
      border-radius: 16px;
      padding: 26px 26px 58px;
      border: 1px solid rgba(232, 80, 10, 0.18);
      transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
      cursor: default;
      position: relative;
      overflow: visible;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 18px 44px rgba(28, 10, 0, 0.08);
    }

    .service-card::before {
      content: none;
    }

    .service-card:hover {
      transform: translateY(-6px);
      border-color: rgba(232, 80, 10, 0.5);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95), 0 24px 62px rgba(232, 80, 10, 0.12), 0 18px 44px rgba(28, 10, 0, 0.12);
    }

    .service-card:hover .service-arrow {
      color: #fff;
      background: var(--cta-orange);
      transform: translateX(4px);
    }

    .service-content {
      position: relative;
      z-index: 2;
      width: 58%;
    }

    .service-icon {
      width: 62px;
      height: 58px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(232, 80, 10, 0.16);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      box-shadow: 0 10px 24px rgba(28, 10, 0, 0.08);
      overflow: hidden;
    }

    .service-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      padding: 8px;
    }

    .service-card h3 {
      color: var(--ink-900);
      margin-bottom: 16px;
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 1.18rem;
      line-height: 1.22;
    }

    .service-card p {
      color: var(--ink-500);
      font-size: 0.84rem;
      line-height: 1.72;
    }

    .service-arrow {
      position: absolute;
      left: 26px;
      bottom: 24px;
      z-index: 3;
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(232, 80, 10, 0.1);
      color: var(--cta-orange);
      font-size: 1.2rem;
      font-weight: 800;
      transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
    }

    .service-art {
      position: absolute;
      right: 18px;
      bottom: 14px;
      width: 36%;
      height: 72%;
      z-index: 1;
      opacity: 0.9;
    }

    .service-logo-art {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 14px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(232, 80, 10, 0.16);
      box-shadow: 0 16px 34px rgba(28, 10, 0, 0.08);
    }

    .service-logo-art img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .art-bars {
      display: flex;
      align-items: flex-end;
      gap: 10px;
      justify-content: flex-end;
    }

    .art-bars span {
      width: 28px;
      border-radius: 8px 8px 0 0;
      background: linear-gradient(#ff8a36, #8f2b0a);
      box-shadow: 0 0 22px rgba(232, 80, 10, 0.35);
    }

    .art-bars span:nth-child(1) {
      height: 46%;
      opacity: 0.32;
    }

    .art-bars span:nth-child(2) {
      height: 68%;
    }

    .art-bars span:nth-child(3) {
      height: 86%;
    }

    .art-bars span:nth-child(4) {
      height: 100%;
    }

    .art-phone {
      right: 10px;
      bottom: 9px;
      width: 102px;
      height: 150px;
      padding: 22px 9px 12px;
      border: 3px solid rgba(28, 10, 0, 0.68);
      border-radius: 20px;
      transform: rotate(8deg);
      background: linear-gradient(160deg, #fffaf6 0 12%, #1a1411 12% 100%);
      box-shadow: 0 0 28px rgba(232, 80, 10, 0.18), inset 0 0 0 1px rgba(0, 0, 0, 0.22);
    }

    .art-phone::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 8px;
      width: 28px;
      height: 4px;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.38);
      transform: translateX(-50%);
    }

    .art-phone::after {
      content: '\2665';
      position: absolute;
      right: -13px;
      bottom: 28px;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 9px;
      background: linear-gradient(145deg, #ff8841, #d9400b);
      color: #fff;
      font-size: 1.15rem;
      box-shadow: 0 10px 24px rgba(232, 80, 10, 0.36);
    }

    .art-phone span {
      display: block;
      float: left;
      width: calc((100% - 8px) / 3);
      aspect-ratio: 1;
      margin: 0 4px 4px 0;
      border-radius: 4px;
      background: linear-gradient(145deg, #6f3322, #111), radial-gradient(circle at 50% 32%, #f0b08c 0 16%, #352018 17% 31%, transparent 32%);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    }

    .art-phone span:nth-child(3n) {
      margin-right: 0;
    }

    .art-phone span:nth-child(even) {
      background: linear-gradient(145deg, #161616, #6f2a12);
    }

    .art-chart {
      width: 132px;
      height: 122px;
      padding: 14px 14px 12px;
      border: 1px solid rgba(232, 80, 10, 0.18);
      border-radius: 14px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 232, 212, 0.5));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 28px rgba(28, 10, 0, 0.08);
    }

    .chart-kicker {
      display: block;
      color: var(--ink-500);
      font-size: 0.55rem;
      margin-bottom: 4px;
    }

    .chart-value {
      display: block;
      color: #39d56d;
      font-family: var(--font-head);
      font-size: 1.25rem;
      margin-bottom: 8px;
    }

    .art-chart svg {
      width: 100%;
      height: 58px;
      overflow: visible;
    }

    .art-chart .chart-grid {
      stroke: rgba(28, 10, 0, 0.12);
      stroke-width: 1;
    }

    .art-chart .chart-line {
      fill: none;
      stroke: var(--cta-orange);
      stroke-width: 4;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 0 6px rgba(232, 80, 10, 0.58));
    }

    .art-chart .chart-fill {
      fill: rgba(232, 80, 10, 0.14);
    }

    .art-site {
      border-radius: 14px;
      border: 1px solid rgba(28, 10, 0, 0.16);
      background: linear-gradient(160deg, #1b1715, #080606);
      transform: perspective(260px) rotateY(-14deg);
    }

    .art-site::before {
      content: 'Built to scale. Designed to convert.';
      position: absolute;
      left: 16px;
      top: 36px;
      right: 16px;
      color: #fff;
      font-weight: 800;
      font-style: italic;
      line-height: 1.2;
    }

    .art-clapper {
      width: 138px;
      height: 126px;
      right: 8px;
      bottom: 12px;
      transform: rotate(-5deg);
    }

    .clapper-board {
      position: absolute;
      left: 10px;
      top: 22px;
      width: 104px;
      height: 82px;
      border-radius: 12px;
      background: linear-gradient(145deg, #211a17, #070605);
      border: 1px solid rgba(232, 80, 10, 0.28);
      box-shadow: 0 14px 30px rgba(28, 10, 0, 0.18);
      overflow: hidden;
    }

    .clapper-board::before {
      content: '';
      position: absolute;
      left: -5px;
      top: 0;
      width: 116px;
      height: 24px;
      background: repeating-linear-gradient(135deg, #fff7ef 0 16px, #1b1715 16px 32px);
      border-bottom: 2px solid rgba(232, 80, 10, 0.58);
    }

    .clapper-board::after {
      content: '';
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 17px;
      height: 24px;
      border-top: 2px solid rgba(255, 255, 255, 0.12);
      border-bottom: 2px solid rgba(255, 255, 255, 0.12);
      background: linear-gradient(to right, rgba(232, 80, 10, 0.85) 0 30%, transparent 30% 42%, rgba(255, 255, 255, 0.2) 42% 66%, transparent 66%);
    }

    .play-tile {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 58px;
      height: 58px;
      border-radius: 15px;
      background: linear-gradient(145deg, #ff8a36, #a9340c);
      box-shadow: 0 14px 30px rgba(232, 80, 10, 0.34);
    }

    .play-tile::before {
      content: '';
      position: absolute;
      left: 23px;
      top: 17px;
      width: 0;
      height: 0;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      border-left: 17px solid #fff;
      filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.24));
    }

    .timeline {
      position: absolute;
      left: 0;
      bottom: 9px;
      width: 78px;
      height: 16px;
      display: flex;
      gap: 5px;
    }

    .timeline span {
      flex: 1;
      border-radius: 999px;
      background: rgba(232, 80, 10, 0.26);
    }

    .timeline span:nth-child(2) {
      flex: 1.6;
      background: var(--cta-orange);
    }

    .art-avatars {
      width: 136px;
      height: 122px;
    }

    .art-avatars img {
      position: absolute;
      border-radius: 50%;
      border: 2px solid var(--cta-orange);
      object-fit: cover;
      background: #120907;
      box-shadow: 0 0 22px rgba(232, 80, 10, 0.34), 0 12px 24px rgba(0, 0, 0, 0.32);
    }

    .art-avatars img:nth-child(1) {
      width: 76px;
      height: 76px;
      right: 2px;
      top: 0;
    }

    .art-avatars img:nth-child(2) {
      width: 58px;
      height: 58px;
      left: 0;
      bottom: 0;
    }

    .art-avatars img:nth-child(3) {
      width: 58px;
      height: 58px;
      right: 4px;
      bottom: 0;
    }

    .art-avatars::after {
      content: '\2665';
      position: absolute;
      right: -8px;
      top: 50px;
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      background: linear-gradient(145deg, #ff8841, #d9400b);
      box-shadow: 0 10px 24px rgba(232, 80, 10, 0.38);
    }

    .services-cta {
      max-width: var(--max-w);
      margin: 28px auto 0;
      min-height: 86px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 22px 44px;
      border: 1px solid rgba(232, 80, 10, 0.32);
      border-radius: 16px;
      background: #ffffff;
      box-shadow: 0 20px 52px rgba(28, 10, 0, 0.08);
    }

    .services-cta-copy {
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .services-cta-icon {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: radial-gradient(circle at 35% 25%, #ff9b45, #8c260b 72%);
      color: #fff;
      font-size: 1.8rem;
      box-shadow: 0 0 30px rgba(232, 80, 10, 0.5);
    }

    .services-cta strong {
      display: block;
      color: var(--ink-900);
      font-family: Georgia, 'Times New Roman', serif;
      font-size: 1.18rem;
      margin-bottom: 6px;
    }

    .services-cta p {
      color: var(--ink-500);
      font-size: 0.9rem;
    }

    /* PROCESS */
    /* RESULTS */
    #results {
      padding: 60px 5% 0;
      background: #fff;
    }

    .results-box {
      background: #111;
      padding: 76px 5% 86px;
      border-radius: 20px;
      max-width: 1300px;
      margin: 0 auto;
    }

    #results .section-header .label {
      display: block;
      margin-bottom: 12px;
      color: #fff;
      font-family: var(--font-head);
      font-size: clamp(1.2rem, 2.4vw, 1.95rem);
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0;
      text-transform: none;
    }

    #results .section-header h2 {
      color: rgba(255, 255, 255, 0.48);
      font-family: var(--font-body);
      font-size: clamp(0.468rem, 0.84vw, 0.6rem);
      font-weight: 800;
      line-height: 1.3;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    #results .section-header h2 span {
      color: #ff5622;
    }

    #results .section-header p {
      color: rgba(255, 255, 255, 0.7);
    }

    .results-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      max-width: 1180px;
      margin: 0 auto;
      text-align: center;
    }

    .result-card {
      padding: 42px 16px 28px;
      border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    .result-card:last-child {
      border-right: none;
    }

    .result-num {
      font-family: var(--font-head);
      font-size: clamp(3.3rem, 6vw, 5rem);
      font-weight: 900;
      color: #fff;
      line-height: 1;
      margin-bottom: 14px;
    }

    .result-card:nth-child(odd) .result-num {
      color: #ff5622;
    }

    .result-label {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.58);
      font-weight: 800;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    /* TEAM */
    #team {
      padding: 100px 5% 120px;
      background: #0A0A0A;
      overflow: hidden;
      position: relative;
    }

    #team .section-header {
      padding: 0;
    }

    #team .section-header h2 {
      color: #fff;
    }

    #team .section-header p {
      color: rgba(255, 255, 255, 0.5);
    }

    #team .label {
      color: var(--cta-orange);
    }

    .team-carousel {
      position: relative;
      z-index: 1;
      width: min(1280px, 116vw);
      margin: 0 auto;
      padding: 28px 0 40px;
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    }

    .team-row {
      display: flex;
      width: max-content;
      margin-bottom: 28px;
    }

    .team-row:last-child {
      margin-bottom: 0;
      transform: translateX(-74px);
    }

    .team-track {
      --team-loop-distance: 50%;
      display: flex;
      align-items: center;
      gap: 0;
      width: max-content;
      padding: 30px 0 72px;
      animation: teamScroll 60s linear infinite;
      will-change: transform;
    }

    .team-row:nth-child(2) .team-track {
      animation: teamScrollReverse 60s linear infinite;
    }

    .team-carousel:hover .team-track {
      animation-play-state: paused;
    }

    @keyframes teamScroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(calc(var(--team-loop-distance) * -1));
      }
    }

    @keyframes teamScrollReverse {
      from {
        transform: translateX(calc(var(--team-loop-distance) * -1));
      }

      to {
        transform: translateX(0);
      }
    }

    .team-bubble {
      --bubble-size: 178px;
      position: relative;
      flex: 0 0 var(--bubble-size);
      width: var(--bubble-size);
      height: var(--bubble-size);
      margin-right: 38px;
      border-radius: 50%;
      overflow: visible;
      cursor: pointer;
      isolation: isolate;
      transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1);
      box-shadow: 0 0 0 3px rgba(232, 80, 10, 0.26), 0 16px 42px rgba(0, 0, 0, 0.28);
      z-index: 1;
    }

    .team-bubble:hover,
    .team-bubble.active {
      transform: scale(1.24);
      box-shadow: 0 0 0 4px var(--cta-orange), 0 28px 80px rgba(0, 0, 0, 0.72);
      z-index: 10;
    }

    .team-bubble.is-sm {
      --bubble-size: 148px;
    }

    .team-bubble.is-md {
      --bubble-size: 172px;
    }

    .team-bubble.is-lg {
      --bubble-size: 208px;
    }

    .team-bubble.is-xl {
      --bubble-size: 242px;
    }

    .team-bubble img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 50%;
      transition: filter 0.38s ease, transform 0.38s ease;
    }

    .team-bubble:hover img,
    .team-bubble.active img {
      filter: brightness(0.62) saturate(1.12);
      transform: scale(1.04);
    }

    .team-bubble-info {
      position: absolute;
      left: 12%;
      bottom: -36px;
      width: max-content;
      max-width: calc(var(--bubble-size) * 1.35);
      padding: 0;
      text-align: left;
      opacity: 0;
      transform: translateY(12px);
      pointer-events: none;
      z-index: 3;
      transition: opacity 0.28s ease, transform 0.34s ease;
    }

    .team-bubble:hover .team-bubble-info,
    .team-bubble.active .team-bubble-info {
      opacity: 1;
      transform: translateY(0);
    }

    .team-bubble::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.16);
      opacity: 0;
      z-index: 1;
      transition: opacity 0.35s ease;
    }

    .team-bubble:hover::after,
    .team-bubble.active::after {
      opacity: 1;
    }

    .team-bubble-info h4 {
      font-family: var(--font-head);
      font-size: 1.22rem;
      font-weight: 900;
      color: #fff;
      line-height: 0.95;
      text-transform: uppercase;
      text-shadow: 0 3px 14px rgba(0, 0, 0, 0.85);
      overflow-wrap: anywhere;
    }

    .team-bubble-info span {
      display: block;
      margin-top: 6px;
      font-size: 0.68rem;
      color: var(--cta-orange);
      font-weight: 800;
      line-height: 1.15;
      text-transform: uppercase;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    }

    .team-bubble.is-sm .team-bubble-info h4 {
      font-size: 1rem;
    }

    .team-bubble.is-sm .team-bubble-info span {
      font-size: 0.58rem;
    }

    .team-bubble.is-lg .team-bubble-info h4 {
      font-size: 1.48rem;
    }

    .team-bubble.is-lg .team-bubble-info span {
      font-size: 0.76rem;
    }

    .team-bubble.is-xl .team-bubble-info h4 {
      font-size: 1.78rem;
    }

    .team-bubble.is-xl .team-bubble-info span {
      font-size: 0.84rem;
    }

    /* Decorative accent circles */
    .team-deco {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    .team-deco-1 {
      width: 60px;
      height: 60px;
      background: var(--cta-orange);
      top: 15%;
      right: 8%;
      opacity: 0.8;
      animation: floatDeco 6s ease-in-out infinite;
    }

    .team-deco-2 {
      width: 35px;
      height: 35px;
      background: var(--brand-red);
      bottom: 20%;
      left: 6%;
      opacity: 0.6;
      animation: floatDeco 8s ease-in-out infinite reverse;
    }

    .team-deco-3 {
      width: 45px;
      height: 45px;
      background: var(--cta-orange);
      top: 50%;
      left: 12%;
      opacity: 0.4;
      animation: floatDeco 7s ease-in-out 1s infinite;
    }

    @keyframes floatDeco {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-15px);
      }
    }

    /* ABOUT */
    #about {
      min-height: 100vh;
      padding: 0;
      background: #f4f3f1;
      overflow: hidden;
      position: relative;
    }

    .about-visual {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: stretch;
      background: #f9f9f7;
      isolation: isolate;
    }

    .about-founder-img-col {
      flex: 0 0 45%;
      position: sticky;
      top: 0;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 40px 60px 60px;
      background: #f9f9f7;
    }

    .about-founder-img-col img {
      width: 100%;
      height: 100%;
      max-height: 80vh;
      object-fit: cover;
      object-position: top center;
      border-radius: 28px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
      display: block;
    }

    .about-text-col {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 60px 80px 40px;
    }

    /* Mobile: stack founder image above text */
    @media (max-width: 768px) {
      .about-visual {
        flex-direction: column !important;
        align-items: center !important;
      }

      .about-founder-img-col {
        position: static !important;
        top: auto !important;
        height: auto !important;
        flex: 0 0 auto !important;
        width: 100% !important;
        padding: 16px !important;
        display: block !important;
      }

      .about-founder-img-col img {
        width: 100% !important;
        height: auto !important;
        max-height: 360px !important;
        object-fit: cover !important;
        border-radius: 12px !important;
      }

      .about-text-col {
        padding: 18px 16px 36px !important;
        width: 100% !important;
        order: 1 !important;
      }

      .about-founder-img-col { order: 0 !important; }
    }



    .about-top-note {
      position: absolute;
      right: 4.4%;
      top: 5.4%;
      color: rgba(28, 28, 28, 0.5);
      font-family: var(--font-head);
      font-size: clamp(0.9rem, 1.3vw, 1.2rem);
      font-weight: 900;
      line-height: 0.98;
      text-align: left;
      letter-spacing: -0.04em;
      opacity: 0;
    }

    .about-brand-mark {
      position: absolute;
      left: 3.6%;
      bottom: 5.8%;
      width: clamp(74px, 5.1vw, 88px);
      aspect-ratio: 1;
      background: #050505;
      color: #fff;
      display: flex;
      align-items: center;
      padding: 8px 7px;
      font-family: var(--font-head);
      font-size: clamp(1.14rem, 1.45vw, 1.42rem);
      font-weight: 900;
      line-height: 0.78;
      letter-spacing: -0.06em;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
      opacity: 0;
    }

    .about-brand-mark::after {
      content: '';
      position: absolute;
      right: -9px;
      top: -11px;
      width: 12px;
      height: 12px;
      border: 3px solid #ff1d12;
      background: #fff;
    }

    .about-content {
      color: #2f2f2f;
      opacity: 0;
      transform: translateY(24px);
    }

    .about-content h2 {
      margin: 0 0 26px;
      color: #050505;
      font-size: clamp(2.35rem, 4.1vw, 4.35rem);
      line-height: 0.98;
      letter-spacing: -0.055em;
    }

    .about-content h2 span {
      display: block;
      color: #f00f0b;
      text-shadow: 0 4px 0 rgba(110, 0, 0, 0.12);
    }

    .about-story {
      color: #333;
      font-size: clamp(0.96rem, 1.25vw, 1.24rem);
      line-height: 1.2;
      letter-spacing: -0.035em;
    }

    .about-story p {
      margin-bottom: 30px;
    }

    .about-story p:last-child {
      margin-bottom: 0;
      color: #333;
      font-weight: 400;
    }

    .about-cta {
      margin-top: 34px;
    }

    .about-cta .btn {
      min-width: 240px;
      padding: 21px 34px;
      border-radius: 6px;
      background: #202020;
      color: #fff;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 12px 26px rgba(0, 0, 0, 0.12);
      font-size: clamp(1rem, 1.3vw, 1.25rem);
    }

    .about-cta .btn:hover {
      background: #111;
    }

    .about-visual.visible .about-content {
      animation: fadeUp 0.72s 0.16s ease forwards;
    }

    .about-visual.visible .about-top-note {
      animation: fadeUp 0.52s 0.7s ease forwards;
    }

    .about-visual.visible .about-brand-mark {
      animation: none;
      opacity: 1;
      transform: none;
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* OUR WORK / PORTFOLIO */
    #our-work {
      padding: 100px 5% 80px;
      background: linear-gradient(135deg, #fafafa 0%, #fff 50%, #f5f5f5 100%);
      position: relative;
    }

    #our-work .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    #our-work .section-header .label {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #ff5a1f;
      margin-bottom: 14px;
    }

    #our-work .section-header h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: #050505;
      letter-spacing: -0.04em;
      line-height: 1.1;
      margin-bottom: 16px;
    }

    #our-work .section-header h2::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background: #ff5a1f;
      border-radius: 2px;
      margin: 18px auto 0;
    }

    #our-work .section-header p {
      font-size: 1.05rem;
      color: #666;
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .video-scroll {
      overflow: hidden;
      max-width: 100vw;
      margin: 0 auto;
      padding: 20px 0;
    }

    .video-scroll-track {
      display: flex;
      gap: 12px;
      width: max-content;
      animation: scrollReels 60s linear infinite;
      will-change: transform;
      contain: layout style paint;
      transform: translateZ(0);
    }

    .video-scroll-track video {
      width: 160px;
      height: 284px; /* explicit height prevents iOS zero-height flash */
      aspect-ratio: 9/16;
      object-fit: cover;
      border-radius: 10px;
      display: block;
      background: #111;
      flex-shrink: 0;
    }

    /* video wrapper for positioning the views badge */
    .video-wrap {
      position: relative;
      display: inline-block;
      flex-shrink: 0;
      line-height: 0;
      /* ensure wrapper matches video dimensions */
      width: 160px;
      height: 284px;
      border-radius: 10px;
      overflow: hidden;
      background: #111;
    }

    .video-wrap video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .video-views-badge {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: rgba(0, 0, 0, 0.62);
      border-radius: 6px;
      padding: 3px 7px;
      display: flex;
      align-items: center;
      gap: 4px;
      pointer-events: none;
    }

    .video-views-badge svg {
      width: 11px;
      height: 11px;
      fill: rgba(255,255,255,0.85);
      flex-shrink: 0;
    }

    .video-views-badge span {
      color: #fff;
      font-size: 0.68rem;
      font-weight: 600;
      font-family: var(--font-body);
      white-space: nowrap;
      line-height: 1;
    }

    /* Desktop/laptop: increase video box size by 70% */
    @media (min-width: 769px) {
      .video-scroll-track video {
        width: 272px;
        height: 484px;
        border-radius: 16px;
      }

      .video-wrap {
        width: 272px;
        height: 484px;
        border-radius: 16px;
      }

      .video-scroll-track {
        gap: 20px;
      }
    }

    @keyframes scrollReels {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* INSTAGRAM REEL EMBEDS — Our Work */
    .reel-scroll {
      overflow: hidden;
      padding: 0 0 32px;
      /* fade edges — webkit prefix required for Safari */
      -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
      /* isolate so mask doesn't affect children on Safari */
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }

    .reel-track {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 16px;
      /* explicit width so Safari doesn't collapse the flex row */
      width: -webkit-max-content;
      width: max-content;
      /* use translateZ to keep on GPU compositor — smoother on all browsers */
      -webkit-animation: reelScroll 32s linear infinite;
      animation: reelScroll 32s linear infinite;
      will-change: transform;
      /* prevent touch events from being captured by the track itself */
      touch-action: pan-y;
    }

    /* pause on hover (desktop) */
    .reel-track:hover {
      -webkit-animation-play-state: paused;
      animation-play-state: paused;
    }

    @-webkit-keyframes reelScroll {
      from { -webkit-transform: translateX(0);  transform: translateX(0); }
      to   { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
    }
    @keyframes reelScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    .reel-wrap {
      -ms-flex-negative: 0;
      flex-shrink: 0;
      width: 300px;
      /* explicit height prevents iOS Safari zero-height iframe flash */
      height: 533px;
      border-radius: 16px;
      overflow: hidden;
      background: #111;
      box-shadow: 0 8px 32px rgba(0,0,0,0.18);
      /* GPU layer for smoother scroll on mobile */
      -webkit-transform: translateZ(0);
      transform: translateZ(0);
    }

    .reel-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
      /* prevent iframe from capturing scroll events on iOS */
      pointer-events: auto;
      /* removed scrolling="no" — let iframe manage its own scroll */
      overflow: hidden;
    }

    /* Tablet */
    @media (max-width: 1024px) and (min-width: 769px) {
      .reel-wrap {
        width: 260px;
        height: 462px;
      }
      .reel-track { gap: 14px; }
    }

    /* Mobile — narrower cards, slower scroll speed via animation-duration override */
    @media (max-width: 768px) {
      .reel-wrap {
        width: 185px;
        height: 329px;
        border-radius: 12px;
      }
      .reel-track {
        gap: 10px;
        /* slower on mobile so it's readable */
        -webkit-animation-duration: 22s;
        animation-duration: 22s;
      }
      .reel-scroll {
        /* tighter fade on mobile so cards aren't clipped too much */
        -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
      }
    }

    /* Respect reduced-motion preference */
    @media (prefers-reduced-motion: reduce) {
      .reel-track {
        -webkit-animation: none;
        animation: none;
        /* fallback: make it horizontally scrollable manually */
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: auto;
        max-width: 100%;
      }
      .reel-scroll {
        overflow-x: auto;
        -webkit-mask-image: none;
        mask-image: none;
      }
    }

    /* BRANDS / CLIENTS MARQUEE */
    #brands {
      padding: 80px 0;
      background: #ffffff;
      overflow: hidden;
    }

    #brands .section-header {
      text-align: center;
      margin-bottom: 50px;
      padding: 0 5%;
    }

    #brands .section-header .label {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #ff5a1f;
      margin-bottom: 14px;
    }

    #brands .section-header h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      color: #050505;
      letter-spacing: -0.04em;
      line-height: 1.1;
    }

    .brands-marquee {
      display: flex;
      overflow: hidden;
      user-select: none;
      mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
    }

    /* Ensure brands and our-work sections are never deferred — must be measurable on load */
    #brands,
    #our-work {
      content-visibility: visible;
    }

    .brands-track {
      display: flex;
      align-items: center;
      gap: 0;
      will-change: transform;
      transform: translateZ(0);
    }

    .brands-set {
      display: flex;
      align-items: center;
      gap: 60px;
      flex-shrink: 0;
      padding-right: 60px;
    }

    .brands-track img {
      height: 105px;
      width: auto;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.55;
      transition: filter 0.3s, opacity 0.3s;
    }

    .brands-track img:hover {
      filter: grayscale(0);
      opacity: 1;
    }

    /* BLOGS */
    #blogs {
      padding: 100px 5% 80px;
      background: #fff;
    }

    #blogs .section-header {
      text-align: center;
      margin-bottom: 60px;
    }

    #blogs .section-header .label {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #ff5a1f;
      margin-bottom: 14px;
    }

    #blogs .section-header h2 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: #050505;
      letter-spacing: -0.04em;
      line-height: 1.1;
    }

    .blogs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 32px;
      max-width: 1300px;
      margin: 0 auto;
    }

    .blog-card {
      background: #fafafa;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid #eee;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .blog-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .blog-card-img {
      width: 100%;
      aspect-ratio: 16/9;
      object-fit: cover;
    }

    .blog-card-body {
      padding: 24px 28px 28px;
    }

    .blog-card-tag {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #ff5a1f;
      margin-bottom: 12px;
    }

    .blog-card-body h3 {
      font-size: 1.2rem;
      color: #050505;
      margin: 0 0 10px;
      line-height: 1.3;
      letter-spacing: -0.02em;
    }

    .blog-card-body p {
      font-size: 0.92rem;
      color: #666;
      line-height: 1.5;
      margin: 0;
    }

    .blog-card-footer {
      padding: 0 28px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .blog-card-footer span {
      font-size: 0.78rem;
      color: #999;
    }

    .blog-card-footer a {
      font-size: 0.85rem;
      color: #ff5a1f;
      font-weight: 600;
      text-decoration: none;
    }

    .blog-card-footer a:hover {
      text-decoration: underline;
    }

    /* TESTIMONIALS */
    #testimonials {
      padding: 86px 5% 98px;
      background: #f7f7f7;
      overflow: hidden;
    }

    .reviews-shell {
      max-width: 1220px;
      margin: 0 auto;
    }

    .reviews-header {
      text-align: center;
      margin-bottom: 78px;
    }

    .reviews-header h2 {
      color: #101010;
      font-family: var(--font-body);
      font-size: clamp(2rem, 3.5vw, 3.25rem);
      font-weight: 500;
      line-height: 1.03;
      letter-spacing: -0.04em;
      margin-bottom: 20px;
    }

    .reviews-header h2 strong {
      display: block;
      font-weight: 900;
    }

    .trust-row {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 13px;
      color: #111;
      font-size: 0.95rem;
    }

    .trust-score {
      color: #2c2c2c;
      font-size: 0.86rem;
    }

    .trust-brand {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-weight: 800;
    }

    .trust-star {
      color: #00b67a;
      font-size: 1.75rem;
      line-height: 1;
    }

    .trust-count {
      color: #4b4b4b;
      font-size: 0.82rem;
    }

    .reviews-layout {
      display: grid;
      grid-template-columns: 230px minmax(0, 1fr);
      gap: 42px;
      align-items: start;
    }

    .reviews-intro {
      padding-top: 2px;
      color: #111;
    }

    .reviews-quote {
      color: rgba(0, 0, 0, 0.32);
      font-family: Georgia, serif;
      font-size: 6.2rem;
      line-height: 0.62;
      margin-bottom: 24px;
    }

    .reviews-intro h3 {
      font-family: var(--font-body);
      color: #111;
      font-size: clamp(1.6rem, 2.4vw, 2.25rem);
      font-weight: 500;
      line-height: 1.08;
      letter-spacing: -0.04em;
      margin-bottom: 34px;
    }

    .reviews-nav {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #1a1a1a;
      font-size: 1.05rem;
    }

    .reviews-line {
      width: 108px;
      height: 1px;
      background: #111;
      display: block;
    }

    .testimonials-track {
      display: grid;
      grid-template-columns: repeat(3, minmax(220px, 1fr));
      gap: 28px;
      align-items: start;
    }

    .testimonial-card {
      position: relative;
      min-height: 246px;
      background: var(--white);
      border-radius: 0 14px 14px 14px;
      padding: 32px 31px 28px;
      border: 1px solid rgba(0, 0, 0, 0.04);
      box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
      transition: transform 0.22s, box-shadow 0.22s;
    }

    .testimonial-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 26px;
      height: 26px;
      background: #f7f7f7;
      clip-path: polygon(0 0, 100% 0, 0 100%);
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 22px 54px rgba(0, 0, 0, 0.11);
    }

    .testimonial-text {
      color: #222;
      font-size: 0.87rem;
      line-height: 1.64;
      margin-bottom: 28px;
    }

    .stars {
      color: #00b67a;
      font-size: 1.05rem;
      letter-spacing: 0.05em;
      margin-bottom: 22px;
    }

    .t-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .t-avatar {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      background: linear-gradient(135deg, var(--brand-red), var(--cta-orange));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-head);
      font-weight: 800;
      font-size: 0.95rem;
      color: #fff;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    }

    .t-author strong {
      display: block;
      font-family: var(--font-body);
      font-size: 0.86rem;
      font-weight: 900;
      color: #111;
      line-height: 1.1;
    }

    .t-author span {
      display: block;
      margin-top: 2px;
      font-size: 0.7rem;
      color: #777;
    }

    /* CONTACT FORM */
    #contact {
      padding: 108px 5% 118px;
      background: #dedede;
      border-top: 1px solid #d6d6d6;
      position: relative;
      overflow: hidden;
    }

    #contact::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 42%);
      pointer-events: none;
    }

    .contact-inner {
      max-width: 1040px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      color: #050505;
    }

    .contact-preview {
      text-align: center;
      margin-bottom: 70px;
    }

    .contact-preview .label {
      display: block;
      margin: 0 0 20px;
      color: #050505;
      font-family: var(--font-body);
      font-size: clamp(1.05rem, 2vw, 1.45rem);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .contact-preview h2 {
      color: #050505;
      font-family: var(--font-body);
      font-size: clamp(1.7rem, 3.1vw, 2.65rem);
      font-weight: 800;
      line-height: 1.08;
      margin: 0 auto;
    }

    .contact-card {
      background: #fff;
      min-height: 780px;
      padding: 34px 58px 38px;
      box-shadow: 0 22px 48px rgba(0, 0, 0, 0.06);
    }

    .contact-card-nav {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 22px;
      margin-bottom: 72px;
      color: #050505;
      font-size: 0.68rem;
      font-weight: 700;
    }

    .contact-mini-links,
    .contact-actions {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .contact-mini-links a,
    .contact-actions a {
      color: #050505;
      text-decoration: none;
    }

    .contact-card-brand {
      font-family: var(--font-head);
      font-size: 1.14rem;
      font-weight: 900;
      color: #050505;
      text-transform: uppercase;
    }

    .contact-actions {
      justify-content: flex-end;
    }

    .contact-cart {
      width: 17px;
      height: 15px;
      position: relative;
      display: inline-block;
      flex: 0 0 17px;
      border-bottom: 2px solid #050505;
      border-left: 2px solid #050505;
      transform: translateY(-1px) skewX(-10deg);
    }

    .contact-cart::before {
      content: '';
      position: absolute;
      left: -3px;
      top: -4px;
      width: 13px;
      height: 2px;
      background: #050505;
      transform: skewX(28deg);
    }

    .contact-cart::after {
      content: '';
      position: absolute;
      left: 2px;
      bottom: -6px;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #050505;
      box-shadow: 9px 0 0 #050505;
    }

    .contact-pill {
      border: 1px solid #050505;
      border-radius: 999px;
      padding: 8px 16px;
      line-height: 1;
    }

    .contact-pill-dark {
      background: #050505;
      color: #fff !important;
    }

    .contact-title {
      color: #000;
      font-family: var(--font-head);
      font-size: clamp(4.2rem, 12vw, 9.8rem);
      font-weight: 900;
      line-height: 0.86;
      margin: 0 0 48px;
    }

    .contact-body {
      display: grid;
      grid-template-columns: minmax(160px, 0.72fr) minmax(420px, 1.28fr);
      gap: 92px;
      align-items: start;
    }

    .contact-meta {
      display: grid;
      gap: 34px;
      padding-top: 8px;
      color: #050505;
      font-size: 0.68rem;
      line-height: 1.35;
      font-weight: 700;
    }

    .contact-meta span {
      display: block;
      color: #4a4a4a;
      font-weight: 600;
    }

    .contact-form {
      background: transparent;
      border: 0;
      border-radius: 0;
      padding: 0;
      text-align: left;
      box-shadow: none;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .form-group label {
      display: block;
      font-size: 0.7rem;
      font-weight: 700;
      color: #050505;
      margin-bottom: 8px;
      text-transform: none;
      letter-spacing: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: transparent;
      border: 0;
      border-bottom: 1px solid #050505;
      border-radius: 0;
      padding: 0 0 11px;
      color: #050505;
      font-family: var(--font-body);
      font-size: 0.78rem;
      outline: none;
      appearance: none;
      -webkit-appearance: none;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #777;
      background: transparent;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #7c7c7c;
    }

    .form-group textarea {
      resize: none;
      min-height: 76px;
    }

    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23050505' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 2px top 4px;
      padding-right: 24px;
    }

    .form-check {
      display: flex;
      align-items: center;
      gap: 7px;
      margin: -4px 0 20px;
      color: #050505;
      font-size: 0.68rem;
      line-height: 1.2;
    }

    .form-check input {
      width: 12px;
      height: 12px;
      appearance: none;
      -webkit-appearance: none;
      border: 1px solid #050505;
      border-radius: 50%;
      background: transparent;
      flex: 0 0 12px;
    }

    .form-check input:checked {
      box-shadow: inset 0 0 0 3px #fff;
      background: #050505;
    }

    .form-submit {
      width: auto;
      padding: 10px 28px;
      border-radius: 999px;
      background: #050505;
      color: #fff;
      box-shadow: none;
      font-family: var(--font-body);
      font-size: 0.72rem;
      margin-top: 0;
    }

    .form-submit:hover {
      background: #242424;
      box-shadow: none;
      transform: none;
    }

    .contact-card-footer {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: end;
      margin-top: 112px;
      color: #050505;
    }

    .contact-card-footer strong {
      display: block;
      color: #050505;
      font-family: var(--font-head);
      font-size: clamp(1.6rem, 3vw, 2.25rem);
      line-height: 1;
      margin-bottom: 34px;
    }

    .contact-card-footer p {
      color: #050505;
      font-size: 0.68rem;
      line-height: 1.35;
      font-weight: 700;
    }

    .contact-footer-right {
      text-align: right;
    }

    .contact-footer-right .contact-note {
      margin-bottom: 30px;
    }

    .contact-socials {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 16px;
      font-size: 0.82rem;
      font-weight: 800;
    }

    .contact-socials a {
      color: #050505;
      text-decoration: none;
    }

    .form-thank-you {
      display: none;
      text-align: center;
      padding: 70px 20px;
      color: #050505;
    }

    .form-thank-you.show {
      display: block;
    }

    .form-thank-you h3 {
      color: #050505;
      font-size: 2rem;
      margin-bottom: 12px;
    }

    .form-thank-you p {
      color: #333;
    }

    /* FOOTER */
    footer {
      background: #000;
      padding: 64px 5% 0;
      border-top: 3px solid var(--brand-red);
      overflow: hidden;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1.2fr;
      gap: 48px;
      max-width: var(--max-w);
      margin: 0 auto;
      padding-bottom: 56px;
    }

    .f-logo {
      font-family: var(--font-head);
      font-weight: 900;
      font-size: 1.35rem;
      color: #fff;
      margin-bottom: 8px;
      letter-spacing: -0.02em;
    }

    .f-logo span {
      color: var(--brand-red);
    }

    .f-tagline {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--cta-orange);
      margin-bottom: 14px;
    }

    .footer-brand p {
      font-size: 0.87rem;
      color: rgba(255, 255, 255, 0.45);
      line-height: 1.75;
      max-width: 280px;
    }

    .footer-links h4,
    .footer-contact h4 {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.3);
      margin-bottom: 18px;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 11px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.5);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 14px;
    }

    .c-icon {
      font-size: 1rem;
      margin-top: 1px;
    }

    .contact-row a,
    .contact-row span {
      color: rgba(255, 255, 255, 0.5);
      font-size: 0.87rem;
      text-decoration: none;
      transition: color 0.2s;
      line-height: 1.5;
    }

    .contact-row a:hover {
      color: #fff;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding: 20px 0;
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      /* always visible � overrides the reveal animation */
      opacity: 1 !important;
      transform: none !important;
    }

    .footer-bottom p {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.22);
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, 0.25);
      text-decoration: none;
      font-size: 0.78rem;
      transition: color 0.2s;
    }

    .footer-bottom a:hover {
      color: rgba(255, 255, 255, 0.55);
    }

    .fb-links {
      display: flex;
      gap: 20px;
    }

    .designed-by {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.75rem;
      color: rgba(255, 255, 255, 0.3);
      text-decoration: none;
      transition: color 0.2s;
    }

    .designed-by:hover {
      color: rgba(255, 255, 255, 0.7);
    }

    .designed-by img {
      height: 22px;
      width: auto;
      opacity: 0.55;
      transition: opacity 0.2s;
      filter: brightness(0) invert(1);
    }

    .designed-by:hover img {
      opacity: 0.9;
    }

    .whatsapp-float {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 1200;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 54px;
      padding: 13px 18px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.34);
      color: #fff;
      text-decoration: none;
      font-family: var(--font-head);
      font-size: 0.88rem;
      font-weight: 800;
      box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.28);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
    }

    .whatsapp-float:hover {
      transform: translateY(-3px);
      background: rgba(37, 211, 102, 0.22);
      box-shadow: 0 22px 54px rgba(37, 211, 102, 0.18), 0 18px 44px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    }

    .whatsapp-icon {
      width: 30px;
      height: 30px;
      display: block;
      object-fit: contain;
    }

    /* RESPONSIVE */
    @media(max-width:960px) {
      #intro-mission {
        min-height: auto;
        padding: 76px 5% 70px;
      }

      .intro-mission-inner {
        grid-template-columns: 1fr;
        min-height: 0;
      }

      .intro-mission-table {
        padding-bottom: 0;
      }

      .culture-inner {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 42px;
      }

      .culture-visual {
        max-width: 320px;
      }

      .hero-shell {
        padding: 32px 36px 0;
      }

      .hero-content-wrap {
        min-height: calc(100vh - 32px);
      }

      .hero-nav {
        gap: 20px;
      }

      .hero-left {
        max-width: 360px;
        transform: translateY(-12vh);
      }

      .hero-giant-text {
        bottom: -1.6vw;
      }

      .hero-giant-text h1 {
        font-size: clamp(7.55rem, 31.2vw, 18.2rem);
      }

      .hero-case-card {
        width: 250px;
      }

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

      .service-content {
        width: 64%;
      }

      .services-cta {
        padding: 22px 26px;
      }

      .about-visual {
        min-height: 780px;
        background-position: 31% center;
      }

      .about-content {
        left: 48%;
        top: 25%;
        width: 47%;
      }

      .about-content h2 {
        font-size: clamp(2.25rem, 5vw, 3.65rem);
      }

      .about-story {
        font-size: clamp(0.92rem, 1.8vw, 1.08rem);
      }

      .about-story p {
        margin-bottom: 20px;
      }

      .reviews-layout {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .reviews-header {
        margin-bottom: 46px;
      }

      .reviews-intro {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 18px;
      }

      .reviews-quote {
        font-size: 4rem;
        margin-bottom: 0;
      }

      .reviews-intro h3 {
        margin-bottom: 0;
      }

      .testimonials-track {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero-stats {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 360px;
        align-items: flex-start;
        margin-top: 30px;
      }

      .hero-clients {
        width: 100%;
        max-width: none;
      }

      #contact {
        padding: 84px 4% 94px;
      }

      .contact-preview {
        margin-bottom: 54px;
      }

      .contact-card {
        min-height: auto;
        padding: 30px 32px 34px;
      }

      .contact-card-nav {
        margin-bottom: 52px;
      }

      .contact-title {
        font-size: clamp(4.4rem, 15vw, 7rem);
        margin-bottom: 42px;
      }

      .contact-body {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      .contact-meta {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
        padding-top: 0;
      }

      .contact-card-footer {
        margin-top: 76px;
      }

      .team-carousel {
        width: 112vw;
      }

      .team-track {
        animation-duration: 60s;
      }

      .team-bubble {
        margin-right: 28px;
      }

      .team-row:nth-child(2) .team-track {
        animation-duration: 60s;
      }

      .team-bubble {
        --bubble-size: 142px;
      }

      .team-bubble.is-sm {
        --bubble-size: 122px;
      }

      .team-bubble.is-md {
        --bubble-size: 140px;
      }

      .team-bubble.is-lg {
        --bubble-size: 166px;
      }

      .team-bubble.is-xl {
        --bubble-size: 190px;
      }

      .team-bubble-info h4 {
        font-size: 1.02rem;
      }

      .team-bubble-info span {
        font-size: 0.58rem;
      }

      .team-bubble.is-lg .team-bubble-info h4 {
        font-size: 1.18rem;
      }

      .team-bubble.is-xl .team-bubble-info h4 {
        font-size: 1.34rem;
      }
    }

    @media(max-width:640px) {
      :root {
        --section-pad: 64px;
      }

      #intro-mission {
        padding: 62px 5% 58px;
      }

      .intro-mission-title h2 {
        font-size: clamp(2.5rem, 15vw, 4rem);
      }

      .intro-mission-table {
        padding-right: 0;
      }

      .intro-row {
        grid-template-columns: 1fr;
        gap: 10px;
        min-height: 128px;
        padding: 26px 0 8px;
      }

      .intro-row-copy {
        max-width: none;
        font-size: 0.9rem;
      }

      #culture {
        padding: 70px 5%;
      }

      .culture-inner {
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .culture-visual {
        max-width: 300px;
        justify-self: center;
      }

      .hero-shell {
        min-height: 100svh;
        border-radius: 0 0 36px 36px;
        padding: 26px 22px 0;
      }

      .hero-content-wrap {
        min-height: calc(100svh - 26px);
      }

      .hero-header {
        gap: 16px;
      }

      .hero-logo {
        gap: 9px;
      }

      .hero-logo img {
        width: 34px;
        height: 34px;
      }

      .hero-logo-name {
        font-size: 0.78rem;
        max-width: 92px;
        white-space: normal;
        line-height: 1.05;
      }

      .hero-nav {
        display: none;
      }

      .hero-talk-btn {
        padding: 11px 18px;
        font-size: 0.82rem;
      }

      .hero-body {
        align-items: flex-start;
        padding-top: 12vh;
      }

      .hero-left {
        max-width: min(320px, 82vw);
        transform: none;
      }

      .hero-left h2 span {
        font-size: clamp(2rem, 11.25vw, 3.2rem);
      }

      .hero-case-card {
        display: none;
      }

      .hero-giant-text {
        bottom: -0.6vw;
      }

      .hero-giant-text h1 {
        font-size: clamp(7.8rem, 36.4vw, 12.35rem);
        letter-spacing: -.11em;
      }

      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }

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

      #services {
        padding: 70px 5%;
      }

      #services .section-header {
        text-align: center;
        margin-bottom: 32px;
      }

      .services-title {
        font-size: clamp(2.2rem, 12vw, 3.25rem);
      }

      .service-card {
        min-height: 214px;
        padding: 24px 22px;
      }

      .service-content {
        width: 72%;
      }

      .service-art {
        width: 34%;
        opacity: 0.72;
      }

      .services-cta {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px;
      }

      .services-cta-copy {
        align-items: flex-start;
      }

      #results {
        padding: 40px 4% 0;
      }

      .results-box {
        padding: 48px 6% 56px;
        border-radius: 16px;
        text-align: center;
      }

      #results .section-header {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
      }

      .results-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
      }

      .result-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 32px 12px 24px;
      }

      .result-card:nth-last-child(-n+2) {
        border-bottom: none;
      }

      #testimonials {
        padding: 64px 5% 72px;
      }

      .reviews-header h2 {
        font-size: clamp(1.9rem, 9vw, 2.55rem);
      }

      .trust-row {
        flex-wrap: wrap;
        gap: 8px 12px;
      }

      .reviews-intro {
        display: block;
      }

      .reviews-quote {
        font-size: 4.6rem;
        margin-bottom: 18px;
      }

      .reviews-intro h3 {
        font-size: 1.8rem;
        margin-bottom: 24px;
      }

      .testimonials-track {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .testimonial-card {
        min-height: 0;
        padding: 28px 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .contact-form {
        padding: 0;
      }

      #contact {
        padding: 68px 4% 76px;
      }

      .contact-preview {
        margin-bottom: 42px;
      }

      .contact-card {
        padding: 22px 18px 26px;
      }

      .contact-card-nav {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 16px;
        margin-bottom: 40px;
        text-align: center;
      }

      .contact-mini-links,
      .contact-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px 14px;
      }

      .contact-title {
        font-size: clamp(3.2rem, 20vw, 4.6rem);
        line-height: 0.9;
        margin-bottom: 34px;
        text-align: left;
      }

      .contact-body {
        gap: 34px;
      }

      .contact-meta {
        grid-template-columns: 1fr 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .contact-card-footer {
        grid-template-columns: 1fr;
        gap: 34px;
        margin-top: 58px;
      }

      .contact-card-footer strong {
        font-size: clamp(1.32rem, 7vw, 1.72rem);
        margin-bottom: 18px;
        overflow-wrap: anywhere;
      }

      .contact-footer-right {
        text-align: left;
      }

      .contact-socials {
        justify-content: flex-start;
        flex-wrap: wrap;
      }

      .hero-btns {
        flex-direction: column;
      }

      .hero-btns .btn {
        text-align: center;
      }

      .hero-stats {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 340px;
        align-items: flex-start;
        margin-top: 30px;
      }

      .hero-stats .trust-pill {
        max-width: 100%;
        min-height: 58px;
        padding: 10px 12px;
      }

      .hero-stats .trust-pill span {
        font-size: clamp(0.76rem, 3.8vw, 0.96rem);
      }

      .hero-stats .trust-pill strong {
        font-size: clamp(2.15rem, 10vw, 3.25rem);
      }

      .about-visual {
        min-height: 850px;
        aspect-ratio: auto;
        background-size: auto 100%;
        background-position: 28% center;
      }

      .about-visual::after {
        z-index: 0;
        background: linear-gradient(180deg, rgba(244, 243, 241, 0.08), rgba(244, 243, 241, 0.9) 50%, rgba(244, 243, 241, 0.98));
      }

      .about-content {
        left: 6%;
        right: 6%;
        top: 42%;
        width: auto;
        z-index: 2;
      }

      .about-content h2 {
        font-size: clamp(2.25rem, 12vw, 3.25rem);
      }

      .about-story {
        font-size: 0.98rem;
        line-height: 1.32;
      }

      .about-story p {
        margin-bottom: 18px;
      }

      .about-cta .btn {
        min-width: 0;
        width: 100%;
        padding: 17px 24px;
        text-align: center;
      }

      .about-top-note {
        right: 6%;
        top: 4%;
        font-size: 0.88rem;
        z-index: 2;
      }

      .about-brand-mark {
        left: 6%;
        bottom: 3%;
        z-index: 2;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
        min-height: 54px;
        padding: 0;
        justify-content: center;
      }

      .whatsapp-float span {
        display: none;
      }

      .team-carousel {
        width: 118vw;
        padding: 18px 0 28px;
      }

      .team-row {
        margin-bottom: 14px;
      }

      .team-row:last-child {
        transform: translateX(-44px);
      }

      .team-track {
        padding: 18px 0 52px;
        animation-duration: 60s;
      }

      .team-row:nth-child(2) .team-track {
        animation-duration: 60s;
      }

      .team-bubble {
        --bubble-size: 108px;
        margin-right: 18px;
      }

      .team-bubble.is-sm {
        --bubble-size: 96px;
      }

      .team-bubble.is-md {
        --bubble-size: 112px;
      }

      .team-bubble.is-lg {
        --bubble-size: 132px;
      }

      .team-bubble.is-xl {
        --bubble-size: 150px;
      }

      .team-bubble-info h4,
      .team-bubble.is-sm .team-bubble-info h4,
      .team-bubble.is-lg .team-bubble-info h4,
      .team-bubble.is-xl .team-bubble-info h4 {
        font-size: 0.82rem;
      }

      .team-bubble-info span,
      .team-bubble.is-sm .team-bubble-info span,
      .team-bubble.is-lg .team-bubble-info span,
      .team-bubble.is-xl .team-bubble-info span {
        font-size: 0.5rem;
      }

      .team-bubble:hover,
      .team-bubble.active {
        transform: scale(1.16);
      }

      .team-deco {
        display: none;
      }
    }

    /* ----------------------------------
     NEW: What We Do Best � Card Stack
     ---------------------------------- */
    #services.new-do-best {
      --white: #ffffff;
      --black: #0d0d0d;
      --mid: #888;
      --card-w: min(1287px, 57vw);
      background: var(--white);
      font-family: 'Syne', sans-serif;
      color: var(--black);
      display: block;
      width: 100%;
      padding-bottom: 0;
      margin-bottom: 0;
    }

    /* -- New image layout -- */
    #services.new-do-best .services-image-wrap {
      max-width: 100%;
      margin: 0;
      padding: 80px 0 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 48px;
      overflow: hidden;
    }

    #services.new-do-best .services-text-header {
      max-width: 520px;
      padding: 0 5%;
    }

    #services.new-do-best .services-full-image {
      width: 100%;
    }

    #services.new-do-best .services-full-image img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 0;
      object-fit: cover;
      margin-bottom: 0;
    }

    @media (max-width: 768px) {
      #services.new-do-best .services-image-wrap {
        padding: 56px 5% 0;
        gap: 32px;
      }
    }

    #services.new-do-best .services-sticky-wrap {
      position: sticky;
      top: 0;
      height: 100vh;
      display: flex;
      width: 100%;
      align-items: stretch;
      overflow: visible;
    }

    #services.new-do-best .left {
      flex: 0 0 40%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 72px 80px 80px;
      position: relative;
      background: var(--white);
    }

    #services.new-do-best .left::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    #services.new-do-best .left-inner {
      position: relative;
      z-index: 1;
    }

    #services.new-do-best .eyebrow {
      font-size: 8px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--mid);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 500;
    }

    #services.new-do-best .eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--mid);
    }

    #services.new-do-best .heading {
      font-family: var(--font-head);
      font-weight: 900;
      font-size: clamp(28px, 3.2vw, 46px);
      line-height: 1.0;
      letter-spacing: -0.02em;
      color: var(--black);
      margin-bottom: 22px;
    }

    #services.new-do-best .heading em {
      font-style: italic;
      font-weight: 700;
      color: var(--black);
    }

    #services.new-do-best .divider {
      width: 48px;
      height: 2px;
      background: var(--black);
      margin-bottom: 20px;
    }

    #services.new-do-best .body-text {
      font-size: 12px;
      line-height: 1.8;
      color: #444;
      font-weight: 300;
      max-width: 320px;
      letter-spacing: 0.01em;
    }

    #services.new-do-best .body-text strong {
      color: var(--black);
      font-weight: 500;
    }

    #services.new-do-best .left-counter {
      margin-top: 36px;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    #services.new-do-best .counter-num {
      font-family: var(--font-body);
      font-size: 36px;
      font-weight: 900;
      line-height: 1;
      color: var(--black);
      transition: all 0.5s cubic-bezier(0.77, 0, 0.18, 1);
      min-width: 44px;
    }

    #services.new-do-best .counter-track {
      flex: 1;
      height: 3px;
      background: rgba(0, 0, 0, 0.12);
      position: relative;
      max-width: 120px;
      border-radius: 999px;
      overflow: hidden;
    }

    #services.new-do-best .counter-fill {
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 0%;
      background: var(--black);
      border-radius: 999px;
      transition: width 0.6s cubic-bezier(0.77, 0, 0.18, 1);
    }

    #services.new-do-best .counter-total {
      font-size: 9px;
      letter-spacing: 0.12em;
      color: var(--mid);
    }

    #services.new-do-best .right {
      flex: 1;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: visible;
      min-height: 100vh;
    }

    #services.new-do-best .stack {
      position: relative;
      width: min(850px, 100%);
      height: 780px;

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

      isolation: isolate;
      overflow: visible;

      filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.13));
    }

    #services.new-do-best .card {
      position: absolute;
      left: 50%;
      top: 50%;

      width: min(1020px, 92vw);
      max-width: 100%;

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

      transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.6s ease,
        filter 0.6s ease;

      will-change: transform, opacity, filter;
      backface-visibility: hidden;
    }

    #services.new-do-best .card[data-index="0"] {
      aspect-ratio: 1373/773;
    }

    #services.new-do-best .card[data-index="1"] {
      aspect-ratio: 1400/762;
    }

    #services.new-do-best .card[data-index="2"] {
      aspect-ratio: 1642/925;
    }

    #services.new-do-best .card[data-index="3"] {
      aspect-ratio: 1658/930;
    }

    #services.new-do-best .card[data-index="4"] {
      aspect-ratio: 1597/861;
    }

    #services.new-do-best .card[data-index="5"] {
      aspect-ratio: 1564/843;
    }

    /* Mobile: make the card stack static and stacked vertically */
    @media (max-width: 768px) {
      #services.new-do-best {
        height: auto !important;
        padding: 36px 5% !important;
      }

      #services.new-do-best .services-sticky-wrap {
        position: static !important;
        height: auto !important;
        display: block !important;
        padding: 0 !important;
      }

      #services.new-do-best .right {
        min-height: 0 !important;
        padding: 0 !important;
      }

      #services.new-do-best .stack {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        filter: none !important;
      }

      #services.new-do-best .card {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 18px 0 !important;
        aspect-ratio: auto !important;
      }

    /* Mobile: stacked card deck � swipe up to reveal next card */
    @media (max-width: 768px) {
      #services.new-do-best {
        height: auto !important;
        padding: 0 !important;
        overflow: visible !important;
      }

      #services.new-do-best .services-sticky-wrap {
        position: static !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
      }

      /* Left panel sits above the card deck */
      #services.new-do-best .left {
        flex: none !important;
        padding: 48px 6% 32px !important;
        width: 100% !important;
      }

      #services.new-do-best .left-counter {
        display: flex !important;
      }

      #services.new-do-best .counter-track {
        width: 80px;
        max-width: 80px;
      }

      /* Right panel: fixed-height stage that holds the stacked deck */
      #services.new-do-best .right {
        flex: none !important;
        width: 100% !important;
        min-height: 0 !important;
        padding: 0 0 48px 0 !important;
        /* height driven by the card deck � no fixed height */
        height: auto !important;
        position: relative !important;
        overflow: visible !important;
      }

      /* The stack container � sized by the widest natural card */
      #services.new-do-best .stack {
        position: relative !important;
        width: 92% !important;
        margin: 0 auto !important;
        height: auto !important;
        display: block !important;
        filter: none !important;
        overflow: visible !important;
        /* min-height keeps space for behind-cards peeking below */
        padding-bottom: 54px !important;
      }

      /* All cards stacked on top of each other */
      #services.new-do-best .card {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        margin: 0 !important;

        opacity: 1 !important;
        pointer-events: auto !important;

        transition:
          transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
          opacity   0.45s cubic-bezier(0.22, 1, 0.36, 1),
          filter    0.45s ease !important;
        will-change: transform, opacity !important;
        backface-visibility: hidden !important;
        -webkit-backface-visibility: hidden !important;
      }

      /* Each card gets its exact image aspect-ratio on mobile */
      #services.new-do-best .card[data-index="0"] { aspect-ratio: 1373/773 !important; }
      #services.new-do-best .card[data-index="1"] { aspect-ratio: 1400/762 !important; }
      #services.new-do-best .card[data-index="2"] { aspect-ratio: 1642/925 !important; }
      #services.new-do-best .card[data-index="3"] { aspect-ratio: 1658/930 !important; }
      #services.new-do-best .card[data-index="4"] { aspect-ratio: 1597/861 !important; }
      #services.new-do-best .card[data-index="5"] { aspect-ratio: 1564/843 !important; }

      /* The active card is the one that sets the stack height */
      #services.new-do-best .card.mc-active {
        position: relative !important;
      }

      /* card image fills the slot without cropping */
      #services.new-do-best .card .card-inner-clip {
        width: 100% !important;
        height: 100% !important;
        border-radius: 20px !important;
        overflow: hidden !important;
      }

      #services.new-do-best .card img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
      }

      /* --- state classes applied by JS --- */

      /* active card: front of the deck, fully visible � position:relative set above */
      #services.new-do-best .card.mc-active {
        transform: translateY(0) scale(1) !important;
        opacity: 1 !important;
        filter: none !important;
        z-index: 10 !important;
      }

      /* cards waiting behind � slightly peeking */
      #services.new-do-best .card.mc-behind-1 {
        transform: translateY(22px) scale(0.94) !important;
        opacity: 0.72 !important;
        filter: brightness(0.82) !important;
        z-index: 9 !important;
      }

      #services.new-do-best .card.mc-behind-2 {
        transform: translateY(40px) scale(0.88) !important;
        opacity: 0.48 !important;
        filter: brightness(0.7) !important;
        z-index: 8 !important;
      }

      #services.new-do-best .card.mc-behind-3 {
        transform: translateY(54px) scale(0.83) !important;
        opacity: 0.28 !important;
        filter: brightness(0.6) !important;
        z-index: 7 !important;
      }

      /* cards further back: invisible but not display:none so transition works */
      #services.new-do-best .card.mc-hidden {
        transform: translateY(60px) scale(0.8) !important;
        opacity: 0 !important;
        pointer-events: none !important;
        z-index: 1 !important;
      }

      /* card swiping out upward */
      #services.new-do-best .card.mc-exit {
        transform: translateY(-110%) scale(0.92) !important;
        opacity: 0 !important;
        z-index: 20 !important;
        pointer-events: none !important;
      }
    }
    }

    #services.new-do-best .stack-overlay {
      display: none;
      position: absolute;
      top: -50%;
      left: -5%;
      width: 110%;
      height: 200%;
      z-index: 9;
      pointer-events: none;
      background: linear-gradient(to bottom,
          rgba(255, 255, 255, 1) 0%,
          rgba(255, 255, 255, 1) 6%,
          rgba(255, 255, 255, 0) 18%,
          rgba(255, 255, 255, 0) 82%,
          rgba(255, 255, 255, 1) 94%,
          rgba(255, 255, 255, 1) 100%);
    }

    #services.new-do-best .card-inner-clip {
      width: 100%;
      height: 100%;
      border-radius: 28px;
      overflow: hidden;
      position: relative;
      background: #0d0d0d;
    }

    #services.new-do-best .card img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      user-select: none;
      pointer-events: none;
    }

    #services.new-do-best .card-placeholder {
      width: 100%;
      height: 100%;
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: #bbb;
    }

    #services.new-do-best .card-placeholder svg {
      opacity: 0.4;
    }

    #services.new-do-best .card-placeholder span {
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      font-weight: 500;
    }

    #services.new-do-best .left-inner>* {
      opacity: 0;
      transform: translateY(18px);
      animation: services-fade-up 0.7s forwards ease-out;
    }

    #services.new-do-best .eyebrow {
      animation-delay: 0.1s;
    }

    #services.new-do-best .heading {
      animation-delay: 0.22s;
    }

    #services.new-do-best .divider {
      animation-delay: 0.34s;
    }

    #services.new-do-best .body-text {
      animation-delay: 0.42s;
    }

    #services.new-do-best .left-counter {
      animation-delay: 0.52s;
    }

    @keyframes services-fade-up {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
/* ==========================================
/* ==========================================
   MOBILE ONLY FIXES
   DOES NOT AFFECT DESKTOP/LAPTOP
========================================== */
@media only screen and (max-width: 768px) {

  /* =========================
     HERO SECTION
  ========================= */

  #hero-new,
  .hero-shell {
    min-height: 100svh;
  }

  .hero-content-wrap {
    min-height: auto;
  }

  .hero-shell {
    padding: 100px 20px 40px;
    border-radius: 0 0 30px 30px;
  }

  .hero-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    position: relative;
    z-index: 50;
  }

  .hero-nav {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  .hero-nav a {
    font-size: 0.8rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  }

  .hero-talk-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
  }

  .hero-body {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding-top: 40px;
  }

  .hero-left {
    transform: translateY(0) !important;
    max-width: 100%;
    position: relative;
    z-index: 20;
    isolation: isolate;
  }

  .hero-left,
  .hero-left * {
    color: white !important;
    mix-blend-mode: difference;
  }

  .hero-left h2 {
    line-height: 1.1;
    margin-top: 10px;
  }

  .hero-left .muted {
    white-space: normal;
  }

  .hero-bg-image {
    z-index: 1;
  }

  .hero-case-card {
    width: 100%;
    max-width: 320px;
  }

  .hero-giant-text {
    display: none;
  }

  /* =========================
     WHAT WE DO - PHONE ONLY
     6 STATIC CARDS
  ========================= */

  /* Kill pinned / sticky layout */
  .what-we-do-section,
  .what-we-do-wrapper,
  .what-we-do-container,
  .cards-wrapper,
  .sticky-wrapper {
    position: relative !important;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
    transform: none !important;
  }

  /* Remove desktop grid */
  .what-we-do-grid,
  .what-we-do-inner {
    display: block !important;
    height: auto !important;
  }

  /* Stack cards vertically */
  .what-we-do-cards,
  .cards-container,
  .cards-track {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: 100% !important;
    transform: none !important;
    left: 0 !important;
    right: 0 !important;
    top: auto !important;
    position: relative !important;
  }

  /* Make every card static � but NOT the new-do-best deck cards which have their own system */
  .what-we-do-card,
  .service-card {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;

    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    transform: none !important;
    translate: none !important;
    scale: 1 !important;
    opacity: 1 !important;

    margin: 0 !important;

    transition: none !important;
    animation: none !important;
  }

  /* Images fit mobile */
  .what-we-do-card img,
  .service-card img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  /* Disable nested animations � but NOT inside the new-do-best deck */
  .what-we-do-card *,
  .service-card *,
  .what-we-do-card::before,
  .what-we-do-card::after {
    animation: none !important;
    transition: none !important;
  }
}

  /* placeholder � mobile card deck handled above */

/* HERO DARK OVERLAY � mobile only */
@media (max-width: 768px) {
  .hero-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 5;
    pointer-events: none;
  }
}

/* CLIENTS / BRANDS � mobile-only tweaks: smaller logos + lighter marquee */
@media (max-width: 768px) {
  /* reduce logo item footprint */
  #clients .logo-item {
    padding: 0 18px !important;
    min-width: 140px !important;
    height: 56px !important;
  }

  #clients .logo-item img {
    max-height: 40px !important;
  }

  /* brands marquee logos � mobile: smaller logos + tighter gap so all 9 show */
  #brands .brands-track img {
    height: 44px !important;
    width: auto !important;
    flex-shrink: 0 !important;
  }

  #brands .brands-set {
    gap: 32px !important;
    padding-right: 32px !important;
  }

  .marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation-name: marquee;
    animation-duration: 25s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
  }
}
  
