:root {
  --bg: #f5f6f8;
  --bg-soft: #eef1f5;
  --surface: #ffffff;
  --surface-strong: #f9fafc;
  --ink: #121725;
  --ink-soft: #1d2333;
  --muted: #68708a;
  --line: rgba(18, 23, 37, 0.12);
  --line-soft: rgba(255, 255, 255, 0.14);
  --lime: #bae900;
  --lime-strong: #d6ff45;
  --coral: #fd5b38;
  --night: #090c14;
  --night-soft: #0f1320;
  --radius-xs: 10px;
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-xl: 44px;
  --shadow-soft: 0 18px 42px rgba(13, 19, 34, 0.1);
  --shadow-strong: 0 28px 62px rgba(12, 17, 31, 0.2);
  --container: min(1240px, 92vw);
  --section-space: clamp(74px, 9vw, 128px);
  --fast: 220ms ease;
  --normal: 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 5% -10%, #f5ffc2 0%, transparent 45%),
    radial-gradient(circle at 98% 8%, #d7deff 0%, transparent 30%),
    linear-gradient(180deg, #f8f9fb 0%, #f2f4f8 100%);
  line-height: 1.62;
  min-height: 100vh;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.35;
  pointer-events: none;
  z-index: -2;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
}

button {
  border: 0;
  background: transparent;
}

main {
  position: relative;
  z-index: 1;
}

[hidden] {
  display: none !important;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section--compact {
  padding-block: clamp(58px, 7vw, 88px);
}

.section--dark {
  background: linear-gradient(154deg, #090c14 0%, #121725 100%);
  color: #e5e9f4;
}

.section--muted {
  background: linear-gradient(170deg, #eff2f8 0%, #f8f9fc 100%);
}

.bg-orb {
  position: fixed;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(88px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.38;
}

.bg-orb--one {
  top: -180px;
  left: -90px;
  background: #d8ff60;
}

.bg-orb--two {
  right: -150px;
  top: 24%;
  background: #ccd5ff;
}

.bg-orb--three {
  left: 24%;
  bottom: -220px;
  background: #d6dcff;
}

.site-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--lime), #f0ff88);
  z-index: 200;
  transition: width 120ms linear;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 140;
  padding-top: 16px;
  transition: padding var(--normal);
}

.site-header.is-scrolled {
  padding-top: 10px;
}

.nav-shell {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(14, 20, 36, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  padding: 10px;
  transition: transform var(--normal), box-shadow var(--normal);
}

.site-header.is-scrolled .nav-shell {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(12, 17, 31, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(18, 23, 37, 0.1);
  padding: 4px;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__text strong {
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand__text small {
  font-size: 0.68rem;
  color: var(--muted);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: none;
  place-content: center;
  gap: 4px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.94);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #192138;
  transition: transform var(--fast), opacity var(--fast);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 600;
  color: #2b3348;
  padding: 11px 14px;
  border-radius: 999px;
  transition: color var(--fast), background-color var(--fast), transform var(--fast);
}

.nav a:hover,
.nav a.is-active {
  color: var(--ink);
  background: rgba(186, 233, 0, 0.22);
}

.nav a.is-active {
  box-shadow: inset 0 0 0 1px rgba(186, 233, 0, 0.7);
}

.nav-cta {
  margin-left: 4px;
}

.btn {
  --btn-bg: transparent;
  --btn-color: var(--ink);
  --btn-line: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid var(--btn-line);
  background: var(--btn-bg);
  color: var(--btn-color);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  padding: 14px 24px;
  cursor: pointer;
  transition: transform var(--normal), box-shadow var(--normal), background-color var(--normal), color var(--normal);
}

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

.btn--primary {
  --btn-bg: var(--lime);
  --btn-color: #11161f;
  --btn-line: rgba(20, 28, 44, 0.16);
  box-shadow: 0 14px 28px rgba(122, 150, 13, 0.28);
}

.btn--primary:hover {
  --btn-bg: #abff00;
}

.btn--outline {
  --btn-bg: rgba(18, 23, 37, 0.04);
  --btn-color: var(--ink);
  --btn-line: rgba(18, 23, 37, 0.22);
}

.btn--ghost {
  --btn-bg: rgba(255, 255, 255, 0.98);
  --btn-color: var(--ink);
  --btn-line: rgba(18, 23, 37, 0.14);
}

.btn--dark {
  --btn-bg: transparent;
  --btn-color: #ffffff;
  --btn-line: rgba(255, 255, 255, 0.35);
  color: #ffffff !important;
}

.btn--dark:hover {
  --btn-bg: rgba(255, 255, 255, 0.08);
  --btn-line: #ffffff;
  --btn-color: #ffffff;
  color: #ffffff !important;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #4e586f;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), rgba(186, 233, 0, 0.2));
}

.section--dark .eyebrow,
.page-hero .eyebrow {
  color: #a8b1cb;
}

h1,
h2,
h3,
h4 {
  font-family: "Outfit", sans-serif;
  letter-spacing: -0.015em;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4.3vw, 3.45rem);
}

h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
}

.lead {
  color: var(--muted);
  font-size: clamp(1.01rem, 1.9vw, 1.16rem);
  max-width: 62ch;
}

.section--dark .lead,
.page-hero .lead {
  color: #b7c0d8;
}

.section-head {
  max-width: 780px;
  margin-bottom: clamp(30px, 4.5vw, 52px);
}

.section-head p {
  margin-bottom: 8px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: clamp(16px, 2.4vw, 28px);
}

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

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

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

.panel {
  background: var(--surface);
  border: 1px solid rgba(18, 23, 37, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: clamp(20px, 2.6vw, 32px);
}

.section--dark .panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.panel--hover {
  transition: transform var(--normal), border-color var(--normal), box-shadow var(--normal), background-color var(--normal);
}

.panel--hover:hover {
  transform: translateY(-6px);
  border-color: rgba(186, 233, 0, 0.5);
  box-shadow: 0 18px 40px rgba(13, 19, 34, 0.16);
}

.hero {
  padding-top: clamp(24px, 4.5vw, 68px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 4vw, 46px);
  align-items: flex-start;
}

.hero-copy h1 {
  max-width: 12ch;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-copy .lead {
  max-width: 58ch;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.metric-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.metric {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 23, 37, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.metric strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.metric span {
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-stage {
  position: relative;
  min-height: clamp(360px, 52vw, 560px);
  border-radius: var(--radius-xl);
  padding: clamp(14px, 2.2vw, 22px);
  border: 1px solid rgba(18, 23, 37, 0.1);
  background: linear-gradient(145deg, #ffffff, #edf1f8);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186, 233, 0, 0.52), rgba(186, 233, 0, 0));
  top: -140px;
  right: -90px;
  pointer-events: none;
}

.hero-media {
  height: 100%;
  border-radius: calc(var(--radius-xl) - 10px);
  overflow: hidden;
  position: relative;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.float-card {
  position: absolute;
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(14, 20, 33, 0.84);
  color: #f6f8ff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: 0 18px 30px rgba(10, 14, 24, 0.32);
}

.float-card strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.7rem;
}

.float-card p {
  font-size: 0.79rem;
  color: rgba(234, 238, 248, 0.86);
}

.float-card--a {
  left: 16px;
  bottom: 20px;
}

.float-card--b {
  right: 16px;
  top: 22px;
}

.partner-strip {
  background: #fff;
  border: 1px solid rgba(18, 23, 37, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(20px, 2.4vw, 30px);
  display: grid;
  gap: 18px;
}

.partner-strip > p {
  color: var(--muted);
  font-size: 0.9rem;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-logos span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(18, 23, 37, 0.15);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(18, 23, 37, 0.02);
}

.service-card {
  height: 100%;
  display: grid;
  gap: 14px;
}

.service-card .service-index {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(186, 233, 0, 0.5);
  background: rgba(186, 233, 0, 0.12);
  display: grid;
  place-content: center;
  font-weight: 700;
  font-size: 0.78rem;
}

.service-card p {
  color: #c2cadf;
  font-size: 0.93rem;
}

.service-card ul {
  display: grid;
  gap: 8px;
}

.service-card li {
  font-size: 0.84rem;
  color: #d5dbeb;
  padding-left: 16px;
  position: relative;
}

.service-card li::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  left: 0;
  top: 9px;
}

.stats-band {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(154deg, #090c14 0%, #121725 100%);
  color: #edf0f9;
  box-shadow: var(--shadow-strong);
  padding: clamp(30px, 4vw, 48px);
  overflow: hidden;
  z-index: 1;
}

/* Floating background orbs in stats band */
.stats-band::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186, 233, 0, 0.14) 0%, rgba(186, 233, 0, 0) 70%);
  top: -120px;
  left: -80px;
  pointer-events: none;
  z-index: -1;
  filter: blur(40px);
}

.stats-band::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 161, 255, 0.15) 0%, rgba(112, 161, 255, 0) 70%);
  bottom: -140px;
  right: -90px;
  pointer-events: none;
  z-index: -1;
  filter: blur(45px);
}

.stat {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 24px;
  min-height: 160px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform var(--normal), border-color var(--normal), background-color var(--normal), box-shadow var(--normal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.stat:hover {
  transform: translateY(-6px);
  border-color: rgba(186, 233, 0, 0.45);
  background-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 36px rgba(186, 233, 0, 0.08);
}

.stat strong {
  display: block;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 30%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block;
  letter-spacing: -0.02em;
}

.stat p {
  font-size: 0.88rem;
  color: #aeb9d4;
  line-height: 1.45;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-card {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 280px;
  background: #d7dbe4;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card .content {
  position: absolute;
  inset: auto 12px 12px 12px;
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(170deg, rgba(12, 17, 31, 0.9), rgba(12, 17, 31, 0.62));
  color: #f2f5fb;
}

.portfolio-card .content h3 {
  font-size: 1.04rem;
  margin-bottom: 5px;
}

.portfolio-card .content p {
  font-size: 0.8rem;
  color: #d4dced;
}

.portfolio-card:hover img {
  transform: scale(1.06);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-step {
  background: #ffffff;
  border: 1px solid rgba(18, 23, 37, 0.1);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.process-step .step-id {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7982a0;
  margin-bottom: 10px;
  font-weight: 700;
}

.process-step p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.testimonial {
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(186, 233, 0, 0.36);
  background: linear-gradient(155deg, rgba(186, 233, 0, 0.18), rgba(186, 233, 0, 0.02));
}

.testimonial blockquote {
  font-size: 1.05rem;
  color: #1f2a3f;
  margin-bottom: 18px;
}

.testimonial footer {
  font-size: 0.82rem;
  color: #4f5b76;
  font-weight: 600;
}

.cta-panel {
  display: grid;
  gap: 16px;
  align-items: center;
  grid-template-columns: 1fr auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 23, 37, 0.1);
  padding: clamp(24px, 3.6vw, 40px);
  background: linear-gradient(145deg, #111725, #0d111b);
  color: #f0f4ff;
  box-shadow: var(--shadow-strong);
}

.cta-panel h2 {
  max-width: 18ch;
}

.cta-panel .eyebrow {
  color: #aeb7cf;
}

.page-hero {
  margin-top: clamp(22px, 4vw, 36px);
}

.page-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(20px, 3.5vw, 38px);
  align-items: center;
  background: linear-gradient(145deg, #0a0e17, #131a2a);
  color: #f1f5ff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px);
  box-shadow: var(--shadow-strong);
}

.page-hero__grid::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186, 233, 0, 0.42), rgba(186, 233, 0, 0));
  right: -90px;
  top: -110px;
  pointer-events: none;
}

.page-hero h1 {
  max-width: 12ch;
}

.page-hero__media {
  position: relative;
  border-radius: calc(var(--radius-xl) - 12px);
  overflow: hidden;
  min-height: 300px;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__chip {
  position: absolute;
  inset: auto auto 14px 14px;
  background: rgba(9, 12, 20, 0.84);
  color: #f4f7ff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.75rem;
  font-weight: 600;
}

.story-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(20px, 3vw, 34px);
  align-items: start;
}

.story-stack {
  display: grid;
  gap: 12px;
}

.story-stack p {
  color: var(--muted);
}

.stat-stack {
  display: grid;
  gap: 12px;
}

.stat-chip {
  background: #fff;
  border: 1px solid rgba(18, 23, 37, 0.09);
  border-radius: var(--radius-sm);
  padding: 14px;
}

.stat-chip strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.9rem;
}

.stat-chip span {
  font-size: 0.83rem;
  color: var(--muted);
}

.tape {
  background: #080b13;
  color: #e6ecfc;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tape__track {
  display: inline-flex;
  gap: 28px;
  padding: 14px 0;
  animation: tape-move 28s linear infinite;
}

.tape__track span::before {
  content: "*";
  color: var(--lime);
  margin-right: 10px;
}

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

.milestone {
  height: 100%;
}

.milestone strong {
  display: block;
  font-size: 2rem;
  font-family: "Outfit", sans-serif;
  margin-bottom: 8px;
}

.milestone p {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 24px);
}

.service-stack .service-box {
  background: #fff;
  border: 1px solid rgba(18, 23, 37, 0.1);
  border-radius: var(--radius-md);
  padding: 14px;
  display: grid;
  gap: 14px;
}

.service-stack .service-box img {
  width: 100%;
  aspect-ratio: 4 / 2.6;
  border-radius: 14px;
  object-fit: cover;
}

.service-stack .service-box h3 {
  font-size: 1.2rem;
}

.service-stack .service-box p {
  color: var(--muted);
  font-size: 0.92rem;
}

.service-stack .service-box ul {
  display: grid;
  gap: 7px;
}

.service-stack .service-box li {
  font-size: 0.84rem;
  color: #3e4b6a;
  padding-left: 14px;
  position: relative;
}

.service-stack .service-box li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  position: absolute;
  left: 0;
  top: 9px;
}

.model-card {
  display: grid;
  gap: 10px;
}

.model-card strong {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6c7797;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid rgba(18, 23, 37, 0.13);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 16px 18px;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(18, 23, 37, 0.2);
  display: grid;
  place-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 8px;
}

.gallery-filters::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  border-radius: 999px;
  border: 1px solid rgba(18, 23, 37, 0.08);
  background: rgba(255, 255, 255, 0.74);
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--fast);
  color: var(--ink-soft);
}

.filter-btn:hover {
  background: #edf0f5;
  border-color: rgba(18, 23, 37, 0.15);
}

.filter-btn.is-active {
  border-color: var(--lime);
  background: var(--lime);
  color: #11161f;
  box-shadow: 0 4px 12px rgba(186, 233, 0, 0.22);
}

.gallery-grid {
  display: grid;
  gap: 28px 20px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-item {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  box-shadow: none;
  scroll-margin-top: 120px;
}

.gallery-item__media {
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-soft);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform var(--normal);
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item__info {
  padding-top: 12px;
  padding-inline: 4px;
}

.gallery-item__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 4px;
}

.gallery-item__desc {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.4;
}

.blog-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 23, 37, 0.1);
  box-shadow: var(--shadow-soft);
  padding: clamp(16px, 2.6vw, 26px);
}

.blog-feature img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 4 / 2.8;
  object-fit: cover;
}

.blog-tag {
  display: inline-flex;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(186, 233, 0, 0.24);
  color: #20310d;
  font-weight: 700;
}

.blog-feature__content {
  display: grid;
  gap: 14px;
}

.blog-feature__content p {
  color: var(--muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.4vw, 24px);
}

.blog-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(18, 23, 37, 0.1);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  height: 100%;
  display: grid;
}

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

.blog-card__content {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.blog-card__content p {
  color: var(--muted);
  font-size: 0.9rem;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.75rem;
  color: #7180a3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 700;
}

.blog-card__link::after {
  content: "->";
  transition: transform var(--fast);
}

.blog-card:hover .blog-card__link::after {
  transform: translateX(3px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-list {
  display: grid;
  gap: 8px;
}

.contact-list li {
  color: #455272;
}

.contact-list strong {
  color: var(--ink);
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-form {
  display: grid;
  gap: 10px;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(18, 23, 37, 0.16);
  background: rgba(255, 255, 255, 0.96);
  padding: 12px 14px;
  transition: border-color var(--fast), box-shadow var(--fast), background-color var(--fast);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: rgba(186, 233, 0, 0.9);
  box-shadow: 0 0 0 4px rgba(186, 233, 0, 0.22);
  background: #fff;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input {
  min-width: min(380px, 100%);
  flex: 1;
}

.form-note {
  min-height: 20px;
  font-size: 0.82rem;
  color: #4f5f81;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.availability-card {
  border-radius: 16px;
  border: 1px solid rgba(18, 23, 37, 0.1);
  background: #fff;
  padding: 16px;
}

.availability-card strong {
  display: block;
  font-family: "Outfit", sans-serif;
  margin-bottom: 6px;
}

.availability-card p {
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  margin-top: 0;
  background: radial-gradient(circle at 100% 0%, rgba(186, 233, 0, 0.15), transparent 33%),
    linear-gradient(170deg, #060910 0%, #0c1120 100%);
  color: #e6ebf8;
  padding: clamp(46px, 6.5vw, 78px) 0 28px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  right: -80px;
  bottom: -120px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding-bottom: clamp(20px, 3vw, 34px);
  margin-bottom: clamp(24px, 3.3vw, 36px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-top h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.footer-top p {
  color: #b3bdd8;
}

.footer-badge {
  width: 94px;
  height: 94px;
  color: #111621;
  font-weight: 700;
  font-size: 0.78rem;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1.25;
  position: relative;
  z-index: 1;
}

.footer-badge a {
  color: #111621;
  text-decoration: none;
}

.footer-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--lime);
  clip-path: polygon(50% 0%, 60% 10%, 72% 4%, 77% 16%, 89% 13%, 89% 25%, 100% 30%, 94% 41%, 100% 50%, 94% 59%, 100% 70%, 89% 75%, 89% 87%, 77% 84%, 72% 96%, 60% 90%, 50% 100%, 40% 90%, 28% 96%, 23% 84%, 11% 87%, 11% 75%, 0% 70%, 6% 59%, 0% 50%, 6% 41%, 0% 30%, 11% 25%, 11% 13%, 23% 16%, 28% 4%, 40% 10%);
  z-index: -1;
  animation: badge-spin 22s linear infinite;
}

@keyframes badge-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr 0.9fr 1fr;
  gap: clamp(16px, 2.8vw, 34px);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
}

.footer-grid h4 {
  margin-bottom: 10px;
  font-size: 1.03rem;
}

.footer-grid ul {
  display: grid;
  gap: 8px;
}

.footer-grid li,
.footer-grid a,
.footer-grid p {
  color: #c1cae1;
  font-size: 0.86rem;
}

.footer-grid a:hover {
  color: #f5f8ff;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: clamp(24px, 3vw, 34px);
  padding-top: 14px;
  font-size: 0.8rem;
  color: #9ca7c4;
  text-align: center;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 18, 0.82);
  display: grid;
  place-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--normal);
  z-index: 300;
  padding: 20px;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__inner {
  position: relative;
  max-width: min(1080px, 92vw);
}

.lightbox__img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox__close {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 1.2rem;
  display: grid;
  place-content: center;
  cursor: pointer;
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(30px) scale(0.99);
}

body.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

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

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

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

@media (max-width: 980px) {
  .site-header {
    padding-top: 10px;
  }

  .brand__text small {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .nav {
    position: absolute;
    top: calc(100% + 9px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    border: 1px solid rgba(18, 23, 37, 0.14);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 30px rgba(11, 16, 27, 0.2);
    padding: 10px;
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--fast), opacity var(--fast);
  }

  .nav a {
    text-align: left;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-grid,
  .page-hero__grid,
  .story-layout,
  .blog-feature,
  .contact-grid,
  .cta-panel,
  .footer-top,
  .grid-3,
  .grid-2,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: 100%;
  }

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

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

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

@media (max-width: 720px) {
  :root {
    --container: min(1240px, 94vw);
  }

  .section {
    padding-block: clamp(60px, 11vw, 90px);
  }

  .nav-shell {
    border-radius: 18px;
  }

  .hero-stage {
    min-height: 300px;
    border-radius: 24px;
  }

  .float-card {
    position: static;
    margin-top: 10px;
  }

  .portfolio-grid,
  .gallery-grid,
  .service-stack,
  .blog-grid,
  .grid-4,
  .process-flow {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-grid ul {
    justify-content: center;
    align-items: center;
  }

  .social-links a {
    justify-content: center;
  }

  .metric-grid,
  .input-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: 0;
  }

  .footer-top {
    text-align: center;
    justify-content: center;
  }

  .footer-badge {
    width: 78px;
    height: 78px;
    font-size: 0.68rem;
    justify-self: center;
    margin: 16px auto 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
  }

  body.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Client Logos Marquee */
.client-logos-section {
  background: #ffffff !important;
  border-block: 1px solid rgba(18, 23, 37, 0.05);
  padding-block: clamp(40px, 6vw, 80px) !important;
}

.clients-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  display: flex;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.clients-track {
  display: flex;
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  width: max-content;
  animation: clients-marquee-right 28s linear infinite;
}

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

.client-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(65px, 9vw, 95px);
  width: clamp(140px, 18vw, 220px);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: transform var(--fast);
}

.client-logo-item:hover {
  transform: scale(1.08);
}

.client-logo-item img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

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

/* Specialties List Section */
.specialties-section {
  max-width: 1000px;
  margin-inline: auto;
}

.specialties-header {
  margin-bottom: clamp(32px, 5vw, 60px);
}

.specialties-header h2 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-top: 8px;
}

.specialties-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.specialty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(18px, 3vw, 28px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: padding-left var(--normal), background-color var(--normal);
}

.specialty-row:hover {
  padding-left: 16px;
  background-color: rgba(255, 255, 255, 0.02);
}

.specialty-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.specialty-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--lime);
}

.specialty-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  font-weight: 700;
  color: #fff;
  transition: color var(--fast);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.specialty-row:hover .specialty-title {
  color: var(--lime);
}

.specialty-action {
  display: flex;
  align-items: center;
  margin-left: 16px;
  flex-shrink: 0;
}

.specialty-arrow {
  width: clamp(38px, 4.5vw, 48px);
  height: clamp(38px, 4.5vw, 48px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-content: center;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  transition: transform var(--normal), border-color var(--normal), background-color var(--normal), color var(--normal);
}

.specialty-row:hover .specialty-arrow {
  transform: translate(3px, -3px) scale(1.05);
  border-color: var(--lime);
  background-color: var(--lime);
  color: #11161f;
}

.specialties-actions {
  margin-top: clamp(32px, 5vw, 52px);
  display: flex;
  justify-content: center;
}

/* Light theme override for Specialties List */
.specialties-section--light h2 {
  color: var(--ink) !important;
}

.specialties-list--light {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.specialties-list--light .specialty-row {
  border-bottom: none;
}

.specialties-list--light .specialty-row:hover {
  background-color: rgba(18, 23, 37, 0.02);
}

.specialties-list--light .specialty-title {
  color: var(--ink);
}

.specialties-list--light .specialty-row:hover .specialty-title {
  color: var(--lime);
}

.specialties-list--light .specialty-eyebrow {
  color: var(--muted);
}

.specialties-list--light .specialty-arrow {
  border-color: var(--line);
  color: var(--ink);
}

.specialties-list--light .specialty-row:hover .specialty-arrow {
  border-color: var(--lime);
  background-color: var(--lime);
  color: #11161f;
}

/* Social Links in Footer */
.social-links {
  display: grid;
  gap: 10px !important;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c1cae1;
  transition: color var(--fast), transform var(--fast);
}

.social-links a:hover {
  color: var(--lime);
  transform: translateX(4px);
}

.social-links a[href*="linkedin"]:hover {
  color: #0077b5;
}

.social-links a[href*="instagram"]:hover {
  color: #e1306c;
}

.social-links a[href*="wa.me"]:hover,
.social-links a[href*="whatsapp"]:hover {
  color: #25d366;
}

.social-icon {
  flex-shrink: 0;
  color: inherit;
}

/* Spotlight Grid & Cards Section */
.studio-spotlight-section {
  position: relative;
  overflow: hidden;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: 30px;
}

.spotlight-card {
  position: relative;
  background: #FAF9F6;
  border: 1px solid rgba(18, 23, 37, 0.08);
  border-radius: var(--radius-md);
  min-height: 480px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--normal), border-color var(--normal), box-shadow var(--normal);
}

.spotlight-card:hover {
  transform: translateY(-8px);
  border-color: rgba(186, 233, 0, 0.5);
  box-shadow: var(--shadow-strong);
}

/* Background Orbs inside Spotlight Cards */
.spotlight-card__bg-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.65;
  pointer-events: none;
  z-index: 1;
  transition: transform var(--normal), opacity var(--normal);
}

/* Specific Card Blob Colors and Positions */
.spotlight-card--audio .spotlight-card__bg-orb {
  background: radial-gradient(circle, #ff6b6b 0%, rgba(255,107,107,0) 70%);
  top: 15%;
  left: 10%;
}
.spotlight-card--branding .spotlight-card__bg-orb {
  background: radial-gradient(circle, #70a1ff 0%, rgba(112,161,255,0) 70%),
              radial-gradient(circle, #ffeaa7 0%, rgba(255,234,167,0) 70%);
  top: 20%;
  left: 15%;
}
.spotlight-card--streaming .spotlight-card__bg-orb {
  background: radial-gradient(circle, #a8ff78 0%, rgba(168,255,120,0) 70%),
              radial-gradient(circle, #ea00d9 0%, rgba(234,0,217,0) 70%);
  top: 25%;
  right: 10%;
}
.spotlight-card--strategy .spotlight-card__bg-orb {
  background: radial-gradient(circle, #78e08f 0%, rgba(120,224,143,0) 70%),
              radial-gradient(circle, #ffb8b8 0%, rgba(255,184,184,0) 70%);
  bottom: 12%;
  left: 12%;
}

.spotlight-card:hover .spotlight-card__bg-orb {
  transform: scale(1.22) translate(8px, 8px);
  opacity: 0.8;
}

/* Card Content Overlay */
.spotlight-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-grow: 1;
}

.spotlight-card__top {
  margin-bottom: auto;
}

.spotlight-card__tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  border: 1px solid rgba(18, 23, 37, 0.1);
  padding: 6px 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.spotlight-card__body {
  margin-block: 28px;
}

.spotlight-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.spotlight-grid--capabilities .spotlight-card__title {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
}

.spotlight-card__italic {
  font-family: "Outfit", sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink-soft);
  letter-spacing: -0.02em;
}

.spotlight-card__footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: auto;
  border-top: 1px solid rgba(18, 23, 37, 0.08);
  padding-top: 22px;
}

.spotlight-card__desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.spotlight-card__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.spotlight-card__icon {
  width: 26px;
  height: 26px;
  color: var(--ink);
  transition: transform var(--fast), color var(--fast);
}

.spotlight-card__swipe {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  position: relative;
  padding-right: 16px;
  transition: color var(--fast);
}

.spotlight-card__swipe::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform var(--fast);
}

.spotlight-card:hover .spotlight-card__swipe {
  color: #9eb814;
}

.spotlight-card:hover .spotlight-card__swipe::after {
  transform: translateY(-50%) translateX(3px);
}

.spotlight-card:hover .spotlight-card__icon {
  transform: scale(1.1);
  color: #9eb814;
}

@media (max-width: 600px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
  .spotlight-card {
    min-height: 440px;
  }
}

/* Specific Card Blob Colors and Positions for Work Page Case Studies */
.spotlight-card--vibe .spotlight-card__bg-orb {
  background: radial-gradient(circle, #ff9f43 0%, rgba(255,159,67,0) 70%),
              radial-gradient(circle, #ff6b6b 0%, rgba(255,107,107,0) 70%);
  top: 15%;
  left: 10%;
}
.spotlight-card--snap .spotlight-card__bg-orb {
  background: radial-gradient(circle, #a55eea 0%, rgba(165,94,234,0) 70%),
              radial-gradient(circle, #45aaf2 0%, rgba(69,170,242,0) 70%);
  top: 25%;
  right: 15%;
}
.spotlight-card--feed .spotlight-card__bg-orb {
  background: radial-gradient(circle, #00d2d3 0%, rgba(0,210,211,0) 70%),
              radial-gradient(circle, #54a0ff 0%, rgba(84,160,255,0) 70%);
  top: 20%;
  left: 20%;
}
.spotlight-card--push .spotlight-card__bg-orb {
  background: radial-gradient(circle, #1dd1a1 0%, rgba(29,209,161,0) 70%),
              radial-gradient(circle, #feca57 0%, rgba(254,202,87,0) 70%);
  bottom: 10%;
  left: 15%;
}

/* Work Page Category Sections Redesign */
.category-section {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  background: var(--night);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(40px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
}

.category-section[hidden] {
  display: none !important;
}

.category-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.category-info h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  color: #fff;
  font-family: "Outfit", sans-serif;
  margin-bottom: 8px;
}

.category-info .lead {
  color: #c5cde3;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.collage-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(10px, 1.5vw, 16px);
  width: 100%;
}

.collage-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-soft);
  height: clamp(140px, 20vw, 220px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform var(--normal);
}

.collage-item video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  transition: transform var(--normal);
}

.collage-item:hover img {
  transform: scale(1.06);
}

/* Asymmetric Collage Grid Column Spans */
.collage-item:nth-child(1) { grid-column: span 5; }
.collage-item:nth-child(2) { grid-column: span 7; }
.collage-item:nth-child(3) { grid-column: span 7; }
.collage-item:nth-child(4) { grid-column: span 5; }
.collage-item:nth-child(5) { grid-column: span 5; }
.collage-item:nth-child(6) { grid-column: span 7; }

/* Responsive YouTube Video Player */
.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  background: #000;
}

.video-wrapper--portrait {
  aspect-ratio: 9 / 16;
  max-width: 300px;
  margin: 0 auto;
}

/* Custom YouTube Thumbnail Link Layout */
.video-thumbnail-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
}

.video-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--normal), opacity var(--fast);
}

.video-thumbnail-link:hover .video-thumb-img {
  transform: scale(1.04);
}

.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--lime);
  color: #11161f;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(186, 233, 0, 0.4);
  transition: all var(--fast);
  padding: 0;
  z-index: 2;
}

.play-btn-icon {
  width: 28px;
  height: 28px;
  margin-left: 3px; /* visual center alignment adjustment */
  transition: transform var(--fast);
}

.video-thumbnail-link:hover .play-btn-overlay {
  background: #ffffff;
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
  color: #11161f;
}

.video-thumbnail-link:hover .play-btn-icon {
  transform: scale(1.05);
}

/* Video Switcher Layout */
.video-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  justify-content: flex-start;
}

.video-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #aeb9d4;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  cursor: pointer;
  transition: all var(--fast);
}

.video-switch-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.video-switch-btn.is-active {
  background: var(--lime);
  color: #11161f;
  border-color: var(--lime);
  box-shadow: 0 4px 12px rgba(186, 233, 0, 0.25);
}

/* Responsive Styles for Category Sections */
@media (max-width: 1024px) {
  .category-section {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: clamp(20px, 3.5vw, 36px);
  }
}

@media (max-width: 640px) {
  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .collage-item {
    grid-column: span 1 !important;
    height: 140px;
  }
}

/* Podcast Booking Section */
.podcast-booking-section {
  position: relative;
  overflow: hidden;
  padding-bottom: 0 !important; /* Leave room for marquee at bottom */
}

.podcast-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}

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

.podcast-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eyebrow--light {
  color: #aeb9d4;
}

.podcast-title {
  font-size: clamp(2rem, 4.3vw, 3.4rem);
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.text-lime {
  color: var(--lime);
  background: linear-gradient(135deg, #fff 20%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.podcast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.podcast-stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 12px;
}

@media (max-width: 480px) {
  .podcast-stats-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.podcast-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.podcast-stat-item strong {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: #fff;
  line-height: 1.1;
  font-weight: 700;
}

.podcast-stat-item span {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8c9bb3;
}

/* Right Side Showcase with Thumbs */
.podcast-showcase {
  display: flex;
  gap: 16px;
  align-items: stretch;
  height: clamp(340px, 38vw, 460px);
}

@media (max-width: 580px) {
  .podcast-showcase {
    flex-direction: column;
    height: auto;
  }
}

.podcast-main-frame {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
  background: #090c14;
}

.podcast-main-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 300ms ease;
}

.podcast-thumbs-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: clamp(70px, 10vw, 92px);
  justify-content: space-between;
}

@media (max-width: 580px) {
  .podcast-thumbs-stack {
    flex-direction: row;
    width: 100%;
    height: 70px;
  }
}

.podcast-thumb {
  flex: 1;
  border-radius: var(--radius-xs);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: #000;
  transition: border-color var(--fast), transform var(--fast);
}

.podcast-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity var(--fast);
}

.podcast-thumb:hover img,
.podcast-thumb.is-active img {
  opacity: 1;
}

.podcast-thumb.is-active {
  border-color: var(--lime);
  transform: scale(1.02);
}

/* Bottom Yellow Marquee Tape */
.podcast-marquee {
  background: var(--lime);
  color: #111621;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.podcast-marquee__track {
  display: inline-flex;
  gap: 32px;
  padding: 12px 0;
  animation: podcast-marquee-move 24s linear infinite;
}

.podcast-marquee__track span {
  display: inline-flex;
  align-items: center;
}

.podcast-marquee__track span::after {
  content: "✦";
  margin-left: 32px;
  font-size: 0.7rem;
  opacity: 0.75;
}

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

/* Podcast Page Custom Styles */
.podcast-hero {
  position: relative;
  min-height: clamp(550px, 75vh, 800px);
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(13, 19, 34, 0.95) 0%, rgba(13, 19, 34, 0.75) 55%, rgba(13, 19, 34, 0.25) 100%), 
              url('./podcast/1%20(1).png') no-repeat center center;
  background-size: cover;
  color: #ffffff;
  padding-block: clamp(60px, 8vw, 100px);
  margin-top: 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .podcast-hero {
    background: linear-gradient(180deg, rgba(13, 19, 34, 0.9) 0%, rgba(13, 19, 34, 0.85) 60%, rgba(13, 19, 34, 0.7) 100%), 
                url('./podcast/1%20(1).png') no-repeat center center;
    background-size: cover;
    background-position: 70% center;
  }
}

.podcast-hero-content {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 24px);
  text-align: left;
}

.podcast-hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.78rem, 2vw, 0.92rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #bae900;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.podcast-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-transform: none;
}

.podcast-hero-title .highlight-yellow {
  color: #bae900;
}

.podcast-hero-lead {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(0.96rem, 2.2vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.podcast-hero-lead strong {
  color: #ffffff;
  font-weight: 700;
}

.podcast-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(12px, 2vw, 20px);
  margin-top: 8px;
}

.btn--whatsapp-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #bae900;
  color: #0d1322 !important;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-xs);
  transition: background-color var(--normal), transform var(--normal), box-shadow var(--normal);
}

.btn--whatsapp-gold:hover {
  background-color: #d6fa22;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(186, 233, 0, 0.35);
}

.btn--outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: var(--radius-xs);
  transition: border-color var(--normal), background-color var(--normal), transform var(--normal);
}

.btn--outline-white:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.podcast-hero-stats-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 24px);
  margin-top: 24px;
  background: rgba(18, 23, 37, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: clamp(16px, 2.5vw, 28px);
  max-width: 580px;
}

.podcast-stat-panel-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.podcast-stat-panel-item strong {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: #bae900;
  line-height: 1.1;
}

.podcast-stat-panel-item span {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.68rem, 1.5vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 600px) {
  .podcast-hero-stats-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 20px;
  }
}

.podcast-setup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 980px) {
  .podcast-setup-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.podcast-setup-card {
  background: #ffffff;
  border: 1px solid rgba(18, 23, 37, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform var(--normal), border-color var(--normal), box-shadow var(--normal);
}

.podcast-setup-card:hover {
  transform: translateY(-6px);
  border-color: rgba(186, 233, 0, 0.7);
  box-shadow: 0 18px 42px rgba(18, 23, 37, 0.12);
}

.podcast-setup-media {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid rgba(18, 23, 37, 0.06);
}

.podcast-setup-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--normal);
}

.podcast-setup-card:hover .podcast-setup-media img {
  transform: scale(1.04);
}

.podcast-setup-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.podcast-setup-info h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
}

.podcast-setup-info ul {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.podcast-setup-info li {
  font-size: 0.86rem;
  color: #4f586f;
  padding-left: 16px;
  position: relative;
  list-style: none;
}

.podcast-setup-info li::before {
  content: "✦";
  color: #9eb814;
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

/* Timeline Process Grid */
.podcast-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

@media (max-width: 900px) {
  .podcast-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .podcast-process-grid {
    grid-template-columns: 1fr;
  }
}

.podcast-process-step {
  background: #ffffff;
  border: 1px solid rgba(18, 23, 37, 0.08);
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  transition: transform var(--normal);
}

.podcast-process-step:hover {
  transform: translateY(-4px);
}

.podcast-process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #9eb814, rgba(186, 233, 0, 0.2));
}

.podcast-process-step .step-number {
  font-family: "Outfit", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9eb814;
  margin-bottom: 12px;
  display: block;
}

.podcast-process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--ink);
}

.podcast-process-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Who We Serve & Gallery Styles */
#who-we-serve, #inside-the-studio {
  background-color: #0b0f1a;
  color: #ffffff;
}

.eyebrow--gold {
  color: #bae900 !important;
}

.title--white {
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
}

.who-we-serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}

.serve-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--normal), border-color var(--normal), box-shadow var(--normal);
}

.serve-card:hover {
  transform: translateY(-6px);
  border-color: #bae900;
  box-shadow: 0 18px 48px rgba(186, 233, 0, 0.15);
}

.serve-card img {
  width: 100%;
  height: auto;
  display: block;
}

.studio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: clamp(10px, 1.8vw, 18px);
  margin-top: 36px;
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform var(--normal), border-color var(--normal), box-shadow var(--normal);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: #bae900;
  box-shadow: 0 12px 30px rgba(186, 233, 0, 0.12);
}

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

/* Explicit Grid positioning for visual mosaic matches */
.gallery-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 4; grid-row: 1; }

.gallery-item--tall { 
  grid-column: 1; 
  grid-row: 2 / span 2; 
}

.gallery-item:nth-child(6) { grid-column: 2; grid-row: 2; }
.gallery-item:nth-child(7) { grid-column: 3; grid-row: 2; }
.gallery-item:nth-child(8) { grid-column: 4; grid-row: 2; }

.gallery-item:nth-child(9)  { grid-column: 2; grid-row: 3; }
.gallery-item:nth-child(10) { grid-column: 3; grid-row: 3; }
.gallery-item:nth-child(11) { grid-column: 4; grid-row: 3; }

@media (max-width: 900px) {
  .who-we-serve-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-inline: auto;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .studio-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .gallery-item--tall {
    grid-row: span 2 !important;
  }
}

@media (max-width: 480px) {
  .studio-gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item--tall {
    grid-row: auto !important;
  }
}
