/* ========== Showreel Banner ========== */
.showreel-banner {
  position: relative;
  overflow: visible;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  aspect-ratio: 16 / 8.5;
}

.showreel-banner__glow {
  position: absolute;
  bottom: 100%;
  left: -5%;
  width: 110%;
  height: 22vh;
  filter: blur(150px) saturate(1.8) brightness(0.8);
  pointer-events: none;
  z-index: 0;
}

.showreel-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 3, 4, 0) 50%, rgba(3, 3, 4, 0.55));
  z-index: 1;
  pointer-events: none;
}

.showreel-banner__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
}

.showreel-banner__overlay h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  background: rgba(7, 7, 8, 0.5);
  padding: 1rem 2.5rem;
  border-radius: var(--radius) var(--radius) 0 0;
  backdrop-filter: blur(10px);
}

.showreel-banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ========== Navigation ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7, 7, 8, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--navbar-height);
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.navbar__logo picture {
  display: inline-block;
  width: 36px;
  height: 36px;
}

.navbar__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.navbar__title {
  line-height: 1;
}

.navbar__logo:hover {
  color: var(--accent);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 0;
}

.navbar__group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navbar__label {
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-right: 0.75rem;
}

.navbar__divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 1.5rem;
}

.navbar__links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--text-primary);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== Footer ========== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.footer__heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: var(--btn-dark-text);
}

.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--btn-dark-text);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* ========== Cards ========== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.card--static:hover {
  background: var(--bg-card);
  border-color: var(--border);
  transform: none;
  box-shadow: none;
}

.card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--card-gradient);
  position: relative;
  overflow: hidden;
}

.card__image picture,
.card__image img,
.card__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Slideshow slides ── */
.ss-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
  pointer-events: none;
}

.ss-slide.ss-active {
  opacity: 1;
  pointer-events: auto;
}

.ss-slide img,
.ss-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Square variant for image packs */
.card--square .card__image {
  aspect-ratio: 1 / 1;
}

.card__image--creatures {
  background: var(--card-gradient-creatures);
}

.card__image--cybercity {
  background: var(--card-gradient-cybercity);
}

.card__body {
  padding: 1.5rem;
}

/* Smaller body for square cards */
.card--square .card__body {
  padding: 1rem;
}

.card__body h3 {
  margin-bottom: 0.5rem;
}

.card--square .card__body h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.card__body p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.card--square .card__body p {
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.card__body .badge {
  margin-bottom: 0.75rem;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.card__link:hover {
  gap: 0.6rem;
}

/* ========== VFX Showcase ========== */
.vfx-showcase {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.vfx-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: block;
  text-decoration: none;
  color: inherit;
}

.vfx-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-border);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.vfx-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--card-gradient);
  position: relative;
  overflow: hidden;
}

.vfx-card__media--cybercity {
  background: var(--card-gradient-cybercity);
}

.vfx-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vfx-card__body {
  padding: 2rem;
}

.vfx-card__body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.vfx-card__description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.vfx-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.875rem;
}

.vfx-card__tag {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
}

.vfx-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 1.25rem;
  transition: color var(--transition), gap var(--transition);
}

.vfx-card:hover .vfx-card__cta {
  color: var(--accent);
  gap: 0.65rem;
}

/* ========== VFX Cards List ========== */
.vfx-cards-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 4rem;
}

/* ========== Creature Shelf ========== */
.creature-shelf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1rem 0 4rem;
}

.creature-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition);
  cursor: pointer;
}

.creature-slot:hover {
  transform: translateY(-6px);
  color: inherit;
}

.creature-slot--empty {
  pointer-events: none;
  opacity: 0.35;
}

/* Stage: open area where creatures will be placed */
.creature-slot__stage {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.creature-slot__stage img,
.creature-slot__stage video,
.creature-slot__stage picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  z-index: 2;
}

/* Podium / platform base */
.creature-slot__podium {
  width: 100%;
  position: relative;
  padding: 1.2rem 1rem 1rem;
  text-align: center;
  /* top surface of the podium */
  background:
    linear-gradient(180deg,
      rgba(212, 175, 55, 0.12) 0%,
      rgba(212, 175, 55, 0.03) 30%,
      transparent 100%),
    linear-gradient(180deg,
      #1a1822 0%,
      #14131a 60%,
      #0e0e14 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-top: none;
}

/* top-edge highlight across the podium */
.creature-slot__podium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(212, 175, 55, 0.5) 30%,
      rgba(212, 175, 55, 0.7) 50%,
      rgba(212, 175, 55, 0.5) 70%,
      transparent 100%);
  border-radius: 1px;
}

/* elliptical glow on the platform surface */
.creature-slot__glow {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: radial-gradient(ellipse at center,
      rgba(212, 175, 55, 0.10) 0%,
      transparent 70%);
  pointer-events: none;
}

.creature-slot__name {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.creature-slot__species {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.15rem;
}

/* hover accent on the name */
.creature-slot:hover .creature-slot__name {
  color: var(--accent);
}

.creature-slot:hover .creature-slot__podium {
  border-color: rgba(212, 175, 55, 0.3);
}

.creature-slot:hover .creature-slot__podium::before {
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(212, 175, 55, 0.7) 30%,
      rgba(212, 175, 55, 1) 50%,
      rgba(212, 175, 55, 0.7) 70%,
      transparent 100%);
}

/* ========== Hero ========== */
.hero {
  min-height: calc(100vh - var(--navbar-height));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Grain overlay to break up gradient banding */
.hero::after {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  filter: url(#grain);
  opacity: 0.035;
  pointer-events: none;
  z-index: 3;
}

/* Particle canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ---------- Background ambient glows ---------- */
.hero__bg-glow {
  position: absolute;
  width: 112vw;
  height: 88vw;
  max-width: 1760px;
  max-height: 1360px;
  border-radius: 42% 58% 55% 45% / 50% 42% 58% 50%;
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity, border-radius;
  filter: blur(60px);
  opacity: 0.5;
}

.hero__bg-glow--blue {
  background: radial-gradient(ellipse 70% 55%,
      rgba(154, 217, 255, 0.33) 0%,
      rgba(154, 217, 255, 0.17) 30%,
      rgba(154, 217, 255, 0.05) 55%,
      transparent 80%);
  left: 0;
  top: 0;
}

.hero__bg-glow--gold {
  background: radial-gradient(ellipse 60% 75%,
      rgba(212, 175, 55, 0.27) 0%,
      rgba(212, 175, 55, 0.13) 30%,
      rgba(212, 175, 55, 0.05) 55%,
      transparent 80%);
  left: 0;
  top: 0;
}

/* Inner flex container: logo + text side-by-side */
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: var(--max-width);
  padding: 2rem 1.5rem;
  width: 100%;
}

/* ---------- Logo wrapper & effects ---------- */
.hero__logo-wrap {
  position: relative;
  flex-shrink: 0;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 600px;
}

.hero__logo-3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.hero__logo-depth {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  backface-visibility: hidden;
}

.hero__logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(154, 217, 255, 0.25));
  transition: filter 0.4s ease;
  will-change: transform;
}

/* Glow layer 1: large soft diamond-blue – organic blob shape via border-radius */
.hero__logo-glow {
  position: absolute;
  inset: -35%;
  border-radius: 42% 58% 55% 45% / 50% 42% 58% 50%;
  background: radial-gradient(ellipse 60% 80%,
      rgba(154, 217, 255, 0.20) 0%,
      rgba(154, 217, 255, 0.10) 25%,
      rgba(154, 217, 255, 0.04) 50%,
      transparent 75%);
  z-index: 0;
  animation: logoGlow1 6s ease-in-out infinite;
  filter: blur(6px);
  pointer-events: none;
}

/* Glow layer 2: golden accent – different blob, different timing */
.hero__logo-glow--2 {
  inset: -25%;
  border-radius: 55% 45% 48% 52% / 44% 56% 44% 56%;
  background: radial-gradient(ellipse 75% 55%,
      rgba(212, 175, 55, 0.16) 0%,
      rgba(212, 175, 55, 0.07) 30%,
      rgba(212, 175, 55, 0.02) 55%,
      transparent 75%);
  animation: logoGlow2 7s ease-in-out 1.2s infinite;
  filter: blur(10px);
}

/* Glow layer 3: tight bright shimmer – most irregular */
.hero__logo-glow--3 {
  inset: -15%;
  border-radius: 60% 40% 52% 48% / 38% 62% 40% 60%;
  background: radial-gradient(ellipse 50% 70%,
      rgba(154, 217, 255, 0.24) 0%,
      rgba(200, 235, 255, 0.10) 20%,
      rgba(255, 255, 255, 0.04) 40%,
      transparent 65%);
  animation: logoGlow3 4.5s ease-in-out 0.6s infinite;
  filter: blur(12px);
}

@keyframes logoGlow1 {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.65;
    border-radius: 42% 58% 55% 45% / 50% 42% 58% 50%;
  }

  33% {
    transform: scale(1.08) rotate(3deg);
    opacity: 0.9;
    border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
  }

  66% {
    transform: scale(1.14) rotate(-2deg);
    opacity: 1;
    border-radius: 45% 55% 58% 42% / 48% 52% 46% 54%;
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.65;
    border-radius: 42% 58% 55% 45% / 50% 42% 58% 50%;
  }
}

@keyframes logoGlow2 {
  0% {
    transform: scale(1.02) translate(4%, -2%) rotate(0deg);
    opacity: 0.55;
    border-radius: 55% 45% 48% 52% / 44% 56% 44% 56%;
  }

  25% {
    transform: scale(1.12) translate(-2%, 4%) rotate(-4deg);
    opacity: 0.85;
    border-radius: 48% 52% 55% 45% / 52% 48% 50% 50%;
  }

  50% {
    transform: scale(1.18) translate(-4%, 2%) rotate(2deg);
    opacity: 1;
    border-radius: 52% 48% 42% 58% / 56% 44% 52% 48%;
  }

  75% {
    transform: scale(1.10) translate(3%, -3%) rotate(-1deg);
    opacity: 0.75;
    border-radius: 46% 54% 50% 50% / 50% 50% 48% 52%;
  }

  100% {
    transform: scale(1.02) translate(4%, -2%) rotate(0deg);
    opacity: 0.55;
    border-radius: 55% 45% 48% 52% / 44% 56% 44% 56%;
  }
}

@keyframes logoGlow3 {
  0% {
    transform: scale(0.92) rotate(0deg);
    opacity: 0.45;
    border-radius: 60% 40% 52% 48% / 38% 62% 40% 60%;
  }

  40% {
    transform: scale(1.06) rotate(5deg);
    opacity: 0.85;
    border-radius: 48% 52% 60% 40% / 55% 45% 52% 48%;
  }

  70% {
    transform: scale(1.10) rotate(-3deg);
    opacity: 0.95;
    border-radius: 52% 48% 44% 56% / 42% 58% 48% 52%;
  }

  100% {
    transform: scale(0.92) rotate(0deg);
    opacity: 0.45;
    border-radius: 60% 40% 52% 48% / 38% 62% 40% 60%;
  }
}

/* ---------- Hero text content ---------- */
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  text-align: left;
}

.hero__tagline {
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}

.hero__tagline-top {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero__tagline-bottom {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.hero__tagline .accent {
  color: var(--accent);
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 0 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* ========== Contact Form ========== */
.form {
  max-width: 600px;
  margin: 0 auto;
}

.form__group {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text-secondary);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  transition: border-color var(--transition);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

/* ========== Contact Info ========== */
.contact-info {
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: 4rem;
}

.contact-info__text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
  margin-top: 3rem;
}

.contact-info__heading {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.contact-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  color: var(--text-secondary);
}

.contact-info__block p {
  color: var(--text-secondary);
}

.contact-info__block a {
  color: var(--accent);
}

.contact-info__block a:hover {
  color: var(--accent-hover);
}

.contact-info__socials {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-info__socials a {
  color: var(--accent);
  text-decoration: none;
}

.contact-info__socials a:hover {
  color: var(--accent-hover);
}

@media (max-width: 600px) {
  .contact-info__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========== Team Grid ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.team-card__avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* make the portrait square */
  max-height: 420px;
  /* cap size on very wide screens */
  border-radius: var(--radius);
  background: transparent;
  border: 0;
  margin: 0 0 1.25rem;
  overflow: hidden;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  /* match inner rounding */
}

.team-card h4 {
  margin-bottom: 0.25rem;
}

/* Slightly reduce max-height on smaller screens */
@media (max-width: 900px) {
  .team-card__avatar {
    max-height: 360px;
  }
}

@media (max-width: 480px) {
  .team-card__avatar {
    max-height: 260px;
  }
}

.team-card p {
  font-size: 0.85rem;
}

/* ========== Location List ========== */
.locations {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.location__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ========== Product Hero Section ========== */
.product-hero {
  padding: 2rem 0 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}

.product-hero__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
}

.product-hero__info {
  flex: 1;
}

.product-hero__title {
  font-size: 3.5rem;
  margin: 0.75rem 0 1rem;
  line-height: 1.1;
}

.product-hero__description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

.product-hero__cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.product-hero__price {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Banner modifier: full-bleed image behind product hero (used by creature pages) */
.product-hero.product-hero--banner {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: calc(-1 * (var(--navbar-height) + 5rem));
  aspect-ratio: 16 / 8.5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-primary);
  display: flex;
  align-items: flex-end;
  padding: 0;
  border-bottom: none;
  margin-bottom: 3rem;
}

/* ── Hero video playlist ── */
.hero-playlist {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-playlist__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-playlist__slide--active {
  opacity: 1;
}

.hero-playlist__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-hero.product-hero--banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 3, 4, 0.25), rgba(3, 3, 4, 0.55));
  z-index: 0;
}

.product-hero.product-hero--banner .product-hero__header {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
}

.product-hero.product-hero--banner .product-hero__info {
  flex: 0 1 auto;
  position: relative;
  z-index: 1;
  background: rgba(7, 7, 8, 0.5);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 100%;
}

.product-hero.product-hero--banner .product-hero__text {
  min-width: 0;
  max-width: 600px;
}

.product-hero.product-hero--banner .product-hero__title {
  color: var(--text-primary);
  font-size: 2rem;
  margin: 0 0 0.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.product-hero.product-hero--banner .product-hero__description {
  font-size: 0.95rem;
  margin: 0;
}

.product-hero.product-hero--banner .product-hero__cta {
  flex-shrink: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 0;
}

.btn--icon {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn__logo {
  height: 1.2em;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .product-hero.product-hero--banner .product-hero__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-hero.product-hero--banner .product-hero__info {
    flex-direction: column;
    gap: 1rem;
  }

  .product-hero.product-hero--banner .product-hero__cta {
    width: 100%;
  }

  .product-hero.product-hero--banner .product-hero__title {
    font-size: 1.5rem;
  }
}

/* ========== Gallery Grid ========== */
.gallery {
  margin: 3rem 0;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery__grid--two-col {
  grid-template-columns: repeat(2, 1fr);
}

.gallery__grid--three-col {
  grid-template-columns: repeat(3, 1fr);
}

.gallery__item {
  aspect-ratio: 16 / 10;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
}

.gallery__item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(7, 7, 8, 0.95), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
}

.gallery__caption p {
  font-size: 0.9rem;
  margin: 0;
}

/* ========== Technical Table ========== */
.tech-table {
  margin: 2rem 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tech-table__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.tech-table__row:last-child {
  border-bottom: none;
}

.tech-table__row:hover {
  background: var(--bg-card-hover);
}

.tech-table__label {
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(212, 175, 55, 0.05);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.tech-table__value {
  padding: 1rem 1.5rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.tech-table__value code {
  background: var(--bg-secondary);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--accent);
}

/* ========== Feature Highlights ========== */
.feature-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
}

.feature-box:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
}

.feature-box__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-box h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.feature-box p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-box ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.75rem;
}

.feature-box li {
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

/* ========== Two-Column Layout ========== */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin: 3rem 0;
}

.two-column--reverse {
  direction: rtl;
}

.two-column--reverse>* {
  direction: ltr;
}

.two-column__content h2 {
  margin-bottom: 1rem;
}

.two-column__content h3 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.2rem;
}

.two-column__media {
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.two-column__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== Collaborator Cards ========== */
.collaborator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.collaborator-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}

.collaborator-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.collaborator-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-glow) 0%, var(--accent-diamond-glow) 100%);
  border: 3px solid var(--border);
  margin: 0 auto 1.5rem;
  overflow: hidden;
}

.collaborator-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collaborator-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.collaborator-card__role {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.collaborator-card__bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.collaborator-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
}

.collaborator-card__link:hover {
  gap: 0.7rem;
}

/* ========== Info Box ========== */
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 2rem 0;
}

.info-box--highlight {
  background: var(--accent-glow);
  border-left-color: var(--accent);
}

.info-box h4 {
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.info-box p {
  margin-bottom: 0.5rem;
}

.info-box p:last-child {
  margin-bottom: 0;
}

/* ========== Section Divider ========== */
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 4rem 0;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

/* ========== Sticky CTA ========== */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  animation: slideInUp 0.3s ease;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sticky-cta .btn {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-glow);
}

/* ========== Product Page Improvements ========== */
.product-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-gallery__main {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
}

.product-gallery__main img,
.product-gallery__main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.product-gallery__thumb {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  background: var(--bg-card);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  overflow: hidden;
}

.product-gallery__thumb:hover {
  border-color: var(--accent);
  opacity: 0.8;
}

.product-gallery__thumb.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.product-info-sticky {
  position: sticky;
  top: calc(var(--navbar-height) + 20px);
  /* Below navbar */
}

.product-price-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.product-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.product-price-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.product-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.product-specs-list {
  list-style: none;
  margin-bottom: 2rem;
}

.product-specs-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.product-specs-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: bold;
}

.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
}

.sales-points {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.sales-point {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.sales-point strong {
  color: var(--text-primary);
}

.sales-point__icon {
  color: var(--accent);
  font-weight: 700;
  line-height: 1.2;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.deliverable-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}

.deliverable-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.deliverable-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.proof-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  padding: 1rem;
}

.proof-card__headline {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.proof-card p {
  margin-bottom: 0;
}

.testimonial {
  border-left: 3px solid var(--accent);
  padding: 1rem 1rem 1rem 1.25rem;
  margin-top: 1rem;
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.testimonial__quote {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.testimonial__author {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.template-note {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ Accordion / Details Cards */
.faq-item {
  margin-bottom: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  margin-top: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ========== Logo Scroller ========== */
.logo-scroller {
  padding: 2.5rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.logo-scroller__header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-scroller__header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.logo-scroller__header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.logo-scroller__track {
  display: flex;
  gap: 2.5rem;
  animation: scroll 60s linear infinite;
  width: fit-content;
}

.logo-scroller__wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.logo-scroller__wrapper::before,
.logo-scroller__wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-scroller__wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-secondary), transparent);
}

.logo-scroller__wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.logo-scroller__item {
  width: 240px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  flex-shrink: 0;
  padding: 0.75rem;
}

.logo-scroller__item img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0.8);
  transition: filter var(--transition);
}

.logo-scroller__item:hover img {
  filter: brightness(1);
}

.logo-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  line-height: 1.3;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ========== Project Page Layout ========== */

/* Left-aligned page header modifier */
.page-header--left {
  text-align: left;
}

/* Two-column narrative layout: main content + sidebar */
.project-narrative {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Content section inside project-narrative should not add extra padding/border */
.project-narrative .content-section {
  padding: 0;
  border-bottom: none;
}

/* Sticky project info sidebar */
.project-sidebar {
  position: sticky;
  top: 2rem;
  align-self: start;
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  height: fit-content;
}

.project-sidebar__heading {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.project-sidebar__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-sidebar__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.project-sidebar__value {
  font-weight: 600;
  color: var(--text-primary);
}

.project-sidebar__value--accent {
  color: var(--accent);
}

/* Centered contact CTA block at end of project pages */
.project-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.project-cta h3 {
  margin-bottom: 1rem;
}

/* Gallery four-column grid */
.gallery__grid--four-col {
  grid-template-columns: repeat(4, 1fr);
}

/* Full-width video showcase */
.video-showcase {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  display: block;
}

/* ========== Artist Showcase ========== */
.artist-showcase {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.artist-showcase__item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.artist-showcase__item:hover {
  border-color: rgba(212, 175, 55, 0.25);
}

.artist-showcase__item video {
  width: 100%;
  height: auto;
  display: block;
}

.artist-showcase__credit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  border-top: 2px solid var(--accent);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.artist-showcase__credit-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 0.25rem;
}

.artist-showcase__credit a {
  color: var(--text-primary);
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}

.artist-showcase__credit a:hover {
  color: var(--accent);
}

.artist-showcase__credit-sep {
  color: var(--text-muted);
  margin: 0 0.15rem;
}

.artist-showcase__credit-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .project-narrative {
    grid-template-columns: 1fr;
  }

  .project-sidebar {
    position: static;
  }

  .gallery__grid--four-col {
    grid-template-columns: repeat(2, 1fr);
  }
}