:root {
  --bg: #070707;
  --bg-elev: #111111;
  --ink: #f6f4f0;
  --muted: rgba(246, 244, 240, 0.62);
  --line: rgba(246, 244, 240, 0.12);
  --orange: #ccff00;
  --orange-deep: #b3e600;
  --ember: #e45a28;
  --ember-red: #c43c2e;
  --ember-gold: #f4a45a;
  --pill: rgba(255, 255, 255, 0.78);
  --dark-pill: rgba(12, 12, 12, 0.48);
  --glass: rgba(12, 12, 12, 0.4);
  --glass-strong: rgba(10, 10, 10, 0.55);
  --glass-fill: rgba(255, 255, 255, 0.05);
  --glass-edge: rgba(255, 255, 255, 0.16);
  --glass-blur: 20px;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --sans: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --header-h: 76px;
  --pad: clamp(1.1rem, 3vw, 2.4rem);
}

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

html {
  scroll-behavior: smooth;
}

body.tdd-body {
  position: relative;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.tdd-body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 78% 20% at 86% 5%, rgba(228, 90, 40, 0.24), transparent 72%),
    radial-gradient(ellipse 52% 14% at 6% 20%, rgba(196, 60, 46, 0.14), transparent 70%),
    radial-gradient(ellipse 58% 13% at 96% 40%, rgba(244, 164, 90, 0.12), transparent 70%),
    radial-gradient(ellipse 68% 16% at 10% 55%, rgba(228, 90, 40, 0.16), transparent 72%),
    radial-gradient(ellipse 48% 12% at 92% 72%, rgba(244, 164, 90, 0.1), transparent 70%),
    radial-gradient(ellipse 56% 14% at 8% 88%, rgba(196, 60, 46, 0.13), transparent 70%),
    var(--bg);
}

body.tdd-body::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.site-main,
.coming-soon,
.inner-page,
.websites-page,
.site-footer {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  padding: 0.6rem 0.9rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
}

.tdd-mark {
  width: 22px;
  height: 22px;
  color: var(--orange);
  display: block;
}

.tdd-mark--sm {
  width: 18px;
  height: 18px;
}

.tdd-mark--hero {
  width: clamp(2.4rem, 6vw, 5.4rem);
  height: clamp(2.4rem, 6vw, 5.4rem);
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(204, 255, 0, 0.35));
}

/* Header */

.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0 var(--pad);
  pointer-events: none;
}

.site-header__bar {
  pointer-events: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem 1.25rem;
  max-width: 1440px;
  margin: 0 auto;
}

.site-header.is-scrolled .header-cta {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

.site-logo {
  display: block;
  width: clamp(52px, 6.2vw, 72px);
  justify-self: start;
  flex: 0 0 auto;
  line-height: 0;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.4));
}

.site-logo img {
  width: 100%;
  height: auto;
}

.header-cta {
  display: flex;
  align-items: center;
  justify-self: end;
  background: var(--pill);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 10px 28px rgba(0, 0, 0, 0.22);
  border-radius: var(--radius-pill);
  padding: 5px;
  gap: 2px;
}

.nav-toggle,
.icon-btn,
.header-cta__link,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.nav-toggle,
.icon-btn,
.header-cta__link {
  border: 0;
}

.nav-toggle {
  display: none;
}

.site-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  justify-self: center;
  width: max-content;
  max-width: 100%;
  gap: 0.04rem 0.58rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid var(--glass-edge);
  border-radius: var(--radius-pill);
  padding: 0.28rem 0.78rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 32px rgba(0, 0, 0, 0.22);
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
  padding: 0.18rem 0.12rem;
}

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

.site-nav a[aria-current="page"],
.site-nav a[aria-current="true"] {
  color: var(--orange);
}

.nav-drop {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-drop__btn {
  appearance: none;
  background: none;
  border: 0;
  color: var(--ink);
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
  white-space: nowrap;
  padding: 0.18rem 0.12rem;
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}

.nav-drop__caret {
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.7;
}

.nav-drop__btn:hover {
  color: #fff;
}

.nav-drop.is-current .nav-drop__btn,
.nav-drop__btn[aria-current="true"] {
  color: var(--orange);
}

.nav-drop__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 9.2rem;
  display: none;
  flex-direction: column;
  gap: 0.12rem;
  padding: 0.7rem 0.5rem 0.5rem;
  border-radius: 16px;
  background: var(--glass-strong);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid var(--glass-edge);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 16px 36px rgba(0, 0, 0, 0.32);
  z-index: 70;
}

.nav-drop:hover .nav-drop__menu,
.nav-drop:focus-within .nav-drop__menu,
.nav-drop.is-open .nav-drop__menu {
  display: flex;
}

.nav-drop__menu a {
  padding: 0.42rem 0.55rem;
  border-radius: 10px;
}

.nav-drop__menu a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.header-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
  line-height: 1.25;
}

.header-cta__link {
  padding: 0 1rem 0 1.05rem;
  height: 42px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #111;
  background: transparent;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.icon-btn svg {
  width: 16px;
  height: 16px;
}

.icon-btn--dark {
  background: rgba(18, 18, 18, 0.55);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.icon-btn--orange {
  background: var(--orange);
  color: #111;
}

.icon-btn--sm {
  width: 44px;
  height: 44px;
}

.btn {
  height: 48px;
  padding: 0 1.25rem;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--dark-pill);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid var(--glass-edge);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn--dark {
  background: rgba(18, 18, 18, 0.48);
  color: #fff;
}

.btn--light {
  background: rgba(255, 255, 255, 0.82);
  color: #111;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--orange {
  background: var(--orange);
  color: #111;
  border-color: rgba(204, 255, 0, 0.35);
  backdrop-filter: none;
}

.btn:hover {
  transform: translateY(-1px);
}

/* Hero */

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 2rem) var(--pad) clamp(1.15rem, 2.8vw, 1.9rem);
  overflow-x: clip;
  overflow-y: visible;
  color: #fff;
  background: transparent;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  background: transparent;
  overflow: hidden;
  transform: scale(1.04);
  top: -2%;
  left: -2%;
  right: -2%;
  bottom: -18vh;
  mask-image: linear-gradient(180deg, #000 0%, #000 46%, rgba(0, 0, 0, 0.72) 68%, rgba(0, 0, 0, 0.28) 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 46%, rgba(0, 0, 0, 0.72) 68%, rgba(0, 0, 0, 0.28) 84%, transparent 100%);
}

.hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: contrast(1.08) brightness(0.78);
  pointer-events: none;
}

.hero__shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 36%, rgba(7, 7, 7, 0.16) 64%, transparent 88%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.18));
  mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 70%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mask-image: linear-gradient(180deg, transparent 18%, #000 48%, #000 62%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--orange);
}

.stars svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(4.2rem, 13.2vw, 10.6rem);
  line-height: 0.82;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero__line {
  display: block;
}

.hero__line--split {
  display: flex;
  align-items: center;
  gap: clamp(0.45rem, 1.6vw, 1.4rem);
  flex-wrap: wrap;
}

.hero__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-top: clamp(1.4rem, 4vw, 3rem);
  margin-bottom: clamp(1.5rem, 4vw, 2.8rem);
}

.hero__tagline {
  max-width: 13rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(220px, 280px) 170px 150px 150px;
  gap: 0.85rem;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto clamp(1.1rem, 2.4vw, 1.8rem);
  align-items: stretch;
}

.stat-card,
.media-card,
.work-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
}

.stat-card {
  background: var(--glass);
  border: 1px solid var(--glass-edge);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 18px 40px rgba(0, 0, 0, 0.22);
  padding: 1.15rem 1.15rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  min-height: 148px;
}

.stat-card__mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(12, 12, 12, 0.45);
  border: 1px solid var(--glass-edge);
  display: grid;
  place-items: center;
}

.stat-card__copy p {
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.28;
}

.stat-card__go {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: #fff;
}

.stat-card__go svg {
  width: 14px;
  height: 14px;
}

.media-card {
  position: relative;
  min-height: 148px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 148px;
}

.media-card span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 0.5rem 0.7rem;
  border-radius: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid var(--glass-edge);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-card__label {
  top: 10px;
  bottom: auto;
  left: 10px;
  right: 10px;
  width: auto;
  max-width: none;
  -webkit-line-clamp: 2;
}

/* Sections */

.countries {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: clamp(3.4rem, 7.2vw, 6.2rem) var(--pad) clamp(3.6rem, 7.4vw, 6.4rem);
  background: transparent;
}

.countries__lede {
  margin: 0 auto 0.55rem;
  max-width: 52rem;
  color: var(--orange);
  font-size: clamp(0.92rem, 1.55vw, 1.12rem);
  font-weight: 600;
  line-height: 1.4;
}

.countries__list {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.55rem, 4.4vw, 3.15rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.12;
  text-transform: uppercase;
}

.band,
.work,
.blog {
  position: relative;
  background: transparent;
  padding: clamp(1.5rem, 3.6vw, 2.7rem) var(--pad);
}

.band--services {
  padding-top: clamp(2.4rem, 5.8vw, 4.2rem);
  z-index: 3;
}

.site-main > section[id] {
  scroll-margin-top: 88px;
}

.band__meta,
.work__note,
.site-footer {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.band__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(0.75rem, 1.8vw, 1.2rem);
}

.band__intro,
.contact-grid,
.service-list,
.display-title {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.band__intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: start;
}

.display-title {
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-weight: 400;
}

.display-title__row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.arrow-accent {
  color: var(--orange);
  font-family: var(--sans);
  font-size: 0.55em;
  font-weight: 700;
}

.band__copy {
  font-size: 1.12rem;
  color: rgba(246, 244, 240, 0.82);
  max-width: 36rem;
}

.band__copy p + p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
}

.team-grid {
  list-style: none;
  margin: clamp(1.15rem, 3vw, 1.8rem) auto 0;
  padding: 0;
  max-width: 1440px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #101010;
}

.team-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.team-card__frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  background: var(--glass);
  border-bottom: 1px solid var(--glass-edge);
  color: var(--orange);
}

.team-card--no-photo {
  border: 1px solid var(--glass-edge);
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.team-card__meta {
  padding: 0.85rem 1rem 1.05rem;
}

.team-card__meta h3 {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.team-card__meta p {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.work__grid {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.blog-carousel {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem 1rem;
  align-items: center;
}

.blog-carousel__controls {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-carousel__btn {
  width: 44px;
  height: 44px;
  background: var(--glass);
  color: var(--orange);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: inset 0 0 0 1.6px var(--orange);
}

.blog-carousel__btn[disabled] {
  opacity: 0.28;
  visibility: visible;
  pointer-events: none;
}

.blog-carousel__track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x;
  padding: 3.8rem 2rem 4.6rem 0.2rem;
}

.blog-carousel__track::-webkit-scrollbar {
  display: none;
}

.blog-carousel__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.blog-slide {
  --blog-card-max: 404px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: var(--blog-card-max);
  text-decoration: none;
  color: #fff;
  scroll-snap-align: start;
  position: relative;
}

.blog-slide + .blog-slide {
  margin-left: -2.35rem;
}

.blog-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 26px;
  background: #101010;
  border: 1px solid var(--glass-edge);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.blog-card .chip {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  height: 28px;
  padding: 0 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.blog-card img,
.blog-card__fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__fallback {
  background: #161616;
}

.blog-card__body {
  position: absolute;
  inset: auto 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.25rem;
  padding: 0.75rem 0.85rem 0.8rem;
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  border: 1px solid var(--glass-edge);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.blog-card h3 {
  font-size: 1.22rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 650;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.blog-card p {
  font-size: 0.8rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.86);
}

.blog-slide__cat {
  position: absolute;
  left: 0.15rem;
  top: calc(var(--blog-card-max) + 0.85rem);
  display: block;
  max-width: 12.5rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
  color: #fff;
}

.blog-slide:nth-child(4n + 1) {
  z-index: 1;
}

.blog-slide:nth-child(4n + 1) .blog-card {
  width: min(44vw, 188px);
  height: 188px;
}

.blog-slide:nth-child(4n + 1) h3 {
  font-size: 0.92rem;
}

.blog-slide:nth-child(4n + 1) .chip,
.blog-slide:nth-child(4n + 1) .blog-slide__cat,
.blog-slide:nth-child(4n + 1) p {
  display: none;
}

.blog-slide:nth-child(4n + 2) {
  z-index: 2;
}

.blog-slide:nth-child(4n + 2) .blog-card {
  width: min(60vw, 272px);
  height: 356px;
  transform: translateY(-2.7rem);
}

.blog-slide:nth-child(4n + 3) {
  z-index: 4;
}

.blog-slide:nth-child(4n + 3) .blog-card {
  width: min(58vw, 248px);
  height: 404px;
}

.blog-slide:nth-child(4n + 3) h3 {
  font-size: 1.2rem;
}

.blog-slide:nth-child(4n + 3) .blog-slide__cat,
.blog-slide:nth-child(4n + 3) p {
  display: none;
}

.blog-slide:nth-child(4n + 4) {
  z-index: 3;
}

.blog-slide:nth-child(4n + 4) .blog-card {
  width: min(54vw, 228px);
  height: 298px;
  transform: translateY(-2.35rem);
}

.blog-slide:nth-child(4n + 4) p {
  display: none;
}

.work-card {
  background: #101010;
  min-height: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  color: #fff;
}

.work-card img {
  width: 100%;
  flex: 1 1 auto;
  object-fit: cover;
  min-height: 220px;
  height: 100%;
}

.work-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.15rem 1.1rem 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78) 55%);
}

.work-card h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0.35rem 0 0.35rem;
}

.work-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
}

.work-card--lead .icon-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.chip {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 600;
}

.work__note {
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.work__note a {
  color: #fff;
  margin-left: 0.35rem;
}

.blog-empty {
  max-width: 1440px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.98rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
  background: transparent;
  border: 0;
}

.service-list li {
  background: var(--glass-fill);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  border: 1px solid var(--glass-edge);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  padding: 0.95rem 1rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.service-list__index {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--orange);
  line-height: 1;
}

.service-list h3 {
  font-size: 1.02rem;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.2;
}

.campaign-grid {
  list-style: none;
  padding: 0;
  margin: 1.35rem auto 0;
  max-width: 1440px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.campaign-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #101010;
  border: 1px solid var(--glass-edge);
  cursor: zoom-in;
  font: inherit;
  text-align: left;
  color: inherit;
}

.campaign-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center center;
  background: #070707;
  display: block;
  transition: transform 0.45s ease;
}

.campaign-card:hover img,
.campaign-card:focus-visible img {
  transform: scale(1.04);
}

.campaign-card:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.campaign-card__body {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 0.75rem 0.9rem 0.8rem;
  border-radius: 16px;
  background: var(--glass);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  border: 1px solid var(--glass-edge);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.campaign-card__index {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.campaign-card__title {
  display: block;
  margin: 0;
  font-size: 1.28rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
}

.lightbox {
  border: 0;
  padding: 0.7rem;
  background: var(--glass-strong);
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  border: 1px solid var(--glass-edge);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 28px 80px rgba(0, 0, 0, 0.45);
  max-width: min(96vw, 1280px);
  width: min(96vw, 1280px);
}

.lightbox::backdrop {
  background: rgba(4, 4, 4, 0.48);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
}

.lightbox img {
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(5, 5, 5, 0.35);
  display: block;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: var(--glass);
  color: var(--orange);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 0 0 1.6px var(--orange);
}

.band--campaigns.band--empty {
  display: none;
}

.clients {
  position: relative;
  padding: clamp(0.35rem, 1.4vw, 0.8rem) 0 clamp(0.9rem, 2.2vw, 1.4rem);
  background: transparent;
  overflow: hidden;
}

.clients--empty {
  padding: 0;
  min-height: 0;
}

.clients__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.clients__track {
  display: flex;
  width: max-content;
  animation: clients-marquee 42s linear infinite;
}

.clients:hover .clients__track,
.clients:focus-within .clients__track {
  animation-play-state: paused;
}

.clients__list {
  display: flex;
  align-items: center;
  gap: clamp(2.4rem, 5vw, 4.2rem);
  margin: 0;
  padding: 0.55rem clamp(1.2rem, 2.5vw, 2.1rem);
  list-style: none;
}

.clients__list a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.clients__list img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
  opacity: 1;
  background: transparent;
}

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

@media (prefers-reduced-motion: reduce) {
  .clients__track {
    animation: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .clients__list[aria-hidden="true"] {
    display: none;
  }

  .clients__list {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 1rem;
  }
}

.testimonials {
  position: relative;
  background: transparent;
  padding: clamp(0.4rem, 1.8vw, 1.1rem) var(--pad) clamp(1.1rem, 2.8vw, 1.9rem);
}

.quote-carousel {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.55rem 1rem;
  align-items: center;
}

.quote-carousel__controls {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-carousel__btn {
  width: 44px;
  height: 44px;
  background: var(--glass);
  color: var(--orange);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: inset 0 0 0 1.6px var(--orange);
}

.quote-carousel__btn[disabled] {
  opacity: 0.28;
  visibility: visible;
  pointer-events: none;
}

.quote-carousel__track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x;
  padding: 0.15rem 0.2rem 0.35rem;
}

.quote-carousel__track::-webkit-scrollbar {
  display: none;
}

.quote-carousel__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.quote-card {
  flex: 0 0 min(78vw, 400px);
  margin: 0;
  scroll-snap-align: start;
}

.quote-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #101010;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}

.contact-card {
  background: #101010;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.6rem 1.5rem 1.7rem;
}

.contact-card p {
  color: var(--muted);
}

.contact-card__email {
  display: inline-block;
  margin: 1.1rem 0 0.35rem;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: #fff;
}

.contact-card__whatsapp {
  display: block;
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--orange);
}

.contact-card__aside {
  margin-bottom: 1.3rem;
  font-size: 0.88rem;
}

.site-footer {
  padding: 0.6rem var(--pad) 1.6rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid rgba(246, 244, 240, 0.08);
  padding-top: 1.1rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__name {
  color: #fff;
  font-weight: 600;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}

.site-footer__nav a {
  text-decoration: none;
}

.inner-page {
  min-height: 70vh;
  padding: 8rem var(--pad) 4rem;
}

.inner-page__article {
  max-width: 760px;
  margin: 0 auto;
}

.inner-page__article h1 {
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
}

.inner-page__hero {
  margin: 0 auto 1.6rem;
  max-width: 960px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.inner-page__hero img {
  width: 100%;
  height: auto;
  display: block;
}

.inner-page__content {
  color: rgba(246, 244, 240, 0.86);
  font-size: 1.05rem;
}

.inner-page__content p + p {
  margin-top: 1rem;
}

.inner-page__back {
  display: inline-block;
  margin-bottom: 1.4rem;
  color: var(--orange);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.inner-page a {
  color: var(--orange);
}

.coming-soon {
  min-height: calc(100svh - 6.5rem);
  display: grid;
  place-items: center;
  padding: calc(var(--header-h) + 2.8rem) var(--pad) 3.2rem;
}

.coming-soon__panel {
  width: min(42rem, 100%);
}

.coming-soon__glass {
  text-align: center;
  padding: clamp(1.7rem, 4vw, 2.7rem) clamp(1.3rem, 3.4vw, 2.4rem) 1.85rem;
  border-radius: var(--radius-xl);
  background: var(--glass);
  border: 1px solid var(--glass-edge);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 18px 40px rgba(0, 0, 0, 0.22),
    0 0 90px rgba(204, 255, 0, 0.08);
}

.coming-soon__mark {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: rgba(12, 12, 12, 0.45);
  border: 1px solid var(--glass-edge);
  display: grid;
  place-items: center;
  color: var(--orange);
}

.coming-soon__kicker {
  margin: 0 0 0.35rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coming-soon h1 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(3.4rem, 9vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.coming-soon__lede {
  margin: 0 auto 0.75rem;
  max-width: 34rem;
  color: #fff;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 600;
  line-height: 1.4;
}

.coming-soon__copy {
  margin: 0 auto 1.45rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.coming-soon__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.websites-page {
  min-height: calc(100svh - 6.5rem);
  padding: calc(var(--header-h) + 2.6rem) var(--pad) 3.4rem;
}

.websites-page__intro {
  max-width: 1440px;
  margin: 0 auto 1.6rem;
}

.websites-page__kicker {
  margin: 0 0 0.35rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.websites-page h1 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.websites-page__lede {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.websites-page__empty {
  max-width: 1440px;
  margin: 0 auto;
  color: var(--muted);
}

.website-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1440px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.1rem;
}

.website-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--glass);
  border: 1px solid var(--glass-edge);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 36px rgba(0, 0, 0, 0.2);
}

a.website-card {
  cursor: pointer;
}

.website-card:hover,
.website-card:focus-visible {
  border-color: rgba(204, 255, 0, 0.35);
}

.website-card:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.website-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #101010;
}

.website-card__frame {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background: rgba(12, 12, 12, 0.45);
  color: var(--orange);
}

.website-card__name {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Mobile */

@media (max-width: 980px) {
  .site-header__bar {
    display: flex;
    justify-content: space-between;
    grid-template-columns: none;
  }

  .header-meta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: var(--pad);
    right: var(--pad);
    width: auto;
    max-width: none;
    justify-self: stretch;
    background: var(--glass-strong);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid var(--glass-edge);
    border-radius: 24px;
    padding: 1rem 1.1rem;
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0.15rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 24px 60px rgba(0, 0, 0, 0.4);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .nav-drop__btn {
    padding: 0.7rem 0.4rem;
    text-shadow: none;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .nav-drop {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-drop__btn {
    width: 100%;
    justify-content: space-between;
    text-align: left;
  }

  .nav-drop:hover .nav-drop__menu,
  .nav-drop:focus-within .nav-drop__menu {
    display: none;
  }

  .nav-drop.is-open .nav-drop__menu {
    display: flex;
  }

  .nav-drop__menu {
    position: static;
    transform: none;
    left: auto;
    min-width: 0;
    margin: 0;
    padding: 0.15rem 0 0.45rem 0.85rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
  }

  .nav-drop__menu a {
    border-bottom: 1px solid var(--line);
  }

  .nav-drop__menu a:last-child {
    border-bottom: 0;
  }

  .hero__cards,
  .band__intro,
  .contact-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .stat-card {
    grid-column: 1 / -1;
  }

  .work-card {
    min-height: 360px;
  }

  .blog-carousel {
    grid-template-columns: 1fr;
  }

  .blog-carousel__controls {
    flex-direction: row;
    justify-content: flex-start;
  }

  .quote-carousel {
    grid-template-columns: 1fr;
  }

  .quote-carousel__controls {
    flex-direction: row;
    justify-content: flex-start;
  }

  .quote-card {
    flex-basis: min(86vw, 360px);
  }

  .blog-carousel__track {
    padding-top: 1.8rem;
    padding-bottom: 3.6rem;
  }

  .blog-slide {
    --blog-card-max: 320px;
    min-height: 320px;
  }

  .blog-slide + .blog-slide {
    margin-left: -1.6rem;
  }

  .blog-slide:nth-child(4n + 1) .blog-card,
  .blog-slide:nth-child(4n + 2) .blog-card,
  .blog-slide:nth-child(4n + 3) .blog-card,
  .blog-slide:nth-child(4n + 4) .blog-card {
    transform: none;
  }

  .blog-slide:nth-child(4n + 1) .blog-card {
    height: 168px;
  }

  .blog-slide:nth-child(4n + 2) .blog-card {
    height: 280px;
  }

  .blog-slide:nth-child(4n + 3) .blog-card {
    height: 320px;
  }

  .blog-slide:nth-child(4n + 4) .blog-card {
    height: 240px;
  }

  .header-cta {
    background: var(--glass-strong);
    backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    border: 1px solid var(--glass-edge);
    padding: 4px;
    width: max-content;
    flex: 0 0 auto;
  }

  .header-cta__link,
  .header-cta__go {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding-top: calc(var(--header-h) + 1.6rem);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: calc(var(--header-h) + 1.2rem);
  }

  .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero__title {
    font-size: clamp(3.1rem, 16vw, 4.4rem);
  }

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

  .hero__actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .header-cta {
    padding: 4px;
  }

  .site-footer__inner {
    align-items: flex-start;
  }
}

body.admin-bar .site-header {
  top: calc(14px + 32px);
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: calc(14px + 46px);
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-nav,
  .header-cta,
  .stat-card,
  .btn,
  .blog-card .chip,
  .blog-card__body,
  .blog-carousel__btn,
  .quote-carousel__btn,
  .service-list li,
  .campaign-card__body,
  .lightbox,
  .media-card span,
  .coming-soon__glass,
  .team-card--no-photo,
  .nav-drop__menu,
  .website-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
