/*  01 - TOKENS (variables)  */

:root {
  --vb-primary: #5b4fe1;
  --vb-primary-dark: #312e81;
  --vb-primary-light: #a78bfa;

  --vb-ink: #0f172a;
  --vb-ink-2: #1e293b;
  --vb-muted: #475569;
  --vb-bg: #f8fafc;
  --vb-surface: #ffffff;
  --vb-surface-soft: #f5f3ff;
  --vb-border: #d9d6fe;

  --vb-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --vb-shadow-hover: 0 24px 60px rgba(15, 23, 42, 0.12);

  --vb-radius-sm: 0.75rem;
  --vb-radius-md: 1rem;
  --vb-radius-lg: 1.25rem;
  --vb-radius-xl: 1.5rem;
  --vb-radius-2xl: 2rem;
  --vb-radius-pill: 999px;

  --space-2xs: 0.375rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.5rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  --text-sm: 0.9rem;
  --text-md: 1rem;
  --text-lg: 1.08rem;
  --text-xl: 1.2rem;

  --vb-gradient: linear-gradient(180deg, #a78bfa 0%, #5b4fe1 100%);
  --vb-transition-fast: 0.2s ease;
  --vb-transition-base: 0.25s ease;
  --vb-transition-slow: 0.3s ease;
  --vb-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/*  02 - BASE (reset, typography)  */

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--vb-bg);
  color: var(--vb-ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.brand-name,
.hero-title,
.section-title,
.project-title,
.btn,
.work-card-title,
.work-page-title,
.project-page-title,
.project-meta-value,
.video-subtitle {
  font-family: "space-grotesk-variable", "Space Grotesk", sans-serif;
}

.text-muted-custom {
  color: var(--vb-muted) !important;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vb-primary);
  margin-bottom: var(--space-md);
}

.section-kicker::before {
  content: "";
  width: 2.25rem;
  height: 2px;
  background: var(--vb-primary);
  border-radius: var(--vb-radius-pill);
}

/*  03 - LAYOUT (sections, spacing)  */

.section-padding {
  padding: var(--space-4xl) 0;
}

.footer {
  padding: var(--space-xl) 0 var(--space-2xl);
  color: var(--vb-muted);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  margin-top: var(--space-2xl);
}

.footer a {
  color: var(--vb-ink);
  font-weight: 600;
  transition:
    color var(--vb-transition-fast),
    opacity var(--vb-transition-fast);
}

.footer a:hover,
.footer a:focus {
  color: var(--vb-primary);
  opacity: 0.8;
}

.footer-social {
  align-items: center;
}

.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.06);
  transition:
    background var(--vb-transition-base),
    box-shadow var(--vb-transition-base);
}

.footer-icon img {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-icon:hover {
  background: rgba(79, 70, 229, 0.12);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
}

/*  04 - COMPONENTS (cards, buttons, nav)  */
.btn-vb-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.75rem 1.6rem;
  border-radius: 999px;

  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;

  background: transparent;
  border: 1px solid rgba(91, 79, 225, 0.25);
  color: var(--vb-ink);

  transition:
    background-color var(--vb-transition-fast),
    border-color var(--vb-transition-fast),
    color var(--vb-transition-fast),
    box-shadow var(--vb-transition-fast);
}

.btn-vb-secondary:hover {
  border-color: var(--vb-primary);
  color: var(--vb-primary);
  background: rgba(91, 79, 225, 0.06);
}

.btn-vb-secondary:active {
  background: rgba(91, 79, 225, 0.1);
}

.btn-vb-secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(91, 79, 225, 0.2);
}

.btn-vb-primary,
.btn-vb-outline {
  border-radius: var(--vb-radius-pill);
  padding: 0.95rem 1.4rem;
  font-weight: 700;
  transition:
    box-shadow var(--vb-transition-base),
    border-color var(--vb-transition-base),
    background-color var(--vb-transition-base),
    color var(--vb-transition-base),
    filter var(--vb-transition-base),
    letter-spacing var(--vb-transition-base);
}

.btn-vb-primary {
  background: var(--vb-primary);
  color: #ffffff;
  border: 1px solid var(--vb-primary);
  box-shadow: 0 10px 24px rgba(91, 79, 225, 0.22);
}

.btn-vb-primary:hover,
.btn-vb-primary:focus {
  background: var(--vb-primary-dark);
  border-color: var(--vb-primary-dark);
  color: #ffffff;
}

.btn-vb-outline {
  background: transparent;
  color: var(--vb-ink);
  border: 1px solid rgba(15, 23, 42, 0.14);
}

.btn-vb-outline:hover,
.btn-vb-outline:focus {
  border-color: var(--vb-primary);
  color: var(--vb-primary);
  background: rgba(91, 79, 225, 0.04);
}

.card-vb,
.about-card,
.cta-card,
.project-copy-card,
.project-meta-card,
.work-card,
.project-gallery-card,
.project-video-card {
  background: var(--vb-surface);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: var(--vb-shadow);
  transition:
    box-shadow var(--vb-transition-slow),
    border-color var(--vb-transition-slow),
    background-color var(--vb-transition-slow);
}

.card-vb:hover,
.about-card:hover,
.cta-card:hover,
.project-video-card:hover {
  box-shadow: var(--vb-shadow-hover);
  border-color: rgba(91, 79, 225, 0.12);
}

.about-card,
.cta-card {
  border-radius: var(--vb-radius-2xl);
}

.project-copy-card {
  border-radius: 1.6rem;
}

.project-meta-card,
.project-gallery-card,
.project-video-card {
  border-radius: var(--vb-radius-xl);
}

.work-card {
  border-radius: var(--vb-radius-xl);
  overflow: hidden;
  color: inherit;
  position: relative;
}

/*  Navbar  */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(248, 250, 252, 0.86);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.navbar {
  padding: var(--space-md) 0;
}

.navbar-brand {
  font-weight: 700;
  color: var(--vb-ink);
  letter-spacing: -0.04em;
  font-size: 1.05rem;
  transition: opacity var(--vb-transition-base);
}

.navbar-brand:hover,
.navbar-brand:focus {
  color: var(--vb-ink);
  opacity: 0.9;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark img {
  width: 48px;
  height: auto;
  flex-shrink: 0;
}

.brand-mark-horizontal img {
  width: auto;
  height: 2rem;
  max-width: 220px;
}

.navbar-nav {
  row-gap: 0.25rem;
}

.nav-link {
  color: var(--vb-ink);
  font-weight: 600;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0;
  transition: color var(--vb-transition-base);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: var(--vb-radius-pill);
  background: var(--vb-primary);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition:
    transform var(--vb-transition-base),
    opacity var(--vb-transition-base);
}

.nav-link:hover,
.nav-link:focus,
.nav-link.is-active {
  color: var(--vb-primary);
}

.nav-link:hover::after,
.nav-link:focus::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.navbar-toggler {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--vb-radius-md);
  padding: 0.45rem 0.7rem;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(91, 79, 225, 0.16);
  border-color: rgba(91, 79, 225, 0.28);
}

.nav-lang-switch {
  font-weight: 600;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.nav-lang-switch:hover {
  opacity: 1;
}

/*  05 - SECTIONS (hero, work, about, etc.)  */

/*  Hero  */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 62%,
      rgba(167, 139, 250, 0.08) 0%,
      rgba(167, 139, 250, 0) 34%
    ),
    radial-gradient(
      circle at 50% 24%,
      rgba(91, 79, 225, 0.04) 0%,
      rgba(91, 79, 225, 0) 42%
    );
  animation: heroAmbientShift 14s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
  background:
    radial-gradient(
      circle at 30% 35%,
      rgba(167, 139, 250, 0.12) 0%,
      rgba(167, 139, 250, 0) 30%
    ),
    radial-gradient(
      circle at 72% 62%,
      rgba(91, 79, 225, 0.09) 0%,
      rgba(91, 79, 225, 0) 34%
    );
  filter: blur(22px);
  animation: heroAtmosphereFloat 18s ease-in-out infinite alternate;
}

.hero-sticky-wrap {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero-sticky-wrap-centered {
  justify-content: center;
}

.hero-centered-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  max-width: 980px;
  margin: 0 auto;
  padding-top: 5.5rem;
  padding-bottom: 3.5rem;
  text-align: center;
  opacity: 1;
  transform-origin: center top;
}

.hero-kicker-centered {
  justify-content: center;
  opacity: 1;
}

.hero-title {
  margin: 0 auto var(--space-lg);
  max-width: none;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 400;
}

.hero-title-centered {
  max-width: none;
}

.hero-line {
  display: block;
  white-space: nowrap;
  opacity: 1;
}

.hero-title .hero-word {
  display: inline-block;
  margin-right: 0.16em;
}

.hero-title .hero-word:last-child {
  margin-right: 0;
}

.hero-word-slot {
  display: inline-flex;
  justify-content: center;
  align-items: baseline;
  vertical-align: baseline;
  margin-right: 0.16em;
  overflow: visible;
}

.hero-word-slot:last-child {
  margin-right: 0;
}

.hero-word-slot .hero-word {
  margin-right: 0;
}

.hero-word-slot-video {
  min-width: 2.05em;
}

.hero-word-slot-digital {
  min-width: 2.55em;
}

.hero-word-slot-print {
  min-width: 1.95em;
}

html[lang="fr"] .hero-title {
  font-size: clamp(2.55rem, 6vw, 5rem);
}

/*  French hero laptop/tablet-wide correction  */
@media (min-width: 1010px) and (max-width: 1600px) {
  html[lang="fr"] .hero-title {
    font-size: clamp(2.3rem, 4.8vw, 4.25rem);
  }
}

.hero-word-accent {
  position: relative;
  display: inline-block;
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
  font-variation-settings: "wght" 700;
  letter-spacing: -0.04em;
  transform: translateY(0) scale(1);
  opacity: 1;
  transform-origin: center center;
  will-change:
    transform, letter-spacing, opacity, color, font-variation-settings;
  transition:
    color var(--vb-transition-base),
    letter-spacing var(--vb-transition-base),
    font-variation-settings var(--vb-transition-base);
}

.hero-word-accent:hover {
  color: var(--vb-primary);
}

.hero-word-main {
  width: min(9.8em, calc(100vw - 2.5rem));
  overflow: visible;
  text-align: center;
}

.hero-word-main:hover {
  transform: none;
}

.hero-role-slot {
  position: relative;
  display: inline-flex;
  justify-content: center;
  gap: 0.18em;
  width: 100%;
  max-width: 100%;
  white-space: nowrap;
}

.hero-role-word {
  display: inline-block;
  color: var(--vb-ink);
  will-change: transform, opacity;
}

.hero-copy,
.hero-actions {
  opacity: 1;
  will-change: transform, opacity;
}

.hero-copy {
  max-width: 42rem;
  margin: 0 auto;
  font-size: var(--text-lg);
  color: var(--vb-muted);
}

.hero-copy-centered {
  max-width: 40rem;
}

.hero-actions {
  margin-top: var(--space-xl);
}

.hero-actions-centered {
  justify-content: center;
  margin-bottom: 0;
}

.hero-actions .btn {
  transition:
    box-shadow 0.28s ease,
    background-color var(--vb-transition-base),
    border-color var(--vb-transition-base),
    color var(--vb-transition-base);
}

.hero-visual {
  margin-top: 3rem;
}

.hero-logo-focus {
  transform-origin: center center;
}

/*  Hero logo / monogram  */

.hero-logo-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.75rem;
  min-height: 240px;
  pointer-events: none;
}

.hero-logo-focus {
  position: relative;
  width: min(300px, 52vw);
  z-index: 2;
  margin-inline: auto;
  transition: filter 700ms ease;
}

.hero-monogram {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.logo-part {
  transform-box: fill-box;
  transform-origin: center center;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.logo-v,
.logo-b {
  opacity: 0;
}

/*  Selected work  */

.selected-work {
  position: relative;
  background: var(--vb-surface-soft);
  border-top: 1px solid rgba(91, 79, 225, 0.08);
  border-bottom: 1px solid rgba(91, 79, 225, 0.08);
  overflow: hidden;
}

.selected-work::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(167, 139, 250, 0.08) 0%,
      rgba(167, 139, 250, 0) 28%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(91, 79, 225, 0.06) 0%,
      rgba(91, 79, 225, 0) 30%
    );
  opacity: 0.8;
}

.selected-work .container {
  position: relative;
  z-index: 1;
}

.selected-work .selected-work-header {
  max-width: 44rem;
  margin-bottom: 3rem;
}

.selected-work .selected-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.work-card {
  position: relative;
  display: block;
  overflow: hidden;
  color: inherit;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--vb-radius-2xl);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  isolation: isolate;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  opacity: 0.7;
  z-index: 1;
}

.work-card:hover,
.work-card:focus-visible {
  color: inherit;
}

.work-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #ebeafe 0%, #dbd8ff 40%, #f6f6fd 100%);
}

.work-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 58%,
    rgba(15, 23, 42, 0.08) 100%
  );
  opacity: 0.65;
  z-index: 1;
}

.work-card-image img,
.work-card-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.65s var(--vb-ease-out),
    filter 0.4s ease;
}

.work-card-image video {
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.work-card-slideshow img {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity;
}

.work-card-slideshow img:nth-child(1) {
  animation: workThumbnailSlideOne 6s linear infinite;
}

.work-card-slideshow img:nth-child(2) {
  animation: workThumbnailSlideTwo 6s linear infinite;
}

.work-card-slideshow img:nth-child(3) {
  animation: workThumbnailSlideThree 6s linear infinite;
}

.work-card:hover .work-card-image img,
.work-card:focus-visible .work-card-image img,
.work-card:hover .work-card-image video,
.work-card:focus-visible .work-card-image video {
  transform: scale(1.06);
  filter: saturate(1.04) contrast(1.03);
}

.work-card-content {
  position: relative;
  z-index: 2;
  padding: 1.25rem 1.25rem 1.35rem;
}

.work-category {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.7rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--vb-primary);
  background: rgba(91, 79, 225, 0.08);
  border: 1px solid rgba(91, 79, 225, 0.1);
  line-height: 1;
}

.work-card-title {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--vb-ink);
}

.selected-work-footer {
  margin-top: 3.25rem;
}

.selected-work-cta {
  max-width: 840px;
}

.selected-work-cta-text {
  font-size: var(--text-md);
  color: var(--vb-muted);
  line-height: 1.6;
}

/*  About  */

.about-section {
  position: relative;
}

.about-card {
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl);
  border-radius: var(--vb-radius-2xl);
  background:
    radial-gradient(
      circle at top right,
      rgba(167, 139, 250, 0.12),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
  border: 1px solid rgba(91, 79, 225, 0.08);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.about-card > .row {
  --bs-gutter-x: 2.25rem;
  --bs-gutter-y: 2rem;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 12% 18%,
    rgba(167, 139, 250, 0.08) 0%,
    rgba(167, 139, 250, 0) 26%
  );
  opacity: 0.8;
}

.about-card > * {
  position: relative;
  z-index: 1;
}

.about-visual-wrap {
  position: relative;
}

.profile-wrap {
  border-radius: var(--vb-radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, #ede9fe 0%, #ffffff 100%);
  border: 1px solid rgba(91, 79, 225, 0.14);
  transform: translateY(10px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.profile-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.about-copy-wrap {
  max-width: 44rem;
}

.about-title {
  max-width: 26ch;
  line-height: 1;
  margin-bottom: 0.85rem;
}

.about-intro {
  font-size: 1.03rem;
  line-height: 1.62;
  margin-bottom: 0.75rem;
}

.about-support {
  font-size: var(--text-md);
  line-height: 1.62;
  margin-bottom: 1.25rem;
}

.about-meta-row {
  margin-top: 0.9rem;
}

.about-meta-card {
  height: 100%;
  padding: 1.2rem 1.1rem 1.15rem;
  border-radius: var(--vb-radius-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.about-meta-card:hover {
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
  border-color: rgba(91, 79, 225, 0.12);
}

.about-meta-title {
  margin: 0 0 1.05rem;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--vb-primary-dark);
}

.focus-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.focus-list li {
  color: var(--vb-muted);
  font-weight: 500;
}

.focus-list strong {
  font-weight: 600;
}

.about-card .tool-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}

.tool-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  transition:
    transform var(--vb-transition-base),
    opacity var(--vb-transition-base),
    filter var(--vb-transition-base);
}

.about-card .tool-icon {
  width: 52px;
  height: 52px;
  opacity: 0.84;
}

.tool-icon:hover {
  transform: scale(1.06);
  opacity: 0.95;
  filter: saturate(1.05);
}

.about-card .tool-icon:hover {
  opacity: 1;
}

/*  Selected collaborations  */

.collaborations-section {
  position: relative;
  padding: var(--space-2xl) 0;
  margin-top: var(--space-2xl);

  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(167, 139, 250, 0.08),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(91, 79, 225, 0.06),
      transparent 40%
    ),
    linear-gradient(180deg, #f8f7ff 0%, #ffffff 100%);

  border-top: 1px solid rgba(91, 79, 225, 0.08);
  border-bottom: 1px solid rgba(91, 79, 225, 0.08);
}

.collaborations-intro {
  max-width: 46rem;
  margin-bottom: var(--space-2xl);
}

.collaborations-title {
  max-width: 18ch;
  margin-bottom: var(--space-sm);
}

.collaborations-copy {
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.7;
}

.collaborations-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.collaboration-feature {
  position: relative;
  padding: clamp(1.35rem, 2vw, 1.8rem);
  border-radius: var(--vb-radius-2xl);
  background:
    radial-gradient(
      circle at top right,
      rgba(167, 139, 250, 0.1),
      transparent 30%
    ),
    linear-gradient(180deg, #ffffff 0%, #fcfbff 100%);
  border: 1px solid rgba(91, 79, 225, 0.08);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.collaboration-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 12% 18%,
    rgba(167, 139, 250, 0.06) 0%,
    rgba(167, 139, 250, 0) 26%
  );
  opacity: 0.9;
}

.collaboration-feature > * {
  position: relative;
  z-index: 1;
}

.collaboration-portrait {
  position: relative;
  overflow: hidden;
  border-radius: var(--vb-radius-xl);
  border: 1px solid rgba(91, 79, 225, 0.12);
  background: linear-gradient(180deg, #ede9fe 0%, #ffffff 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.collaboration-portrait img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform var(--vb-transition-slow);
}

.collaboration-feature:hover .collaboration-portrait img {
  transform: scale(1.02);
}

.collaboration-content {
  max-width: 42rem;
}

.collaboration-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: var(--space-md);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vb-primary);
}

.collaboration-quote {
  margin: 0 0 var(--space-lg);
  font-family: "space-grotesk-variable", "Space Grotesk", sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: var(--vb-ink);
  max-width: 18ch;
}

.collaboration-client {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.collaboration-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--vb-ink);
}

.collaboration-role {
  font-size: 0.98rem;
  color: var(--vb-muted);
}

.collaboration-meta p {
  line-height: 1.7;
}

.collaboration-service {
  font-weight: 600;
  color: var(--vb-ink);
}

.collaboration-impact {
  color: var(--vb-muted);
}

.collaboration-feature.reveal:nth-child(1) {
  transition-delay: 0.02s;
}

.collaboration-feature.reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.collaboration-feature.reveal:nth-child(3) {
  transition-delay: 0.18s;
}

/*  Contact / CTA  */

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 2.25rem;
  border-radius: var(--vb-radius-2xl);
  margin-top: var(--space-4xl);
  background:
    radial-gradient(
      circle at top right,
      rgba(167, 139, 250, 0.22),
      transparent 28%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8f7ff 100%);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
  background: radial-gradient(
    circle at 12% 20%,
    rgba(167, 139, 250, 0.08) 0%,
    rgba(167, 139, 250, 0) 26%
  );
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-title {
  max-width: 15ch;
}

.contact-copy {
  max-width: 44ch;
  line-height: 1.7;
}

.contact-note {
  font-size: 0.95rem;
  color: var(--vb-primary);
  font-weight: 600;
}

.contact-actions {
  display: grid;
  gap: 0.65rem;
  max-width: 420px;
  margin-left: auto;
}

.contact-link {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  text-decoration: none;
  border: 1px solid rgba(79, 70, 229, 0.12);
  background: rgba(255, 255, 255, 0.72);
  transition:
    border-color var(--vb-transition-base),
    background var(--vb-transition-base),
    box-shadow var(--vb-transition-base);
}

.contact-link:hover {
  border-color: rgba(79, 70, 229, 0.22);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.contact-link:hover .contact-link-value {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.contact-link-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vb-primary);
}

.contact-link-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--vb-text);
  line-height: 1.4;
  word-break: break-word;
}

.contact-link-primary {
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.12),
    rgba(167, 139, 250, 0.18)
  );
  border-color: rgba(79, 70, 229, 0.25);
}

/*  Reveal  */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  .footer {
    padding: 1.75rem 0 2rem;
    margin-top: var(--space-xl);
    text-align: center;
  }

  .footer .row {
    justify-content: center;
    row-gap: 0.9rem;
  }

  .footer p {
    max-width: 22rem;
    margin-inline: auto;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .footer-social {
    justify-content: center;
    gap: 0.8rem !important;
  }

  .footer-icon {
    width: 48px;
    height: 48px;
  }

  .footer-icon img {
    width: 19px;
    height: 19px;
  }

  .reveal {
    transform: translateY(10px);
    transition-duration: 0.42s;
  }
}

/*  Work page  */

.work-page {
  background: var(--vb-bg);
}

.work-page-hero {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-xl);
}

.work-page-header {
  max-width: 52rem;
  margin-bottom: var(--space-xl);
}

.work-page-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--vb-ink);
}

.work-page-intro {
  max-width: 42rem;
  font-size: var(--text-lg);
  color: var(--vb-muted);
  margin-bottom: 0;
}

.work-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-xl);
}

.work-filter-btn {
  appearance: none;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: var(--vb-surface);
  color: var(--vb-ink);
  border-radius: var(--vb-radius-pill);
  padding: 0.8rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  transition:
    background-color var(--vb-transition-fast),
    border-color var(--vb-transition-fast),
    color var(--vb-transition-fast),
    box-shadow var(--vb-transition-fast);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.work-filter-btn:hover,
.work-filter-btn:focus {
  border-color: rgba(91, 79, 225, 0.28);
  color: var(--vb-primary);
  background: rgba(91, 79, 225, 0.04);
}

.work-filter-btn.is-active {
  background: var(--vb-primary);
  color: #fff;
  border-color: var(--vb-primary);
  box-shadow: 0 10px 24px rgba(91, 79, 225, 0.18);
}

.work-page-grid-section {
  padding-bottom: 5rem;
}

.work-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-lg);
}

.work-page .work-card {
  min-height: 100%;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  will-change: opacity, transform;
}

.work-page-grid.is-filtering .work-card {
  opacity: 0.35;
  pointer-events: none;
}

.work-page .work-card.is-hidden {
  display: none !important;
}

.work-page .work-card.is-entering {
  opacity: 0;
}

.work-page .work-card-content {
  padding: 1.25rem 1.25rem 1.4rem;
}

.work-page .work-card-title {
  font-size: 1.35rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

/*  Project pages  */

.project-page {
  background: var(--vb-bg);
}

.project-hero-section {
  padding-top: var(--space-3xl);
}

.project-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: var(--space-xl);
  color: var(--vb-muted);
  font-weight: 600;
  line-height: 1;
  transition:
    color var(--vb-transition-base),
    opacity var(--vb-transition-base);
}

.project-back-link:hover,
.project-back-link:focus {
  color: var(--vb-primary);
  opacity: 1;
}

.project-header-block {
  max-width: 52rem;
  margin-bottom: var(--space-2xl);
}

.project-page-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 700;
  margin-bottom: var(--space-md);
  color: var(--vb-ink);
}

.project-page-intro {
  max-width: 42rem;
  font-size: var(--text-lg);
  color: var(--vb-muted);
  margin-bottom: 0;
}

.project-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.project-meta-card {
  padding: 1.25rem 1.25rem 1.35rem;
  min-height: 100%;
}

.project-meta-label {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vb-primary);
}

.project-meta-value {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--vb-ink);
}

.project-tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.35rem;
}

.project-tool-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--vb-ink);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
}

.project-tool-item .tool-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.project-hero-image {
  overflow: hidden;
  border-radius: var(--vb-radius-2xl);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--vb-shadow-hover);
  background: var(--vb-surface);
}

.project-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/*  Project content blocks  */

.project-copy-section {
  padding-bottom: var(--space-3xl);
}

.project-copy-section:last-of-type {
  padding-bottom: var(--space-2xl);
}

.project-section-sticky {
  position: sticky;
  top: 7rem;
}

.project-section-title {
  max-width: 12ch;
}

.project-copy-card {
  padding: 1.75rem;
}

.project-copy-card p {
  color: var(--vb-muted);
  font-size: 1.02rem;
  line-height: 1.72;
  margin-bottom: var(--space-md);
}

.project-copy-card p:last-child {
  margin-bottom: 0;
}

.project-section-intro {
  max-width: 46rem;
  color: var(--vb-muted);
  font-size: 1rem;
  line-height: 1.68;
  margin-bottom: var(--space-lg);
}

/*  Project gallery  */

.project-gallery-section {
  padding-bottom: var(--space-2xl);
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.gallery-hero {
  grid-column: span 2;
}

.project-gallery-card {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.project-gallery-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.project-gallery-card:hover img {
  transform: scale(1.04);
}

.project-gallery-grid-burj {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.project-gallery-grid-burj .gallery-hero {
  grid-column: span 3;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--vb-radius-xl);
}

.project-gallery-grid-burj .project-gallery-card:not(.gallery-hero) {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--vb-radius-xl);
}

.project-gallery-grid-burj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*  Lexx Trade project  */

.project-hero-image-lexx {
  border-radius: 28px;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  background:
    radial-gradient(
      circle at top left,
      rgba(143, 209, 0, 0.22),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(91, 79, 225, 0.18),
      transparent 38%
    ),
    linear-gradient(135deg, #050505 0%, #111111 55%, #1b1533 100%);
}

.lexx-breakdown-card {
  padding: clamp(1.4rem, 2vw, 1.8rem);
}

.lexx-symbol-surface,
.lexx-variation-surface {
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lexx-symbol-surface {
  padding: 2rem;
  margin-bottom: 1.5rem;
  min-height: 260px;
}

.lexx-symbol-surface-light {
  background:
    radial-gradient(circle at center, rgba(143, 209, 0, 0.18), transparent 40%),
    linear-gradient(135deg, #f8f8fb 0%, #ececf5 100%);
}

.lexx-symbol-surface-soft {
  background:
    radial-gradient(
      circle at top right,
      rgba(91, 79, 225, 0.14),
      transparent 36%
    ),
    linear-gradient(135deg, #ffffff 0%, #f4f4fb 100%);
}

.lexx-symbol-image {
  max-width: 100%;
  max-height: 170px;
  object-fit: contain;
}

.lexx-symbol-image-tall {
  max-height: 180px;
}

.lexx-symbol-image-wordmark {
  max-height: 95px;
}

.lexx-variation-surface {
  min-height: 340px;
  padding: 2rem;
}

.lexx-variation-surface-gradient {
  background:
    radial-gradient(
      circle at top right,
      rgba(91, 79, 225, 0.22),
      transparent 32%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(143, 209, 0, 0.16),
      transparent 34%
    ),
    linear-gradient(135deg, #090909 0%, #171727 100%);
}

.lexx-variation-surface-light {
  border: 1px solid rgba(15, 23, 42, 0.06);
  background:
    radial-gradient(
      circle at top left,
      rgba(91, 79, 225, 0.08),
      transparent 30%
    ),
    linear-gradient(135deg, #ffffff 0%, #f3f4f8 100%);
}

.lexx-variation-surface-dark {
  background:
    radial-gradient(circle at center, rgba(143, 209, 0, 0.12), transparent 35%),
    linear-gradient(135deg, #000000 0%, #161616 100%);
}

.lexx-variation-image {
  max-width: 100%;
  max-height: 230px;
  object-fit: contain;
}

.project-gallery-card figcaption {
  padding: 1.5rem 1.5rem 1.75rem;
  margin-top: 0.5rem;
}

/*  Project video  */

.project-video-featured {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-md);
  margin-bottom: var(--space-xl);
}

.project-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

.project-video-card {
  overflow: hidden;
  min-height: 100%;
}

.video-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--vb-ink);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding-bottom: 0.6rem;
}

.short-video {
  width: 100%;
}

.short-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
}

.project-video-featured:has(.project-video-card:only-child) {
  display: block;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*  Project next  */

.project-next-section {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

.project-next-card {
  background: linear-gradient(
    135deg,
    rgba(91, 79, 225, 0.05),
    rgba(91, 79, 225, 0.02)
  );
  margin-top: 0.5rem;
  padding: 2.25rem 2.5rem;
}

.project-next-card .section-title {
  max-width: 14ch;
}

/*  Project page shared header variation  */

.project-page .selected-work-header {
  max-width: 48rem;
  margin-bottom: var(--space-xl);
}

.project-page .selected-work-header p {
  max-width: 44rem;
  line-height: 1.68;
}

/*  Legacy reset safety  */

.featured-work,
.project-card,
.project-thumb,
.project-body,
.project-meta,
.project-tag,
.project-title,
.project-desc,
.project-link {
  all: unset;
}

/*  06 - UTILITIES (helpers, animations)  */

@keyframes heroAmbientShift {
  0% {
    background:
      radial-gradient(
        circle at 48% 60%,
        rgba(167, 139, 250, 0.08) 0%,
        rgba(167, 139, 250, 0) 34%
      ),
      radial-gradient(
        circle at 52% 24%,
        rgba(91, 79, 225, 0.04) 0%,
        rgba(91, 79, 225, 0) 42%
      );
  }
  100% {
    background:
      radial-gradient(
        circle at 54% 64%,
        rgba(167, 139, 250, 0.1) 0%,
        rgba(167, 139, 250, 0) 36%
      ),
      radial-gradient(
        circle at 46% 20%,
        rgba(91, 79, 225, 0.05) 0%,
        rgba(91, 79, 225, 0) 44%
      );
  }
}

@keyframes heroAtmosphereFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.18;
  }
  100% {
    transform: translate3d(0, -8px, 0) scale(1.04);
    opacity: 0.28;
  }
}

/*  07 - RESPONSIVE  */

@keyframes workThumbnailSlideOne {
  0%,
  30% {
    opacity: 1;
  }

  36.666%,
  90% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes workThumbnailSlideTwo {
  0%,
  30% {
    opacity: 0;
  }

  36.666%,
  63.333% {
    opacity: 1;
  }

  70%,
  100% {
    opacity: 0;
  }
}

@keyframes workThumbnailSlideThree {
  0%,
  63.333% {
    opacity: 0;
  }

  70%,
  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

html,
body {
  overflow-x: clip;
}

img,
video,
iframe,
svg,
canvas {
  max-width: 100%;
}

img,
video,
iframe {
  vertical-align: middle;
}

.work-card-image img {
  display: block;
}

.project-hero-image img,
.project-gallery-card img,
.project-gallery-card video,
.project-video-card video,
.project-video-card iframe {
  display: block;
  width: 100%;
}

.container,
.container-fluid {
  width: 100%;
}

.project-hero-image img,
.project-gallery-card img,
.project-gallery-card video,
.project-video-card video {
  height: auto;
}

@media (min-width: 1600px) {
  .hero-centered-inner {
    max-width: 1080px;
  }

  .hero-title {
    font-size: clamp(4rem, 5vw, 6rem);
  }

  .hero-copy {
    max-width: 42rem;
  }

  .hero-logo-focus {
    width: min(300px, 22vw);
  }
}

@media (max-width: 1399.98px) {
  .hero-centered-inner {
    max-width: 920px;
  }

  .hero-title {
    font-size: clamp(2.9rem, 6vw, 5.2rem);
  }

  .hero-logo-focus {
    width: min(270px, 40vw);
  }
}

@media (max-width: 1299.98px) {
  .section-padding {
    padding: calc(var(--space-3xl) * 0.92) 0;
  }

  .hero-centered-inner {
    max-width: 900px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 5.6vw, 5rem);
  }

  .hero-copy {
    max-width: 36rem;
  }

  .hero-visual {
    margin-top: 2rem;
  }

  .selected-work .selected-work-grid,
  .work-page-grid {
    gap: var(--space-lg);
  }

  .project-copy-section .row {
    row-gap: var(--space-lg);
  }
}

@media (max-width: 1199.98px) {
  .project-page-bully .project-section-title {
    max-width: 16ch;
  }

  .project-page-bully .project-video-featured {
    gap: var(--space-lg);
  }

  .project-page-bully .project-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-md);
  }

  .hero-centered-inner {
    max-width: 860px;
    padding-top: 4.75rem;
    padding-bottom: 2.75rem;
  }

  .hero-title {
    font-size: clamp(2.65rem, 6vw, 4.75rem);
    line-height: 0.95;
  }

  .hero-copy {
    max-width: 35rem;
  }

  .hero-visual {
    margin-top: 2.25rem;
  }

  .hero-logo-stage {
    min-height: 200px;
  }

  .hero-logo-focus {
    width: min(240px, 34vw);
  }

  .work-page-grid,
  .selected-work-grid {
    gap: var(--space-lg);
  }

  .project-meta-grid {
    gap: var(--space-md);
  }

  .about-card,
  .cta-card,
  .contact-card {
    padding: 1.75rem;
  }

  .about-section.section-padding {
    padding-top: calc(var(--space-3xl) * 0.78);
    padding-bottom: calc(var(--space-3xl) * 0.78);
  }

  .about-card {
    padding: 1.6rem;
  }

  .about-card > .row {
    --bs-gutter-x: 1.75rem;
    --bs-gutter-y: 1.5rem;
  }

  .about-title {
    font-size: clamp(1.85rem, 2.55vw, 2.35rem);
    line-height: 1;
    margin-bottom: 0.7rem;
  }

  .about-intro,
  .about-support {
    line-height: 1.56;
  }

  .about-intro {
    font-size: 1rem;
  }

  .about-support {
    margin-bottom: 1rem;
  }

  .about-meta-row {
    margin-top: 0.7rem;
  }

  .about-meta-card {
    padding: 1.05rem 1rem;
  }

  .about-meta-title {
    margin-bottom: 0.85rem;
    font-size: 1.04rem;
  }

  .about-card .tool-icon {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 1099.98px) {
  .hero-centered-inner {
    max-width: 820px;
    padding-top: 4rem;
    padding-bottom: 2rem;
  }

  .hero-title {
    font-size: clamp(2.5rem, 5.8vw, 4.3rem);
  }

  .hero-copy {
    max-width: 33rem;
  }

  .hero-actions {
    margin-top: 1.5rem;
  }

  .hero-actions-centered {
    margin-bottom: 2rem;
  }

  .hero-visual {
    margin-top: 2rem;
  }

  .hero-logo-stage {
    min-height: 180px;
  }

  .section-padding {
    padding: calc(var(--space-3xl) * 0.88) 0;
  }

  .project-copy-card {
    padding: 1.5rem;
  }
}

@media (min-width: 992px) and (max-height: 980px) {
  .about-section.section-padding {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  .about-card {
    padding: 1.75rem;
  }

  .about-card > .row {
    --bs-gutter-x: 1.75rem;
    --bs-gutter-y: 1.5rem;
  }

  .profile-wrap {
    max-width: 460px;
    margin-inline: auto;
    transform: translateY(0);
  }

  .profile-wrap img {
    height: auto;
    object-fit: initial;
    object-position: initial;
  }
}

@media (min-width: 992px) and (max-height: 820px) {
  .about-section.section-padding {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .about-card {
    padding: 1.35rem;
  }

  .about-card > .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.25rem;
  }

  .profile-wrap {
    max-width: 420px;
    margin-inline: auto;
    transform: translateY(0);
  }

  .profile-wrap img {
    height: auto;
    object-fit: initial;
    object-position: initial;
  }

  .about-title {
    font-size: clamp(1.85rem, 2.4vw, 2.25rem);
    line-height: 0.98;
    margin-bottom: 0.65rem;
  }

  .about-intro {
    font-size: 0.96rem;
    line-height: 1.5;
    margin-bottom: 0.65rem;
  }

  .about-meta-row {
    margin-top: 0.55rem;
  }

  .about-meta-card {
    padding: 0.95rem;
  }

  .about-meta-title {
    margin-bottom: 0.65rem;
    font-size: 1rem;
  }

  .focus-list {
    gap: 0.35rem;
  }

  .focus-list li {
    font-size: 0.92rem;
  }

  .about-card .tool-grid {
    gap: 0.45rem;
  }

  .about-card .tool-icon {
    width: 44px;
    height: 44px;
  }
}

@media (min-width: 992px) and (max-height: 760px) {
  .about-section.section-padding {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .about-card {
    padding: 1.2rem;
  }

  .about-card > .row {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1rem;
  }

  .profile-wrap {
    max-width: 380px;
  }

  .about-title {
    font-size: clamp(1.7rem, 2.15vw, 2.05rem);
  }

  .about-intro,
  .about-support {
    font-size: 0.94rem;
    line-height: 1.46;
  }

  .about-meta-card {
    padding: 0.85rem;
  }

  .about-card .tool-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-height: 920px) and (min-width: 992px) {
  .hero {
    min-height: auto;
    height: auto;
  }

  .hero-sticky-wrap {
    min-height: auto;
    align-items: flex-start;
    padding: 4.75rem 0 2.75rem;
  }

  .hero-centered-inner {
    max-width: 880px;
    padding-top: 1rem;
    padding-bottom: 0;
  }

  .hero-title {
    margin-bottom: 1rem;
    font-size: clamp(2.55rem, 5.4vw, 4.4rem);
    line-height: 0.95;
  }

  .hero-copy {
    max-width: 34rem;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 1.35rem;
  }

  .hero-actions-centered {
    margin-bottom: 1.6rem;
  }

  .hero-visual {
    margin-top: 1.75rem;
  }

  .hero-logo-stage {
    min-height: 155px;
    margin-top: 0.85rem;
  }

  .hero-logo-focus {
    width: min(190px, 24vw);
  }

  .section-padding {
    padding: calc(var(--space-3xl) * 0.82) 0;
  }
}

@media (max-height: 840px) and (min-width: 992px) {
  .hero-sticky-wrap {
    padding: 4.25rem 0 2.25rem;
  }

  .hero-centered-inner {
    max-width: 840px;
  }

  .hero-title {
    margin-bottom: 0.9rem;
    font-size: clamp(2.4rem, 5vw, 4.05rem);
  }

  .hero-copy {
    max-width: 32rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 1.1rem;
  }

  .hero-actions-centered {
    margin-bottom: 1.35rem;
  }

  .hero-logo-stage {
    min-height: 140px;
    margin-top: 0.55rem;
  }

  .hero-logo-focus {
    width: min(175px, 21vw);
  }
}

@media (max-height: 780px) and (min-width: 992px) {
  .hero-sticky-wrap {
    padding: 4rem 0 2rem;
  }

  .hero-centered-inner {
    padding-top: 0.5rem;
  }

  .hero-title {
    margin-bottom: 0.85rem;
    font-size: clamp(2.35rem, 4.8vw, 4rem);
    line-height: 0.94;
  }

  .hero-copy {
    font-size: 0.96rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 1rem;
  }

  .hero-actions-centered {
    margin-bottom: 1.2rem;
  }

  .hero-visual {
    margin-top: 1.2rem;
  }

  .hero-logo-stage {
    min-height: 130px;
    margin-top: 0.5rem;
  }

  .hero-logo-focus {
    width: min(170px, 20vw);
  }
}

@media (max-width: 991.98px) {
  .collaborations-section {
    padding-top: var(--space-2xl);
  }

  .collaborations-intro {
    margin-bottom: var(--space-xl);
  }

  .collaboration-feature {
    padding: 1.2rem;
  }

  .collaboration-quote {
    max-width: 100%;
  }

  .contact-card {
    padding: 1.75rem;
  }

  .contact-title,
  .contact-copy {
    max-width: none;
  }

  .contact-actions {
    max-width: none;
    margin-left: 0;
  }

  .lexx-variation-surface {
    min-height: 300px;
  }

  .lexx-symbol-surface {
    min-height: 230px;
  }

  .project-page-bully .project-section-title {
    max-width: none;
  }

  .project-page-bully .project-header-block {
    margin-bottom: var(--space-xl);
  }

  .project-page-bully .project-meta-grid {
    gap: var(--space-sm);
  }

  .project-page-bully .project-copy-section .row {
    gap: 2rem 0;
  }

  .project-page-bully .project-video-featured {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .project-page-bully .project-video-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .project-page-bully .project-video-card.short-video {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .project-page-bully .project-gallery-grid {
    grid-template-columns: 1fr;
  }

  .project-page-bully .gallery-hero {
    grid-column: auto;
  }

  .navbar-collapse {
    margin-top: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    text-align: right;
  }

  .navbar-nav {
    align-items: flex-end !important;
    gap: 0.35rem !important;
    margin-left: auto;
    width: 100%;
  }

  .nav-item {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .nav-link {
    padding: 0.5rem 0;
    justify-content: flex-end;
    text-align: right;
  }

  .nav-link::after {
    bottom: 0.1rem;
    left: auto;
    right: 0;
    transform-origin: right;
  }

  .section-padding {
    padding: var(--space-3xl) 0;
  }

  .hero {
    min-height: auto;
    height: auto;
  }

  .hero-sticky-wrap {
    min-height: auto;
    min-height: unset;
    align-items: flex-start;
    position: relative;
    padding: 5rem 0 3.25rem;
  }

  .hero-centered-inner {
    max-width: 100%;
    padding-top: 1rem;
    padding-bottom: 0;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-title {
    margin-bottom: 1rem;
    font-size: clamp(2.35rem, 6.35vw, 3.85rem);
    line-height: 0.96;
    letter-spacing: -0.055em;
  }

  html[lang="fr"] .hero-title,
  .hero-title-fr {
    font-size: clamp(2.15rem, 5.85vw, 3.45rem);
    line-height: 0.97;
    letter-spacing: -0.052em;
  }

  .hero-copy {
    max-width: 32rem;
    font-size: var(--text-md);
  }

  .hero-actions {
    margin-top: 1.35rem;
  }

  .hero-actions-centered {
    margin-bottom: 1.75rem;
  }

  .hero-visual {
    margin-top: 1.75rem;
  }

  .hero-logo-stage {
    min-height: 160px;
    margin-top: 0.85rem;
  }

  .hero-logo-focus {
    width: min(210px, 36vw);
  }

  .selected-work .selected-work-grid,
  .work-page-grid,
  .project-meta-grid,
  .project-video-featured {
    grid-template-columns: 1fr;
  }

  .selected-work .selected-work-header {
    margin-bottom: 2rem;
  }

  .project-section-sticky {
    position: relative;
    top: auto;
  }

  .project-section-title {
    max-width: 100%;
  }

  .project-header-block {
    margin-bottom: var(--space-xl);
  }

  .project-next-card .row > div:last-child {
    display: flex;
    justify-content: flex-end;
    text-align: right;
  }

  .project-copy-section {
    padding-bottom: 3rem;
  }

  .project-gallery-grid {
    gap: var(--space-md);
  }

  .project-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-page-hero {
    padding-top: 3rem;
  }

  .contact-title {
    max-width: none;
  }

  .about-card,
  .cta-card,
  .contact-card,
  .project-copy-card {
    padding: 1.5rem;
  }

  .about-card > .row {
    --bs-gutter-y: 1.75rem;
  }

  .about-copy-wrap {
    max-width: none;
  }

  .about-title {
    max-width: 24ch;
    margin-bottom: 0.75rem;
  }

  .about-intro,
  .about-support {
    line-height: 1.6;
  }

  .about-meta-row {
    margin-top: 0.85rem;
  }

  .about-meta-card {
    padding: 1.1rem 1rem;
  }

  .about-meta-title {
    margin-bottom: 0.9rem;
    font-size: 1.05rem;
  }

  .about-card .tool-grid {
    gap: 0.5rem;
  }

  .about-card .tool-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 900.98px) and (min-width: 576px) {
  .hero-centered-inner {
    max-width: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-title {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 6.4vw, 3.45rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
  }

  html[lang="fr"] .hero-title,
  .hero-title-fr {
    font-size: clamp(1.85rem, 5.95vw, 3.12rem);
    line-height: 0.96;
  }

  .hero-copy {
    max-width: 30rem;
    font-size: 0.98rem;
  }

  .hero-actions {
    margin-top: 1.25rem;
  }

  .hero-actions-centered {
    margin-bottom: 1.75rem;
  }

  .hero-visual {
    margin-top: 1.75rem;
  }

  .hero-logo-stage {
    min-height: 145px;
    margin-top: 0.75rem;
  }

  .hero-logo-focus {
    width: min(190px, 42vw);
  }
}

@media (max-width: 840.98px) {
  .hero-centered-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-copy {
    max-width: 31rem;
  }

  .hero-logo-stage {
    min-height: 150px;
  }

  .hero-logo-focus {
    width: min(195px, 42vw);
  }

  .project-video-grid {
    grid-template-columns: 1fr;
  }

  .work-filter-bar {
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .collaborations-list {
    gap: var(--space-xl);
  }

  .collaboration-quote {
    font-size: clamp(1.25rem, 6vw, 1.6rem);
    line-height: 1.18;
  }

  .collaboration-client {
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
  }

  .project-hero-image-lexx {
    padding: 1.25rem;
    border-radius: 22px;
  }

  .lexx-variation-surface {
    min-height: 250px;
    padding: 1.5rem;
  }

  .lexx-symbol-surface {
    min-height: 210px;
    padding: 1.5rem;
  }

  .project-gallery-card figcaption {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .project-page-bully .project-page-title {
    font-size: clamp(2.15rem, 10.8vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.045em;
  }

  .project-page-bully .project-page-intro {
    font-size: 0.98rem;
  }

  .work-page-title,
  .project-page-title {
    font-size: clamp(2.3rem, 12vw, 3.8rem);
  }

  .hero-copy,
  .work-page-intro,
  .project-page-intro {
    font-size: var(--text-md);
  }

  .hero-copy br {
    display: none;
  }

  .hero-visual {
    margin-top: 2.35rem;
  }

  .hero-logo-stage {
    min-height: 150px;
  }

  .hero-logo-focus {
    width: min(190px, 46vw);
  }

  .work-card-content,
  .work-page .work-card-content {
    padding: 1rem 1rem 1.15rem;
  }

  .work-card-title,
  .work-page .work-card-title {
    font-size: 1.2rem;
  }

  .about-card,
  .cta-card,
  .contact-card {
    padding: 1.5rem;
    border-radius: var(--vb-radius-xl);
  }

  .about-title {
    max-width: 22ch;
  }

  .about-meta-title {
    font-size: 1.04rem;
  }

  .about-card .tool-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .project-copy-card {
    padding: 1.25rem;
    border-radius: 1.35rem;
  }

  .project-gallery-grid,
  .project-gallery-grid-burj,
  .project-video-grid {
    grid-template-columns: 1fr;
  }

  .gallery-hero,
  .project-gallery-grid-burj .gallery-hero {
    grid-column: 1 / -1;
  }

  .project-gallery-grid-burj .project-gallery-card,
  .project-gallery-grid-burj .project-gallery-card:not(.gallery-hero) {
    aspect-ratio: auto;
  }

  .project-gallery-grid-burj img {
    height: auto;
  }

  .project-hero-image {
    border-radius: 1.4rem;
  }

  .project-hero-section {
    padding-top: calc(var(--space-3xl) * 0.78);
  }

  .project-header-block,
  .project-meta-grid {
    margin-bottom: var(--space-xl);
  }

  .project-copy-section {
    padding-bottom: var(--space-2xl);
  }

  .project-gallery-section {
    padding-bottom: var(--space-xl);
  }

  .work-page-grid-section {
    padding-bottom: 3.5rem;
  }

  .work-filter-bar {
    gap: 0.6rem;
  }

  .work-filter-btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .brand-mark-horizontal img {
    height: 1.65rem;
    max-width: 180px;
  }

  .section-padding {
    padding: calc(var(--space-3xl) * 0.78) 0;
  }
}

@media (max-width: 767.98px) and (max-height: 740px) {
  .hero-sticky-wrap {
    padding: 4.25rem 0 2.5rem;
  }

  .hero-centered-inner {
    padding-top: 0.75rem;
  }

  .hero-title {
    margin-bottom: 0.9rem;
  }

  .hero-copy {
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 1rem;
  }

  .hero-actions-centered {
    margin-bottom: 1.35rem;
  }

  .hero-visual {
    margin-top: 1.2rem;
  }

  .hero-logo-stage {
    min-height: 120px;
  }

  .hero-logo-focus {
    width: min(155px, 42vw);
  }
}

@media (max-width: 575.98px) {
  .hero,
  .hero-sticky-wrap {
    min-height: auto;
  }

  .hero-centered-inner {
    padding-top: 1.5rem;
    padding-bottom: 1.1rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-kicker-centered {
    margin-bottom: 0.65rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .hero-kicker-centered::before {
    width: 1.6rem;
  }

  .hero-title {
    margin-bottom: 0.75rem;
    font-size: clamp(1.78rem, 8vw, 2.45rem);
    line-height: 0.94;
    letter-spacing: -0.065em;
  }

  html[lang="fr"] .hero-title,
  .hero-title-fr {
    font-size: clamp(1.6rem, 8vw, 2.05rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
  }

  .hero-line {
    white-space: nowrap;
  }

  .hero-word-slot {
    min-width: auto;
  }

  html[lang="fr"] .hero-title .hero-line:last-child {
    display: block;
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(1.35rem, 6.4vw, 1.8rem);
    letter-spacing: -0.055em;
    white-space: nowrap;
  }

  html[lang="fr"] .hero-title .hero-line:last-child .hero-word,
  html[lang="fr"] .hero-title .hero-line:last-child .hero-word-slot {
    margin-right: 0.12em;
  }

  html[lang="fr"] .hero-title .hero-line:last-child .hero-word-slot:last-child {
    margin-right: 0;
  }

  .hero-copy {
    max-width: 21.5rem;
    margin: 0 auto;
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .hero-copy br {
    display: none;
  }

  .hero-actions {
    margin-top: 0.95rem;
    gap: 0.65rem !important;
  }

  .hero-actions .btn {
    min-width: 9.25rem;
    padding: 0.82rem 1.1rem;
  }

  .hero-visual {
    margin-top: 0.95rem;
  }

  .hero-logo-stage {
    min-height: 92px;
    margin-top: 0.15rem;
  }

  .hero-logo-focus {
    width: min(122px, 34vw);
  }

  .work-page-title,
  .project-page-title {
    font-size: clamp(2rem, 10.5vw, 2.9rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .work-page-header,
  .project-header-block {
    margin-bottom: var(--space-lg);
  }

  .work-filter-bar {
    margin-top: var(--space-lg);
  }

  .section-padding {
    padding: calc(var(--space-3xl) * 0.7) 0;
  }

  .about-card,
  .cta-card,
  .contact-card,
  .project-copy-card,
  .collaboration-feature {
    padding: 1.15rem;
  }

  .about-card > .row {
    --bs-gutter-y: 1.35rem;
  }

  .about-title {
    max-width: 100%;
    margin-bottom: 0.65rem;
  }

  .about-intro,
  .about-support {
    line-height: 1.55;
  }

  .about-support {
    margin-bottom: 0.95rem;
  }

  .about-meta-row {
    margin-top: 0.7rem;
  }

  .about-meta-card {
    padding: 1rem;
  }

  .about-meta-title {
    margin-bottom: 0.8rem;
    font-size: 1.02rem;
  }

  .about-card .tool-icon {
    width: 46px;
    height: 46px;
  }

  .work-card-content,
  .work-page .work-card-content {
    padding: 0.95rem 0.95rem 1.05rem;
  }

  .project-gallery-card figcaption {
    padding: 1rem 1rem 1.2rem;
  }
}

@media (max-width: 399.98px) {
  .hero-centered-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-title {
    font-size: clamp(1.6rem, 8.5vw, 2rem);
  }

  html[lang="fr"] .hero-title,
  .hero-title-fr {
    font-size: clamp(1.42rem, 7.8vw, 1.82rem);
  }

  .hero-copy {
    font-size: 0.88rem;
  }

  html[lang="fr"] .hero-title .hero-line:last-child {
    font-size: clamp(1.18rem, 5.75vw, 1.36rem);
    letter-spacing: -0.065em;
  }

  html[lang="fr"] .hero-title .hero-line:last-child .hero-word,
  html[lang="fr"] .hero-title .hero-line:last-child .hero-word-slot {
    margin-right: 0.08em;
  }

  .work-page-title,
  .project-page-title {
    font-size: clamp(1.85rem, 10vw, 2.35rem);
  }

  .hero-actions .btn {
    min-width: 100%;
  }

  .brand-mark-horizontal img {
    max-width: 155px;
  }

  .work-filter-btn {
    width: 100%;
    justify-content: center;
  }
}

/*  Accessibility / reduced motion  */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero::before,
  .hero::after,
  .hero-word-main,
  .hero-word-video,
  .hero-word-digital,
  .hero-word-print,
  .hero-logo-stage,
  .hero-logo-focus,
  .logo-part,
  .hero-copy,
  .hero-actions,
  .section-kicker,
  .hero-title {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .hero-word-main,
  .hero-word-video,
  .hero-word-digital,
  .hero-word-print {
    animation-play-state: paused;
    font-family: "Space Grotesk", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-variation-settings: "wght" 700;
    letter-spacing: -0.04em;
    color: var(--vb-ink);
  }

  .hero-line,
  .hero-copy,
  .hero-actions,
  .hero-centered-inner,
  .hero-kicker-centered,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .work-card-slideshow img {
    opacity: 0;
  }

  .work-card-slideshow img:first-child {
    opacity: 1;
  }

  .hero-logo-stage .logo-v,
  .hero-logo-stage .logo-b {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  .hero-logo-stage .hero-logo-focus {
    filter: none;
  }

  .hero-word-accent:hover,
  .hero-actions .btn:hover,
  .hero-actions .btn:focus-visible,
  .hero-actions .btn:active,
  .work-card:hover .work-card-image img,
  .work-card:focus-visible .work-card-image img,
  .project-gallery-card:hover img,
  .photography-lightbox-trigger:hover img,
  .photography-lightbox-trigger:focus-visible img,
  .collaboration-feature:hover .collaboration-portrait img,
  .tool-icon:hover {
    transform: none;
  }
}
/*  Bully Dogs page  */

.project-page-bully .project-page-intro {
  max-width: 46rem;
}

.project-page-bully .project-copy-card {
  overflow: hidden;
}

.project-page-bully .project-copy-section .reveal {
  transform: none !important;
  opacity: 1 !important;
}

.project-page-bully .project-video-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  border-radius: var(--vb-radius-xl);
  min-height: 0;

  transform: none !important;
  will-change: auto;
  transition:
    box-shadow var(--vb-transition-slow),
    border-color var(--vb-transition-slow),
    background-color var(--vb-transition-slow);
}

.project-page-bully .project-video-card:hover,
.project-page-bully .project-video-card:focus-visible,
.project-page-bully .project-video-card:active {
  transform: none !important;
}

.project-page-bully .project-video-card.short-video {
  aspect-ratio: 9 / 16;
}

.project-page-bully .project-video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #000;
  opacity: 1;

  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.project-page-bully .short-video iframe {
  aspect-ratio: auto;
}

.project-page-bully .project-video-featured,
.project-page-bully .project-video-grid {
  align-items: start;
}

/*  Photography project page  */

.project-page-photography .project-page-intro {
  max-width: 48rem;
}

.project-page-photography .project-meta-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-photo-section {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.project-photo-section + .project-photo-section {
  padding-top: 0;
}

.project-page-photography .project-section-heading {
  max-width: 48rem;
}

.project-page-photography .project-section-heading .text-muted-custom {
  max-width: 44rem;
  line-height: 1.68;
  margin-bottom: 0;
}

.photography-grid {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.photography-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--vb-radius-xl);
  background: rgba(16, 24, 39, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: var(--vb-shadow);
}

.photography-lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: inherit;
}

.photography-lightbox-trigger img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 540px;
  object-fit: cover;
  display: block;
  transition:
    transform 0.6s var(--vb-ease-out),
    filter 0.6s var(--vb-ease-out);
}

.photography-card-featured .photography-lightbox-trigger img {
  min-height: 420px;
  max-height: 680px;
}

.photography-lightbox-trigger:hover img,
.photography-lightbox-trigger:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.03);
}

.photography-lightbox-trigger:focus-visible {
  outline: 3px solid var(--vb-primary);
  outline-offset: 4px;
}

.photography-modal-content {
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top left,
      rgba(91, 79, 225, 0.22),
      transparent 34%
    ),
    rgba(8, 10, 18, 0.96);
  border: 0;
  cursor: zoom-out;
}

.photography-carousel,
.photography-carousel .carousel-inner,
.photography-carousel .carousel-item {
  height: 100vh;
}

.photography-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(1.5rem, 4vw, 4rem);
  display: block;
  cursor: default;
}

.photography-modal-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 20;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--vb-primary)
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e")
    center / 0.9rem auto no-repeat;
  filter: none;
  opacity: 0.92;
  box-shadow: 0 14px 34px rgba(91, 79, 225, 0.28);
  transition:
    opacity var(--vb-transition-fast),
    background-color var(--vb-transition-fast);
}

.photography-modal-close:hover,
.photography-modal-close:focus-visible {
  opacity: 1;
  background-color: var(--vb-primary-dark);
}

.photography-carousel-control {
  width: clamp(3.5rem, 8vw, 7rem);
  cursor: pointer;
}

.photography-carousel-control .carousel-control-prev-icon,
.photography-carousel-control .carousel-control-next-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background-color: var(--vb-primary);
  background-size: 46% 46%;
  border: 1px solid rgba(167, 139, 250, 0.55);
  box-shadow: 0 14px 34px rgba(91, 79, 225, 0.28);
  backdrop-filter: blur(12px);
  transition:
    background-color var(--vb-transition-fast),
    border-color var(--vb-transition-fast);
}

.photography-carousel-control:hover .carousel-control-prev-icon,
.photography-carousel-control:focus-visible .carousel-control-prev-icon,
.photography-carousel-control:hover .carousel-control-next-icon,
.photography-carousel-control:focus-visible .carousel-control-next-icon {
  background-color: var(--vb-primary-dark);
  border-color: var(--vb-primary-light);
}

@media (max-width: 1199.98px) {
  .project-page-photography .project-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .project-page-photography .project-meta-grid {
    grid-template-columns: 1fr;
  }

  .project-photo-section {
    padding: 3.5rem 0;
  }

  .photography-lightbox-trigger img {
    min-height: 260px;
    max-height: 420px;
  }

  .photography-card-featured .photography-lightbox-trigger img {
    min-height: 300px;
    max-height: 500px;
  }

  .photography-carousel .carousel-item img {
    padding: 4.25rem 1rem 2rem;
  }

  .photography-modal-close {
    top: 1rem;
    right: 1rem;
    width: 2.35rem;
    height: 2.35rem;
  }

  .photography-carousel-control {
    width: 3rem;
  }

  .photography-carousel-control .carousel-control-prev-icon,
  .photography-carousel-control .carousel-control-next-icon {
    width: 2rem;
    height: 2rem;
  }
}

@media (max-width: 575.98px) {
  .project-photo-section {
    padding: 3rem 0;
  }

  .photography-grid {
    margin-top: 1.25rem;
  }

  .photography-lightbox-trigger img {
    min-height: 220px;
    max-height: 360px;
  }

  .photography-card-featured .photography-lightbox-trigger img {
    min-height: 260px;
    max-height: 420px;
  }
}
