/**
 * assets/css/main.css
 * Page-level layout styles: header, footer, and all section-specific rules.
 * Imports all partials via dependency ordering in enqueue.php.
 */

/* font-family: 'Raleway', sans-serif; */
/* ══════════════════════════════════════════════════════════════════════════════
   GLOBAL PAGE STRUCTURE
══════════════════════════════════════════════════════════════════════════════ */
body {
  background: none;
}
.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}
.goldBtn {
  color: #111;
  background: #f4c324;
}
.ButtonM {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  font-weight: 500;
}
.ButtonM:hover {
  transform: translateY(-2px);
}
.ButtonM i {
  font-size: 14px;
  transition: transform 0.4s ease;
  transform: rotate(-45deg);
}
.goldBtn:hover {
  background: #fecc40;
  color: #000;
}
/* Rotate arrow */
.goldBtn:hover i {
  transform: rotate(0deg);
}
.btnWOutline {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #eaeaea;
}
.btnWOutline i{  
  transform: rotate(0deg);
}
.btnWOutline:hover {
  background: #fecc40;
  color: #000;
}
.btnW {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: transparent;
}
.btnW:hover {
  background: #fecc40;
  color: #000;
  border-color: #000;
}

.site-main {
  flex: 1;
  padding-top: var(--header-height);
  /* offset for fixed header */
}

/* ── Skip Link (accessibility) ────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-accent-gold);
  color: #000;
  padding: var(--space-3) var(--space-6);
  font-weight: var(--weight-bold);
  z-index: var(--z-toast);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: var(--space-6);
  top: var(--space-6);
}

/* ══════════════════════════════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
  /* Extend behind header */
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#hero {
  margin-top: 0;
}
.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  /* 16:9 aspect ratio */
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Hero content area ─────────────────────────────────────────────────────── */

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: var(--space-32);
  padding-top: calc(var(--header-height) + var(--space-20));
}

/* Two-column inner grid */
.hero__inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--space-16);
  align-items: flex-end;
  width: 100%;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-8);
}

/* ── Eyebrow ──────────────────────────────────────────────────────────────── */

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--type-body-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
  opacity: 0.85;
}

.hero__eyebrow-icon {
  color: var(--color-accent-gold);
  flex-shrink: 0;
}

/* ── Headline ─────────────────────────────────────────────────────────────── */

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--type-display);
  line-height: var(--leading-tight);
  color: var(--color-text-primary);
  margin-bottom: 0;
  max-width: 20ch;
  font-weight: var(--weight-bold);
}

.hero__headline .line {
  display: block;
  overflow: hidden;
  /* Clip reveal container */
}

/* ── Description ──────────────────────────────────────────────────────────── */

.hero__description {
  font-size: var(--type-body-sm);
  color: var(--color-text-secondary);
  max-width: 42ch;
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* ── CTA buttons ──────────────────────────────────────────────────────────── */

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

/* ── Deprecated: hero__subtext kept for back-compat ──────────────────────── */
.hero__subtext {
  font-size: var(--type-body-lg);
  color: var(--color-text-secondary);
  max-width: 52ch;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-10);
}

/* ── Bottom stats strip ───────────────────────────────────────────────────── */

.hero__stats-strip {
  position: relative;
  z-index: 3;
  padding-block: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stats-row {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.hero__stat-label {
  font-size: var(--type-body-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  letter-spacing: var(--tracking-wide);
  white-space: nowrap;
  transition: color var(--duration-normal) var(--ease-out);
}

.hero__stat-label:hover {
  color: var(--color-accent-gold);
}

.hero__stat-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* ── Scroll indicator ─────────────────────────────────────────────────────── */

.hero__scroll-indicator {
  position: absolute;
  bottom: calc(var(--space-10) + 48px);
  /* above stats strip */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--type-label);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  animation: fadeInUp 1s var(--ease-out) 1.5s both;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--color-accent-gold));
  animation: lineGrow 1s var(--ease-out) 2s both;
}

/* =========================================
   PREMIUM HERO
========================================= */

.hero {
  position: relative;
  min-height: calc(100vh - 28px);
  margin: 14px;
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #111;
}

/* =========================================
   BACKGROUND
========================================= */

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero__bg-image,
.hero__bg-video,
.hero__bg-video iframe {
  width: 100%;
  height: 100%;
}

.hero__bg-image {
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77777778vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
}

/* =========================================
   DARK OVERLAY
========================================= */

.hero__overlay {
  position: absolute;
  inset: 0;

  /* background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.48) 45%,
      rgba(0, 0, 0, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.3) 0%,
      transparent 35%,
      rgba(0, 0, 0, 0.55) 100%
    ); */
  background: #00000088;
}

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

.hero__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 96px;

  display: flex;
  align-items: center;

  padding: 0 46px;

  z-index: 10;
}

/* LOGO */

.hero__logo {
  flex: 1;
}

.hero__logo a {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #fff;
  text-decoration: none;
}

.hero__logo img {
  max-width: 215px;
  height: auto;
}

.hero__logo-mark {
  font-size: 26px;
  font-weight: 800;
  color: #f4c324;
}

.hero__logo-text {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -1px;
}

/* NAV */

.hero__nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.hero__nav a {
  position: relative;

  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;

  font-size: 14px;
  font-weight: 400;

  transition: color 0.3s ease;
}

.hero__nav a:hover {
  color: #fff;
}

.nav-arrow {
  margin-left: 4px;
  font-size: 17px;
}

/* HEADER BUTTON */

.hero__header-cta {
  margin-left: auto;

  display: inline-flex;
  align-items: center;
  gap: 20px;

  padding: 11px 20px 11px 24px;

  color: #171717;
  background: #fff;

  border-radius: 50px;

  font-size: 14px;
  text-decoration: none;

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

.hero__header-cta:hover {
  transform: translateY(-2px);
  background: #f4c324;
  color: #fff;
}

/* =========================================
   MAIN CONTENT
========================================= */

.hero__content {
  position: relative;
  /* min-height: calc(100vh - 28px); */

  display: flex;
  align-items: flex-end;

  padding: 0 30px;
}

.hero__main {
  width: 100%;

  display: flex;
  gap: 70px;

  align-items: end;
}

/* =========================================
   EYEBROW
========================================= */

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 0 0 26px;

  font-size: 15px;
  line-height: 1;

  color: #fff;
}

.hero__eyebrow svg {
  color: #f4c324;
}

#hero {
  position: relative;
  top: 0;
  width: 100%;
  left: 0;
  padding: 15px;
  margin-top: -65px;
  max-width: 98%;
}
/* =========================================
   HEADLINE
========================================= */

.hero__headline {
  max-width: 895px;

  margin: 0;

  font-size: clamp(52px, 5.1vw, 72px);
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  letter-spacing: -4%;
}

.hero__headline span {
  display: block;
}

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

.hero__right {
  max-width: 430px;
  padding-bottom: 1px;
}

.hero__description {
  margin: 0 0 0px;

  color: #fff;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.5;
}
.hero_bottom_section {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-end;
  margin-bottom: 1%;
}
/* =========================================
   CTA BUTTONS
========================================= */

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

.hero__btn {
  min-height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 20px;

  border-radius: 50px;

  font-size: 14px;
  text-decoration: none;

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

.hero__btn:hover {
  transform: translateY(-2px);
}

.hero__btn--primary {
  color: #111;
  background: #f4c324;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  font-weight: 500;
}

.hero__btn--primary:hover {
  background: #fecc40;
  color: #000;
}
.hero__btn--primary i {
  font-size: 14px;
  transition: transform 0.4s ease;
}
/* Rotate arrow */
.hero__btn--primary:hover i {
  transform: rotate(45deg);
}
.hero__btn--outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: transparent;
}

.hero__btn--outline:hover {
  background: #fecc40;
  border-color: #fecc40;
  color: #000;
}

/* =========================================
   STATS
========================================= */

.hero__stats {
  position: static;
  display: flex;
  align-items: center;
  gap: 0;
  z-index: 5;
  width: 100%;
  justify-content: space-between;
  max-width: 640px;
  margin-bottom: 1%;
  margin-left: 2%;
}

.hero__stats span {
  position: relative;

  padding: 0px;

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

  font-size: 14px;
}

.hero__stats span:first-child {
  padding-left: 0;
}

/* .hero__stats span + span::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 1px;
  height: 16px;

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

  transform: translateY(-50%);
} */

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

@media (max-width: 1100px) {
  .hero__nav {
    gap: 20px;
  }

  .hero__header {
    padding: 0 32px;
  }

  .hero__content {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero__headline {
    font-size: clamp(48px, 6vw, 68px);
  }

  .hero__main {
    gap: 40px;
  }

  .hero__stats {
    left: 32px;
  }
}

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

@media (max-width: 768px) {
  .hero {
    min-height: 720px;
    margin: 8px;
    border-radius: 20px;
  }

  .hero__header {
    height: 76px;
    padding: 0 20px;
  }

  .hero__nav {
    display: none;
  }

  .hero__logo-text {
    font-size: 18px;
  }

  .hero__header-cta {
    padding: 10px 16px;
    gap: 10px;
    font-size: 12px;
  }

  .hero__content {
    min-height: 720px;
    padding: 110px 22px 130px;
    align-items: flex-end;
  }

  .hero__main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
  }

  .hero__headline {
    font-size: clamp(42px, 11vw, 62px);
    letter-spacing: -2.5px;
    line-height: 1;
  }

  .hero__eyebrow {
    margin-bottom: 20px;
    font-size: 13px;
  }

  .hero__right {
    max-width: 100%;
  }

  .hero__description {
    max-width: 420px;
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero__ctas {
    flex-wrap: wrap;
  }

  .hero__stats {
    left: 22px;
    right: 22px;
    bottom: 28px;

    justify-content: space-between;
  }

  .hero__stats span {
    padding: 0 12px;
    font-size: 11px;
  }

  .hero__stats span:first-child {
    padding-left: 0;
  }

  .hero__stats span + span::before {
    height: 12px;
  }
}

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

@media (max-width: 480px) {
  .hero__header-cta span {
    display: none;
  }

  .hero__header-cta {
    padding: 11px;
  }

  .hero__headline {
    font-size: 40px;
  }

  .hero__ctas {
    width: 100%;
  }

  .hero__btn {
    flex: 1;
    gap: 10px;
    padding: 12px 15px;
  }

  .hero__stats span {
    font-size: 9px;
    padding: 0 7px;
  }
}
/* ══════════════════════════════════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════════════════════════════════ */

.stats-section {
  background: #ffffff;
  padding-block: 70px;
  border-top: 2px dashed #e6e6e6;
}

.stats-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 35px;
}

.stats-header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffb800;
  width: 18px;
  height: 18px;
}

.stats-header__icon svg {
  width: 100%;
  height: 100%;
}

.stats-header__title {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  text-transform: capitalize;
  --font-display: "Stack Sans Headline", Arial, sans-serif;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0;
}

.stat-item__number {
  font-size: clamp(48px, 5.5vw, 64px);
  font-weight: 400;
  color: #0a0a0a;
  line-height: 1;
  margin: 0 0 24px 0;
  letter-spacing: -2px;
  --font-display: "Stack Sans Headline", Arial, sans-serif;
}

.stat-item__content {
  border-top: 2px dashed #e6e6e6;
  padding-top: 20px;
}

.stat-item__label {
  font-size: 18px;
  font-weight: 600;
  color: #0a0a0a;
  margin: 0 0 10px 0;
  line-height: 1.3;
  text-transform: capitalize;
  letter-spacing: -3%;
}

.stat-item__description {
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

@media (max-width: 991px) {
  .stats-section {
    padding-block: 60px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-section {
    padding-block: 50px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   SERVICES LIST SECTION
══════════════════════════════════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════════════════════════════════
   SERVICES SECTION (INTERACTIVE)
══════════════════════════════════════════════════════════════════════════════ */

.services-section {
  padding-block: 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #ffffff;
  overflow: visible;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65); /* Darken background for text readability */
  z-index: 1;
}

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

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 40px;
}

.services-header__left {
  flex: 0 0 73%;
}

.services-header__right {
  flex: 0 0 25%;
}

.services-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4%;
}

.services-eyebrow__icon {
  display: inline-flex;
  align-items: center;
  color: #ffb800;
  width: 22px;
  height: 22px;
}

.services-eyebrow__icon svg {
  width: 100%;
  height: 100%;
}

.services-eyebrow__title {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.services-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
  letter-spacing: -4%;
  font-family: "Raleway", sans-serif;
}

.services-title__icon {
  display: inline-block;
  vertical-align: middle;
  margin-inline: 8px;
}

.services-title__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.services-intro-text {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
  max-width: 325px;
  font-weight: 400;
}

.services-divider {
  width: 100%;
  height: 1px;
  background: #a5a5a5;
  margin-bottom: 50px;
}

.services-content-wrapper {
  display: flex;
  gap: 110px;
  align-items: stretch;
}

.services-list-column {
  flex: 0 0 60%;
}

.services-list-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  padding-block: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin-top: -1px;
  gap: 8px;

  border: none !important;

  /* Top + Bottom dashed borders */
  background-image:
    repeating-linear-gradient(
      to right,
      #cccccc 0,
      #cccccc 4px,
      transparent 4px,
      transparent 8px
    ),
    repeating-linear-gradient(
      to right,
      #cccccc 0,
      #cccccc 4px,
      transparent 4px,
      transparent 8px
    );

  background-size:
    100% 1px,
    100% 1px;

  background-position: top, bottom;

  background-repeat: no-repeat, no-repeat;
}

/* Hover + Active */
.services-list-item.is-active,
.services-list-item:hover {
  border: none !important;

  /* Top + Bottom yellow dashed borders */
  background-image:
    repeating-linear-gradient(
      to right,
      #efb800 0,
      #efb800 4px,
      transparent 4px,
      transparent 8px
    ),
    repeating-linear-gradient(
      to right,
      #efb800 0,
      #efb800 4px,
      transparent 4px,
      transparent 8px
    );

  background-size:
    100% 1px,
    100% 1px;

  background-position: top, bottom;

  background-repeat: no-repeat, no-repeat;
}

.services-list-item__title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
  font-family: "Raleway", sans-serif;
}

.services-list-item__number {
  font-size: 22px;
  font-family: monospace;
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
  position: relative;
  top: -6px;
}

.services-list-item:hover .services-list-item__title,
.services-list-item.is-active .services-list-item__title {
  color: #ffffff;
  transform: translateX(10px);
}

.services-list-item:hover .services-list-item__number,
.services-list-item.is-active .services-list-item__number {
  color: #ffb800;
  transform: translateX(10px);
}
.services-list-item.is-active + .services-list-item,
.services-list-item:hover + .services-list-item {
  background-image:
    repeating-linear-gradient(
      to right,
      #efb800 0,
      #efb800 4px,
      transparent 4px,
      transparent 8px
    ),
    repeating-linear-gradient(
      to right,
      #cccccc 0,
      #cccccc 4px,
      transparent 4px,
      transparent 8px
    );

  background-position: top, bottom;
  background-size:
    100% 1px,
    100% 1px;
  background-repeat: no-repeat;
}
/* Right Column: Preview Cards Container */
.services-preview-column {
  flex: 0 0 27%;
  position: relative;
  align-self: stretch;
  z-index: 3;
}

.services-preview-card-container {
  position: sticky;
  top: calc(var(--header-height, 80px) + 24px);
  width: 100%;
  min-height: 480px;
}

.services-preview-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    visibility 0.5s;
  pointer-events: none;
}

.services-preview-card.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.services-preview-card__image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.services-preview-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-preview-card__title {
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 12px 0;
}

.services-preview-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: #bbbbbb;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .services-header__left,
  .services-header__right {
    flex: 0 0 100%;
  }
  .services-content-wrapper {
    flex-direction: column;
    gap: 50px;
  }
  .services-list-column,
  .services-preview-column {
    flex: 0 0 100%;
    width: 100%;
    position: static;
  }
  .services-preview-card-container {
    position: relative;
    top: auto;
    min-height: auto;
  }
  .services-preview-card {
    position: relative;
    display: none;
  }
  .services-preview-card.is-active {
    display: block;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
    SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════════════════════════════════════ */

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings inside grids */
.stats-grid .reveal-up:nth-child(2) {
  transition-delay: 0.1s;
}
.brand-process__cards .reveal-up:nth-child(2) {
  transition-delay: 0.1s;
}
.brand-process__cards .reveal-up:nth-child(3) {
  transition-delay: 0.2s;
}
.brand-process__cards .reveal-up:nth-child(4) {
  transition-delay: 0.3s;
}

.featured-cases__grid .reveal-up:nth-child(2) {
  transition-delay: 0.1s;
}
.featured-cases__grid .reveal-up:nth-child(3) {
  transition-delay: 0.2s;
}
.featured-cases__grid .reveal-up:nth-child(4) {
  transition-delay: 0.15s;
}
.featured-cases__grid .reveal-up:nth-child(5) {
  transition-delay: 0.25s;
}

.cta-stories__inner .reveal-up:nth-child(2) {
  transition-delay: 0.1s;
}
.cta-stories__inner .reveal-up:nth-child(3) {
  transition-delay: 0.2s;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.studio-slider-section__link i {
  font-size: 14px;
  transition: transform 0.25s ease;
}

.studio-slider-section__link:hover {
  color: #febf10;
}

.studio-slider-section__link:hover i {
  transform: translateX(4px);
}

.studio-slider {
  overflow: visible;
  width: 100%;
}

.studio-slider__slide {
  aspect-ratio: 0.82;
  border-radius: 18px;
  overflow: hidden;
  background: #e5e5e0;
}

.studio-slider__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .studio-slider-section__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .studio-slider-section__link {
    justify-self: start;
  }
}

@media (max-width: 576px) {
  .studio-slider-section {
    padding-top: 48px;
  }

  .studio-slider-section__inner {
    padding-inline: 18px;
  }

  .studio-slider-section__header {
    gap: 22px;
    margin-bottom: 28px;
  }

  .studio-slider-section__headline {
    font-size: clamp(30px, 11vw, 42px);
  }

  .studio-slider__slide {
    border-radius: 14px;
  }
}

/* =========================================
   FEATURED CASES SECTION
========================================= */

.featured-cases {
  background: #f3f3f3;
  color: #0b0b0b;
  padding-top: clamp(58px, 7vw, 96px);
  padding-bottom: 4%;
}

.featured-cases__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 64px);
}

.featured-cases__header {
  margin: 0 auto clamp(44px, 5vw, 50px);
  text-align: center;
}

.featured-cases__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.featured-cases__eyebrow span {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #f4b400;
}

.featured-cases__headline {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: clamp(34px, 4.3vw, 58px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -4%;
  color: #0a0a0a;
}

.featured-cases__intro {
  max-width: 620px;
  margin: 24px auto 0;
  color: #333;
  font-size: 19px;
  line-height: 1.55;
}

.featured-cases__grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: clamp(54px, 8vw, 108px) clamp(28px, 5vw, 80px);
  align-items: start;
}

.featured-cases__item {
  min-width: 0;
}

.featured-cases__item--left {
  grid-column: 1 / span 6;
}

.featured-cases__item--right {
  grid-column: 8 / span 5;
}

.featured-cases__item--center {
  grid-column: 4 / span 6;
}

.featured-cases__item--large .featured-cases__media {
  aspect-ratio: 1.78;
}

.featured-cases__item--medium .featured-cases__media {
  aspect-ratio: 1.72;
}

.featured-cases__item--small .featured-cases__media {
  aspect-ratio: 1.85;
}

.featured-cases__media {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: #ddd;
}

.featured-cases__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.featured-cases__media:hover img {
  transform: scale(1.045);
}

.featured-cases__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 18px;
  margin-top: 22px;
}

.featured-cases__body h3 {
  margin: 0;
  color: #080808;
  font-family: "Raleway", var(--font-display), sans-serif;
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.featured-cases__body p {
  margin: 0;
  color: #5d5d5d;
  font-size: 18px;
  line-height: 1.3;
  white-space: nowrap;
}

.featured-cases__all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: clamp(54px, 7vw, 50px);
  padding: 22px 20px;

  border: none !important;

  background-image:
    repeating-linear-gradient(
      to right,
      #febf10 0,
      #febf10 4px,
      transparent 4px,
      transparent 8px
    ),
    repeating-linear-gradient(
      to right,
      #febf10 0,
      #febf10 4px,
      transparent 4px,
      transparent 8px
    );

  background-size:
    100% 1px,
    100% 1px;
  background-position: top, bottom;
  background-repeat: no-repeat, no-repeat;

  color: #111;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.25s ease,
    background 0.25s ease;
  font-family: "Raleway", sans-serif;
}

.featured-cases__all i {
  font-size: 22px;
  transition: transform 0.25s ease;
}

.featured-cases__all:hover {
  background: #f6e5aa;
  color: #000;
}

.featured-cases__all:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .featured-cases__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px 24px;
  }

  .featured-cases__item--left,
  .featured-cases__item--right,
  .featured-cases__item--center {
    grid-column: auto;
  }

  .featured-cases__item--center {
    grid-column: 1 / -1;
    width: min(100%, 640px);
    justify-self: center;
  }
}

@media (max-width: 640px) {
  .featured-cases {
    padding-top: 52px;
  }

  .featured-cases__inner {
    padding-inline: 18px;
  }

  .featured-cases__header {
    text-align: left;
    margin-bottom: 34px;
  }

  .featured-cases__eyebrow {
    justify-content: flex-start;
  }

  .featured-cases__grid {
    display: flex;
    flex-direction: column;
    gap: 42px;
  }

  .featured-cases__item--center {
    width: 100%;
  }

  .featured-cases__body {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .featured-cases__body p {
    white-space: normal;
  }

  .featured-cases__all {
    margin-top: 48px;
  }
}

/* =========================================
   BRAND PROCESS SECTION
========================================= */

.brand-process {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: clamp(72px, 7vw, 108px) 0 clamp(70px, 7vw, 104px);
}

.brand-process__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: hsl(0deg 0% 4% / 70%);
}

.brand-process__inner {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 64px);
}

.brand-process__top {
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(280px, 450px);
  align-items: end;
  justify-content: space-between;
  gap: clamp(34px, 6vw, 90px);
  margin-bottom: clamp(44px, 5vw, 62px);
}

.brand-process__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 36px;
  color: #f5f5f5;
  font-size: 18px;
  font-weight: 400;
}

.brand-process__eyebrow span {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #f4b400;
}

.brand-process__headline {
  max-width: 540px;
  margin: 0;
  color: #fff;
  font-family: "Raleway", var(--font-display), sans-serif;
  font-size: clamp(40px, 5.4vw, 56px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: 0;
}

.brand-process__intro {
  max-width: 430px;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 20px;
  line-height: 1.5;
}

.brand-process__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 20px);
}

.brand-process-card {
  min-height: 435px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px 22px 24px;
  border-radius: 10px;
  background: #fff;
  color: #111;
}

.brand-process-card h3 {
  margin: 0;
  color: #121212;
  font-family: "Raleway", var(--font-display), sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.brand-process-card__icon {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  color: #ededed;
  margin: 7% 0;
  margin-top: 10%;
}

.brand-process-card__icon img {
  width: 100%;
  height: auto;
  line-height: 1;
}

.brand-process-card p {
  margin: auto 0 0;
  color: #0a0a0a;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 1180px) {
  .brand-process__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-process-card {
    min-height: 380px;
  }
}

@media (max-width: 820px) {
  .brand-process__top {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .brand-process__eyebrow {
    margin-bottom: 24px;
  }

  .brand-process__intro {
    max-width: 620px;
    font-size: 18px;
  }
}

@media (max-width: 580px) {
  .brand-process {
    padding-block: 54px;
  }

  .brand-process__inner {
    padding-inline: 18px;
  }

  .brand-process__cards {
    grid-template-columns: 1fr;
  }

  .brand-process-card {
    min-height: 340px;
  }

  .brand-process-card__icon {
    min-height: 180px;
  }

  .brand-process-card__icon i {
    font-size: 116px;
  }
}

.about-intro {
  padding-block: var(--section-padding-v);
  background: var(--color-bg-secondary);
}

.about-intro__image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-3);
}

.about-intro__image-grid .image-item:first-child {
  grid-column: 1 / -1;
}

.about-intro__industries {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

/* ══════════════════════════════════════════════════════════════════════════════
   PORTFOLIO GRID SECTION
══════════════════════════════════════════════════════════════════════════════ */

.portfolio-section {
  padding-block: var(--section-padding-v);
  background: var(--color-bg-primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.portfolio-filter-btn {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: var(--type-body-sm);
  font-weight: var(--weight-medium);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.is-active {
  background: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
  color: #000;
}

/* ══════════════════════════════════════════════════════════════════════════════
   TEAM SPOTLIGHT SECTION
══════════════════════════════════════════════════════════════════════════════ */

.team-spotlight {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.team-spotlight__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.team-spotlight__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-spotlight__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.team-spotlight__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: var(--space-20);
  max-width: 50%;
}

.team-spotlight__name {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  text-transform: uppercase;
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
}

.team-spotlight__role {
  font-size: var(--type-body-lg);
  color: var(--color-accent-gold);
  margin-bottom: var(--space-6);
  font-weight: var(--weight-medium);
}

.team-spotlight__bio {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  max-width: none;
}

/* ══════════════════════════════════════════════════════════════════════════════
   CTA BANNER SECTION
══════════════════════════════════════════════════════════════════════════════ */

.cta-banner {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-24);
  text-align: center;
}

.cta-banner__headline {
  font-family: var(--font-display);
  font-size: var(--type-h1);
  text-transform: uppercase;
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-4);
}

.cta-banner__headline .accent {
  color: var(--color-accent-gold);
}

.cta-banner__subtext {
  color: var(--color-text-secondary);
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

/* ══════════════════════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════════════════════ */

.site-footer {
  padding: 14px;
  padding-top: 0;
}

.footer-wrap {
  border-radius: 20px;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 5vw, 64px) clamp(28px, 4vw, 40px);
  position: relative;
  overflow: hidden;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center right;
}

/* dark overlay so text stays readable */
.footer-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

/* ensure content sits above overlay */
.footer-wrap > * {
  position: relative;
  z-index: 1;
}

.footer-wrap__bg {
  display: none;
}

/* ── Top grid ───────────────────────────────────────────────────────────────── */

.footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
  margin-bottom: clamp(40px, 5vw, 64px);
}

/* ── Newsletter ─────────────────────────────────────────────────────────────── */

.footer-newsletter__heading {
  font-family: "Raleway", sans-serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 28px;
  letter-spacing: -0.3px;
}

.footer-newsletter__form {
  display: flex;
  align-items: center;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 5px 5px 5px 20px;
  gap: 8px;
  margin-bottom: 24px;
}

.footer-newsletter__input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  min-width: 0;
}

.footer-newsletter__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #111;
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.footer-newsletter__btn i {
  font-size: 12px;
  transition: transform 0.3s ease;
  transform: rotate(-45deg);
}

.footer-newsletter__btn:hover {
  background: #f4b400;
}

.footer-newsletter__btn:hover i {
  transform: rotate(0deg);
}

/* ── Social buttons ─────────────────────────────────────────────────────────── */

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    color 0.25s ease;
}

.footer-social-btn:hover {
  border-color: #f4b400;
  color: #f4b400;
}

.footer-social-btn__arrow {
  font-size: 9px;
  opacity: 0.55;
  color: #fff;
  transform: rotate(-45deg);
  transition: transform 0.4s ease;
}
.footer-social-btn:hover .footer-social-btn__arrow {
  transform: rotate(0deg);
  color: #f4b400;
  opacity: 1;
}
/* ── Nav columns ────────────────────────────────────────────────────────────── */

.footer-nav {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.8fr 1.4fr;
  gap: 0;
}

.footer-nav__col {
  padding: 0 clamp(16px, 2.5vw, 32px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav__col:first-child {
  padding-left: 0;
  border-left: none;
}

.footer-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav__list a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-nav__list a:hover {
  color: #f4b400;
}

.footer-nav__contact-title {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 16px;
}

.footer-nav__contact-text {
  color: rgba(255, 255, 255, 1);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 10px;
}

.footer-nav__contact-text a {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav__contact-text a:hover {
  color: #f4b400;
}

/* ── Divider ────────────────────────────────────────────────────────────────── */

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: clamp(20px, 3vw, 32px);
}

/* ── Bottom bar ─────────────────────────────────────────────────────────────── */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom__copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin: 0;
}

.footer-bottom__links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom__links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom__sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 13px;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-nav__col {
    padding: clamp(16px, 2vw, 24px) clamp(16px, 2.5vw, 32px);
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-nav__col:first-child,
  .footer-nav__col:nth-child(2) {
    border-top: none;
    padding-top: 0;
  }

  .footer-nav__col:nth-child(odd) {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 480px) {
  .site-footer {
    padding: 8px;
    padding-top: 0;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }

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

/* ══════════════════════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════════════════════════ */

.page-hero {
  padding-top: calc(var(--header-height) + var(--space-16));
  padding-bottom: var(--space-16);
  background: var(--color-bg-secondary);
  border-bottom: 1px solid var(--color-border);
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: var(--type-h1);
  text-transform: uppercase;
  color: var(--color-text-primary);
}

/* ══════════════════════════════════════════════════════════════════════════════
   404 PAGE
══════════════════════════════════════════════════════════════════════════════ */

.error-404-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.error-404-section__number {
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 240px);
  color: var(--color-accent-gold);
  opacity: 0.15;
  line-height: 1;
  display: block;
}
/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES
══════════════════════════════════════════════════════════════════════════════ */

@media (min-width: 1024px) {
  #testimonials .testimonials-header {
    display: flex;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: clamp(32px, 5vw, 80px);
    margin-bottom: clamp(40px, 5vw, 56px);
    justify-content: space-between;
  }
}
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .team-spotlight__content {
    max-width: 100%;
  }

  /* Hero: tighter gap on tablet */
  .hero__inner {
    gap: var(--space-10);
  }
}

@media (max-width: 768px) {
  /* Hero: stack to single column */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .hero__headline {
    max-width: 100%;
  }

  .hero__description {
    max-width: 100%;
  }

  .hero__scroll-indicator {
    display: none;
  }

  .hero__stats-row {
    gap: var(--space-6);
    flex-wrap: wrap;
  }

  /* Other sections */
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

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

  .stats-grid .stat-item:nth-child(2) {
    border-right: none;
  }

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

  .about-intro__image-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero__ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__stats-row {
    gap: var(--space-4);
  }

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

  .cta-banner__headline {
    font-size: clamp(32px, 8vw, 48px);
  }
}

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
  width: 100%;
  background: #ffffff;
  border-top: 2px dashed #e6e6e6;
  border-bottom: 2px dashed #e6e6e6;
  overflow: hidden;
  margin-top: 2%;
}

.trust-strip__container {
  width: 100%;
  /* min-height: 150px; */
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 3%;
}

/* =========================================================
   INTRO
========================================================= */

.trust-strip__intro {
  flex: 0 0 351px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.trust-strip__text {
  max-width: 287.12px;
  margin: 0;
  color: #0a0a0a;
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

/* =========================================================
   STAR / BURST ICON
========================================================= */

.trust-strip__icon {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 68px;
}

.trust-strip__icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 68px;
  background: #ffb800;
  transform-origin: center;
  border-radius: 2px;
}

.trust-strip__icon span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(0deg);
}

.trust-strip__icon span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.trust-strip__icon span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(90deg);
}

.trust-strip__icon span:nth-child(4) {
  transform: translate(-50%, -50%) rotate(135deg);
}

.trust-strip__icon span:nth-child(5) {
  transform: translate(-50%, -50%) rotate(22.5deg);
}

.trust-strip__icon span:nth-child(6) {
  transform: translate(-50%, -50%) rotate(67.5deg);
}

.trust-strip__icon span:nth-child(7) {
  transform: translate(-50%, -50%) rotate(112.5deg);
}

.trust-strip__icon span:nth-child(8) {
  transform: translate(-50%, -50%) rotate(157.5deg);
}

/* =========================================================
   LOGOS
========================================================= */

.trust-strip__logos {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.trustSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
  display: flex;
  align-items: center;
}

.trust-strip__logo {
  flex: 0 0 auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.trust-strip__logo img {
  display: block;
  width: auto;
  max-width: 150px;
  max-height: 65px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.6;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.trust-strip__logo:hover img {
  opacity: 1;
  transform: translateY(-3px);
}

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

@media (max-width: 1200px) {
  .trust-strip__container {
    gap: 35px;
    padding: 25px 4%;
  }

  .trust-strip__intro {
    flex-basis: 400px;
  }

  .trust-strip__text {
    font-size: 19px;
  }

  .trust-strip__logos {
    gap: 25px;
  }

  .trust-strip__logo img {
    max-width: 120px;
  }
}

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

@media (max-width: 991px) {
  .trust-strip__container {
    flex-direction: column;
    align-items: flex-start;
    padding: 35px 5%;
  }

  .trust-strip__intro {
    flex: none;
    width: 100%;
  }

  .trust-strip__logos {
    width: 100%;
    margin-top: 25px;
  }

  .trust-strip__logo img {
    max-width: 130px;
  }
}

@media (max-width: 576px) {
  .trust-strip__intro {
    gap: 18px;
  }

  .trust-strip__icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .trust-strip__icon span {
    width: 5px;
    height: 52px;
  }

  .trust-strip__text {
    font-size: 17px;
    line-height: 1.4;
  }

  .trust-strip__logos {
    margin-top: 15px;
  }

  .trust-strip__logo img {
    max-width: 110px;
    max-height: 50px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
══════════════════════════════════════════════════════════════════════════════ */

.section--testimonials {
  background: #f3f3f3;
  padding-block: clamp(60px, 7vw, 96px);
}

/* ── Header ─────────────────────────────────────────────────────────────────── */

.testimonials-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: clamp(32px, 5vw, 80px);
  margin-bottom: clamp(40px, 5vw, 56px);
}

.testimonials-header__left {
  display: flex;
  flex-direction: column;
}

.testimonials-header__headline {
  font-family: "Raleway", var(--font-display), sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.08;
  color: #0a0a0a;
  margin: 12px 0 0;
  letter-spacing: -1px;
}

.testimonials-header__desc {
  font-size: 18px;
  line-height: 1.5;
  color: #0a0a0a;
  margin: 0;
  max-width: 35ch;
  align-self: end;
  padding-bottom: 0px;
}

/* ── Section label override for light bg ────────────────────────────────────── */

.section--testimonials .section-label {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: normal;
}

.section--testimonials i {
  color: #f4b400;
}

/* ── Swiper ─────────────────────────────────────────────────────────────────── */

.testimonials-swiper {
  overflow: hidden;
}

/* ── Testimonial Card ───────────────────────────────────────────────────────── */

.tcard {
  background: #fff;
  border-radius: 16px;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Top row: avatar left, logo right */
.tcard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tcard__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #f0f0f0;
}

.tcard__avatar--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4b400;
  color: #000;
  font-weight: 700;
  font-size: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tcard__logo {
  max-height: 36px;
  max-width: 110px;
  width: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.75;
}

.tcard__logo-text {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.3px;
  font-family: "Raleway", sans-serif;
  line-height: 1.1;
  text-align: right;
  max-width: 120px;
}

/* Quote */
.tcard__quote {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.65;
  color: #000;
  margin: 0;
  flex: 1;
  font-family: "Raleway", sans-serif;
}

.tcard__quote-mark {
  color: #f4b400;
  font-size: 20px;
  margin-right: 4px;
  line-height: 1;
  vertical-align: middle;
}

/* Author */
.tcard__author {
  border-top: 1px solid #ebebeb;
  padding-top: 16px;
}

.tcard__name {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin: 0 0 4px;
}

.tcard__role {
  font-size: 14px;
  color: #000;
  margin: 0;
}

/* ── Footer: dots + arrows ──────────────────────────────────────────────────── */

.testimonials-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.testimonials-pagination.swiper-pagination {
  position: static;
  width: auto;
  display: flex;
  align-items: center;
  gap: 3px;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
  border-radius: 50%;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  background: #0a0a0a;
  transform: scale(1.2);
}

.testimonials-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tcard-prev,
.tcard-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #d0d0d0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #222;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    opacity 0.25s ease;
  position: static;
  margin: 0;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0);
  border: none;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: 20px;
}
.tcard-prev:hover {
  background: #000 !important;
}
button.tcard-prev.swiper-button-prev svg {
  color: #cccccc;
}
.tcard-prev::after,
.tcard-next::after {
  display: none;
}

.tcard-prev:hover {
  border-color: #aaa;
  background: #f5f5f5;
}

.tcard-next {
  background: #fecc40;
  border-color: #fecc40;
  color: #000;
  box-shadow: 0 2px 8px rgba(244, 180, 0, 0.25);
}

.tcard-next:hover {
  background: #e0a500;
  border-color: #e0a500;
}

/* Disabled / fade state */
.tcard-prev.swiper-button-disabled,
.tcard-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .testimonials-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonials-header__desc {
    align-self: start;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .tcard {
    padding: 22px 18px 20px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   FOUNDER SPOTLIGHT SECTION
══════════════════════════════════════════════════════════════════════════════ */

.founder-section {
  background: #fff;
  padding: clamp(40px, 5vw, 70px) clamp(16px, 4vw, 60px);
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1300px;
  margin: 0 auto;
  min-height: 480px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.13);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── Left: photo ─────────────────────────────────────────────────────────── */

.founder-photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.founder-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  display: block;
  max-width: 576px;
  transform: scale(0.8);
  transform-origin: bottom;
}

/* ── Right: content with bg image + dark overlay ────────────────────────── */

.founder-content {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.founder-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

.founder-content__inner {
  position: relative;
  z-index: 2;
  padding: clamp(36px, 5vw, 52px) clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
  gap: 0;
  border-left: 2px solid #ffffff8e;
}

/* Badge */
.founder-badge {
  display: inline-block;
  background: #f4b400;
  color: #000;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
  width: fit-content;
  letter-spacing: 0.2px;
  margin-bottom: 25px;
}

/* Name — metallic gradient like design */
.founder-name {
  font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1;
  margin: 0 0 24px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 0%, #fff 55%, #f4b400 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Bio */
.founder-bio {
  font-size: 15px;
  line-height: 1.75;
  color: #fff;
  margin: 0 0 40px;
  font-weight: 400;
}
img.founder-name-img {
  max-height: 77px;
}
/* Logo */
.founder-logo img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 1;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .founder-section {
    padding: 24px 16px;
  }

  .founder-inner {
    grid-template-columns: 1fr;
  }

  .founder-photo {
    min-height: 340px;
  }

  .founder-photo img {
    object-position: center 15%;
  }
}

.founder-name {
  width: 100%;
  max-width: 420px;
  margin-bottom: 24px;
}

.founder-name img {
  width: 100%;
  height: auto;
  display: block;
}

.founder-content__inner {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* ══════════════════════════════════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════════════════════════════════ */

.faq-section {
  background: #f3f3f3;
  padding-block: clamp(60px, 7vw, 96px);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

@media (min-width: 769px) {
  .faq-left {
    position: sticky;
    top: calc(var(--header-height, 80px) + 24px);
  }
}

/* ── Left ───────────────────────────────────────────────────────────────────── */

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.faq-eyebrow__arrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #f4b400;
  flex-shrink: 0;
}

.faq-headline {
  font-family: "Raleway", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: #0a0a0a;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.faq-headline span {
  color: #444;
  font-weight: 600;
}

.faq-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin: 0;
  max-width: 36ch;
}

/* ── Right: accordion ───────────────────────────────────────────────────────── */

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: none;
  border: 1.5px solid #e0e0e0;
  border-radius: 30px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item--open {
  border-color: #f4b400;
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 22px;
  font-weight: 600;
  color: #0a0a0a;
  font-family: "Raleway", sans-serif;
  line-height: 1.4;
}

.faq-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #555;
  transition: color 0.25s ease;
  line-height: 1;
}

.faq-item__icon .fa-minus {
  display: none;
}
.faq-item__icon .fa-plus {
  display: block;
}

.faq-item--open .faq-item__icon {
  color: #f4b400;
}

.faq-item--open .faq-item__icon .fa-plus {
  display: none;
}
.faq-item--open .faq-item__icon .fa-minus {
  display: block;
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
  padding: 0 22px;
}

.faq-item--open .faq-item__body {
  max-height: 200px;
  padding: 0 22px 20px;
}

.faq-item__body p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(93, 93, 93, 1);
  margin: 0;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-desc {
    max-width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   CTA STORIES SECTION
══════════════════════════════════════════════════════════════════════════════ */

.cta-stories {
  background: #fff;
  padding-block: clamp(80px, 10vw, 80px);
  text-align: center;
}

.cta-stories__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-stories__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #0a0a0a;
}

.cta-stories__arrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #f4b400;
  flex-shrink: 0;
}

.cta-stories__headline {
  font-family: "Raleway", sans-serif;
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -2px;
  background: linear-gradient(
    91.95deg,
    #252525 5.31%,
    #707070 31.58%,
    #3a3a3a 58.25%,
    #000000 86.87%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-stories__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f4b400;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.cta-stories__btn:hover {
  transform: translateY(-2px);
  color: #fff;
}
.cta-stories__btn i {
  transition: transform 0.4s ease;
  transform: rotate(-45deg);
}
/* Rotate arrow */
.cta-stories__btn:hover i {
  transform: rotate(0deg);
}
@media (max-width: 640px) {
  .cta-stories__headline {
    letter-spacing: -1px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════════════════════════════════════ */

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings inside grids */
.stats-grid .reveal-up:nth-child(2) {
  transition-delay: 0.1s;
}
.stats-grid .reveal-up:nth-child(3) {
  transition-delay: 0.2s;
}
.stats-grid .reveal-up:nth-child(4) {
  transition-delay: 0.3s;
}

.brand-process__cards .reveal-up:nth-child(2) {
  transition-delay: 0.1s;
}
.brand-process__cards .reveal-up:nth-child(3) {
  transition-delay: 0.2s;
}
.brand-process__cards .reveal-up:nth-child(4) {
  transition-delay: 0.3s;
}

.featured-cases__grid .reveal-up:nth-child(2) {
  transition-delay: 0.1s;
}
.featured-cases__grid .reveal-up:nth-child(3) {
  transition-delay: 0.2s;
}
.featured-cases__grid .reveal-up:nth-child(4) {
  transition-delay: 0.15s;
}
.featured-cases__grid .reveal-up:nth-child(5) {
  transition-delay: 0.25s;
}

.cta-stories__inner .reveal-up:nth-child(2) {
  transition-delay: 0.1s;
}
.cta-stories__inner .reveal-up:nth-child(3) {
  transition-delay: 0.2s;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   LIGHT MODE INNER PAGES (body:not(.home))
   This implements a premium white background look for all subpages.
   ══════════════════════════════════════════════════════════════════════════════ */

/* Contact Forms & Inputs within light-mode pages */
body:not(.home) .form-label {
  color: #444444 !important;
}

body:not(.home) .form-input,
body:not(.home) .form-textarea,
body:not(.home) .form-select {
  background-color: #fcfcfc !important;
  border: 1px solid #cccccc !important;
  color: #111111 !important;
}

body:not(.home) .form-input::placeholder,
body:not(.home) .form-textarea::placeholder {
  color: #888888 !important;
}

body:not(.home) .form-input:focus,
body:not(.home) .form-textarea:focus,
body:not(.home) .form-select:focus {
  border-color: #000000 !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05) !important;
}

/* Ensure the CTA Banner remains dark/cinematic for standard page footer transition */
body:not(.home) .cta-banner {
  background-color: var(--color-bg-secondary) !important;
  border-top: 1px solid var(--color-border) !important;
}

body:not(.home) .cta-banner h2,
body:not(.home) .cta-banner p,
body:not(.home) .cta-banner span {
  color: #ffffff !important;
}

body:not(.home) .cta-banner span.accent {
  color: var(--color-accent-gold) !important;
}

/* ══════════════════════════════════════════════════════════════════════════════
   ABOUT HERO SECTION styling
   ══════════════════════════════════════════════════════════════════════════════ */

.about-hero-section {
  padding: var(--space-4) var(--space-0);
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 0;
}

.about-hero-box {
  background-color: #f4f4f4;
  border-radius: 22px;
  padding: 100px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 500;
  color: #444444;
}

.about-hero-eyebrow__icon {
  color: var(--color-accent-gold);
  font-size: 14px;
}

.about-hero-title {
  font-family: "Raleway", var(--font-body);
  font-size: clamp(38px, 6vw, 84px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #000000 !important;
  margin-bottom: 40px;
  margin-inline: auto;
  max-width: 988px;
}

.about-hero-inline-media {
  display: inline-block;
  vertical-align: middle;
  height: clamp(36px, 4.5vw, 68px);
  width: clamp(70px, 8.5vw, 130px);
  border-radius: 50px;
  overflow: hidden;
  margin-inline: 10px;
  position: relative;
  top: -4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-hero-inline-media img {
  width: auto;
  height: 74px;
  object-fit: cover;
}

.about-hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.about-hero-ctas .btn {
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  padding: 14px 28px;
}

.about-btn-primary {
  background-color: var(--color-accent-gold);
  color: #000000;
  border: 2px solid var(--color-accent-gold);
}

.about-btn-primary:hover {
  background-color: #fecc40;
  border-color: #fecc40;
  color: #000000;
}

.about-btn-secondary {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #eaeaea;
}

.about-btn-secondary:hover {
  background-color: #f7f7f7;
  border-color: #cccccc;
  color: #000000;
}

.btn-play-icon {
  margin-left: 8px;
  font-size: 15px;
  display: inline-block;
}

@media (max-width: 768px) {
  .about-hero-section {
    padding: var(--space-2) var(--space-4);
  }
  .about-hero-box {
    border-radius: 24px;
    padding: 60px 16px;
  }
  .about-hero-title {
    max-width: 100%;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   ABOUT — STORY SECTION
══════════════════════════════════════════════════════════════════════════════ */

.about-story {
  background: #fff;
  padding-block: clamp(60px, 7vw, 80px);
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 4vw, 100px);
  align-items: stretch;
}

/* Left */
.about-story__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding-top: 4px;
}

.about-story__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #0a0a0a;
}

.about-story__arrow {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #f4b400;
  flex-shrink: 0;
}

.about-story__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-story__author-avatars {
  display: flex;
}

.about-story__author-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #e0e0e0;
  margin-left: -10px;
}

.about-story__author-avatars img:first-child {
  margin-left: 0;
}

.about-story__author-name {
  font-size: 14px;
  color: #444;
  font-weight: 500;
}

/* Right */
.about-story__right {
  padding-top: 4px;
}

.about-story__headline {
  font-family: "Raleway", sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: #0a0a0a;
  margin: 0 0 22px;
  letter-spacing: -0.3px;
}

.about-story__body {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 16px;
}

.about-story__body:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .about-story__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

  .about-story__left {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ============================================================
   CREATIVE SHOWCASE
   ============================================================ */

.creative-showcase {
  width: 100%;
  padding: 80px 20px;
  background: #ffffff;
  overflow: hidden;
}

.creative-showcase__container {
  width: min(1100px, 100%);
  margin: 0 auto;
}

/* ------------------------------------------------------------
   HEADING
   ------------------------------------------------------------ */

.creative-showcase__heading {
  max-width: 938px;
  margin: 0 auto 70px;
  text-align: center;
}

.creative-showcase__heading h2 {
  margin: 0;
  color: #111111;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.creative-showcase__heading h2 span {
  color: #737373;
}

/* ------------------------------------------------------------
   IMAGE GRID
   ------------------------------------------------------------ */

.creative-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: center;
}

/* ------------------------------------------------------------
   CARDS
   ------------------------------------------------------------ */

.creative-showcase__card {
  position: relative;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.5s ease;
  will-change: transform;
}

.creative-showcase__card--1 {
  transform: rotate(-3deg);
}

.creative-showcase__card--2 {
  transform: rotate(1deg);
}

.creative-showcase__card--3 {
  transform: rotate(-1deg);
}

.creative-showcase__card--4 {
  transform: rotate(3deg);
}

/* ------------------------------------------------------------
   IMAGE
   ------------------------------------------------------------ */

.creative-showcase__image {
  position: relative;
  aspect-ratio: 0.92 / 1.1;
  overflow: hidden;
  border-radius: 22px;
  background: #eeeeee;
  isolation: isolate;
}

.creative-showcase__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.25));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.creative-showcase__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

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

/* ------------------------------------------------------------
   HOVER EFFECT
   ------------------------------------------------------------ */

.creative-showcase__card:hover {
  z-index: 5;
  transform: translateY(-18px) rotate(0deg) scale(1.04);
}

.creative-showcase__card:hover .creative-showcase__image img {
  transform: scale(1.12);
  filter: saturate(1.15) contrast(1.05);
}

.creative-showcase__card:hover .creative-showcase__image::after {
  opacity: 1;
}

/* ------------------------------------------------------------
   NUMBER OVERLAY
   ------------------------------------------------------------ */

.creative-showcase__overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;

  width: 42px;
  height: 42px;

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

  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;

  color: #ffffff;
  font-size: 13px;
  font-weight: 500;

  opacity: 0;
  transform: translateY(15px);

  transition:
    opacity 0.4s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.creative-showcase__card:hover .creative-showcase__overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   CREATIVE INTERACTION
   Other cards slightly fade when one is hovered
   ------------------------------------------------------------ */

.creative-showcase__grid:has(.creative-showcase__card:hover)
  .creative-showcase__card:not(:hover) {
  filter: grayscale(0.2);
  opacity: 0.75;
  transform: scale(0.97);
}

/* ------------------------------------------------------------
   TABLET
   ------------------------------------------------------------ */

@media (max-width: 900px) {
  .creative-showcase {
    padding: 90px 20px;
  }

  .creative-showcase__heading {
    margin-bottom: 55px;
  }

  .creative-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .creative-showcase__card--1,
  .creative-showcase__card--2,
  .creative-showcase__card--3,
  .creative-showcase__card--4 {
    transform: rotate(0deg);
  }

  .creative-showcase__card:hover {
    transform: translateY(-10px) scale(1.02);
  }
}

/* ------------------------------------------------------------
   MOBILE
   ------------------------------------------------------------ */

@media (max-width: 600px) {
  .creative-showcase {
    padding: 70px 18px;
  }

  .creative-showcase__heading {
    margin-bottom: 40px;
  }

  .creative-showcase__heading h2 {
    font-size: 36px;
    line-height: 1.1;
  }

  .creative-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .creative-showcase__image {
    border-radius: 15px;
  }

  .creative-showcase__overlay {
    display: none;
  }
}

/* ============================================================
   ABOUT WHY US SECTION
   ============================================================ */
.about-why-us {
  width: 100%;
  padding: 100px 20px;
  background: #ffffff;
  overflow: hidden;
  padding-bottom: 0;
}

.about-why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Left Column: Images */
.about-why-us__image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1.1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: #f5f5f7;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-why-us__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-why-us__img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Right Column: Content & Accordion */
.about-why-us__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 500;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: 0;
}

.about-why-us__play-icon {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--color-accent-gold, #f5a623);
  display: inline-block;
}

.about-why-us__title {
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.1;
  font-weight: 600;
  color: #111111;
  margin: 0 0 40px;
  letter-spacing: -0.03em;
}

.about-why-us__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 380px;
}

.about-why-us__item {
  border-top: 1px dashed rgba(17, 17, 17, 0.1);
  padding: 24px 0;
  cursor: pointer;
  transition:
    padding-left 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    border-color 0.4s ease;
}

.about-why-us__item:last-child {
  border-bottom: 1px dashed rgba(17, 17, 17, 0.1);
}

.about-why-us__item-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: #111111;
  margin: 0;
  transition: color 0.3s ease;
}

/* Left border line on active item */
.about-why-us__item {
  position: relative;
}

.about-why-us__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  background: var(--color-accent-gold, #f5a623);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-why-us__item.active::before {
  transform: scaleY(1);
}

.about-why-us__item.active {
  padding-left: 20px;
}

.about-why-us__item.active .about-why-us__item-title {
  color: #111111;
}

.about-why-us__item-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.4s ease;
  opacity: 0;
}

.about-why-us__item.active .about-why-us__item-content {
  max-height: 200px;
  opacity: 1;
  margin-top: 12px;
}

.about-why-us__item-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary, #737373);
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .about-why-us__inner {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .about-why-us {
    padding: 80px 20px;
  }

  .about-why-us__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-why-us__image-container {
    aspect-ratio: 16 / 10;
    max-width: 600px;
    margin: 0 auto;
  }

  .about-why-us__list {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .about-why-us {
    padding: 60px 18px;
  }

  .about-why-us__item {
    padding: 18px 0;
  }

  .about-why-us__item::before {
    top: 18px;
    bottom: 18px;
  }
}
