/* =============================
   25PIXELS — Visual & Lighting Agency
   ============================= */

:root {
  --black: #080808;
  --white: #f0ebe1;
  --acid: #c8ff00;
  --orange: #ff4d00;
  --pink: #ff2d6e;
  --teal: #00ffe0;
  --mid: #1a1a1a;
  --grey: #2e2e2e;
  --font-display: "Bebas Neue", cursive;
  --font-body: "Syne", sans-serif;
  --font-mono: "Space Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

/* ======= NOISE OVERLAY ======= */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ======= CURSOR — Minimal morphing dot ======= */
/*
  Single dot. No ring. No blend modes causing white-box flash.
  Morphs to a wider pill on hover over links/cards.
  All transitions handled in CSS only.
*/
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  /* translate set by JS, no transform here to avoid jank */
  will-change: transform;
  transition:
    width 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    height 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s ease;
}

/* Expand on interactive elements */
body:has(a:hover) .cursor,
body:has(button:hover) .cursor,
body:has(.work-card:hover) .cursor,
body:has(.service-item:hover) .cursor,
body:has(.artist-chip:hover) .cursor {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
}

/* ======= NAV ======= */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  transition:
    background 0.4s,
    border-color 0.4s;
}
#nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(200, 255, 0, 0.1);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--white);
  cursor: none;
}
.nav-logo .accent {
  color: var(--acid);
}

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 235, 225, 0.55);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}
.nav-links a:hover {
  color: var(--acid);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acid);
  border: 1px solid var(--acid);
  padding: 8px 18px;
  border-radius: 2px;
  text-decoration: none;
  cursor: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.nav-cta:hover {
  background: var(--acid);
  color: var(--black);
}

/* ======= HERO ======= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 140px 48px 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 255, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 255, 0, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.38;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--acid);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(6rem, 16vw, 18rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--white);
}
.hero-title .line {
  display: block;
  overflow: hidden;
  transform: translateY(120%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title .line-1 {
  animation-delay: 0.4s;
}
.hero-title .line-2 {
  animation-delay: 0.55s;
}
.hero-title .line-3 {
  animation-delay: 0.7s;
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}
.hero-title em {
  font-style: italic;
  color: var(--acid);
  -webkit-text-stroke: 0;
}

.hero-sub {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 360px;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.hero-sub p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(240, 235, 225, 0.7);
  margin-bottom: 32px;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--acid);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: none;
  transition:
    background 0.2s,
    transform 0.2s;
}
.btn-primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.hero-contact-tag {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mono-sm {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  color: rgba(240, 235, 225, 0.45);
}
.mono-sm.accent {
  color: var(--acid);
}

/* ======= HERO MARQUEE ======= */
.hero-marquee-wrap {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 60px;
  border-top: 1px solid rgba(240, 235, 225, 0.07);
}
/* The outer div clips; the track holds 2 copies and animates */
.marquee-outer {
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}
.marquee-content {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(240, 235, 225, 0.38);
  white-space: nowrap;
  padding: 16px 0;
}

/* ======= SECTION LABEL ======= */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 48px;
  padding-top: 8px;
  border-top: 1px solid rgba(200, 255, 0, 0.2);
  display: inline-block;
}

/* ======= WORK SECTION ======= */
#work {
  padding: 100px 48px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.work-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-card:hover {
  transform: scale(1.015);
}

.work-card--large {
  grid-column: 1 / 8;
}
.work-card--sm:nth-of-type(2) {
  grid-column: 8 / 13;
}
.work-card--sm:nth-of-type(3) {
  grid-column: 1 / 6;
}
.work-card--wide {
  grid-column: 6 / 13;
}

.work-card-media {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.work-card--large .work-card-media {
  height: 460px;
}

.work-placeholder {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-card:hover .work-placeholder {
  transform: scale(1.06);
}

.nuc {
  /* background: linear-gradient(
    135deg,
    #0d0d0d 0%,
    #1a0533 40%,
    #5200a3 70%,
    #c8ff00 100%
  ); */
  background-image: url("https://i.ytimg.com/vi/ergoCcGOX3o/maxresdefault.jpg");
  background-size: cover;
  background-position: top;
  position: relative;
}
.div {
  background-image: url("https://drytickets.com.au/assets/upload/celebrities/709-divine.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
.rit {
  background-image: url("https://images.indianexpress.com/2024/01/Ritviz_Zomaland_PR.jpg?w=1200");
  background-size: cover;
  background-position: top;
  position: relative;
}
.bad {
  background-image: url("https://images.travelandleisureasia.com/wp-content/uploads/sites/2/2019/09/MH7-Weekender-feature.jpg");
  background-size: cover;
  background-position: top;
  position: relative;
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.82) 0%, transparent 60%);
  transition: opacity 0.3s;
}
.work-card:hover .work-card-overlay {
  opacity: 0.5;
}

.work-card-tags {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.work-card-tags span {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  background: rgba(8, 8, 8, 0.72);
  border: 1px solid rgba(200, 255, 0, 0.28);
  color: var(--acid);
  padding: 4px 8px;
  border-radius: 2px;
}

.work-card-info {
  padding: 18px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.work-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
}
.work-card-info p {
  font-size: 0.82rem;
  color: rgba(240, 235, 225, 0.48);
  margin-top: 2px;
  flex: 1;
}
.work-card-info .year {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(240, 235, 225, 0.28);
  align-self: flex-end;
}

.work-all-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acid);
  cursor: none;
  width: fit-content;
  margin-left: auto;
}
.arrow-anim {
  transition: transform 0.3s;
}
.work-all-link:hover .arrow-anim {
  transform: translateX(8px);
}

/* ======= ARTISTS ======= */
#artists {
  padding: 80px 48px;
  overflow: hidden;
}

.artists-marquee-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  margin: 0 -48px;
  /* Fade edges */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 6%,
    black 94%,
    transparent 100%
  );
}

/* Each row is a viewport-width overflow-hidden container */
.artists-row {
  overflow: hidden;
  width: 100%;
}

/* The track contains 2× the chips. Animation moves it left by 50% so it loops seamlessly */
.artists-track {
  display: flex;
  gap: 12px;
  width: max-content;
  /* pausing on row hover instead of chip hover avoids jump */
}

.row-fwd .artists-track {
  animation: artistScrollFwd 28s linear infinite;
}
.row-rev .artists-track {
  animation: artistScrollRev 22s linear infinite;
}

/* Pause the whole row on row hover — no JS, no jitter */
.artists-row:hover .artists-track {
  animation-play-state: paused;
}

.artist-chip {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
  border: 1px solid rgba(240, 235, 225, 0.13);
  padding: 10px 24px;
  border-radius: 60px;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
  cursor: none;
}
.artist-chip:hover {
  border-color: var(--acid);
  color: var(--black);
  background: var(--acid);
}

/* Stats */
.artists-stat-strip {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-top: 72px;
  padding: 48px 0;
  border-top: 1px solid rgba(240, 235, 225, 0.07);
  border-bottom: 1px solid rgba(240, 235, 225, 0.07);
  flex-wrap: wrap;
}
.stat {
  text-align: left;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--acid);
  letter-spacing: -0.02em;
}
.stat-unit {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--acid);
}
.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240, 235, 225, 0.38);
  margin-top: 4px;
}
.stat-divider {
  font-size: 1.4rem;
  color: rgba(200, 255, 0, 0.28);
  flex-shrink: 0;
}

/* ======= PHILOSOPHY ======= */
#philosophy {
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
#philosophy::before {
  content: "25PX";
  position: absolute;
  font-family: var(--font-display);
  font-size: 30vw;
  color: rgba(240, 235, 225, 0.018);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.philosophy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.big-quote {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 48px;
}
.big-quote em {
  color: var(--acid);
  font-style: italic;
}

/* Glitch */
.philosophy-glitch-box {
  position: relative;
  display: inline-block;
}
.glitch-el {
  font-family: var(--font-display);
  font-size: 5rem;
  letter-spacing: 0.15em;
  color: var(--white);
  position: relative;
  animation: glitch 4s infinite;
}
.glitch-el::before,
.glitch-el::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: 5rem;
  letter-spacing: 0.15em;
}
.glitch-el::before {
  color: var(--pink);
  animation: glitchTop 4s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}
.glitch-el::after {
  color: var(--teal);
  animation: glitchBottom 4s infinite;
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}

.philosophy-right {
  padding-top: 20px;
}
.philosophy-body {
  font-size: 1rem;
  line-height: 1.78;
  color: rgba(240, 235, 225, 0.62);
  margin-bottom: 24px;
  max-width: 480px;
}
.philosophy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}
.philosophy-tags span {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border: 1px solid rgba(200, 255, 0, 0.28);
  color: var(--acid);
  border-radius: 2px;
}

/* ======= SERVICES ======= */
#services {
  padding: 100px 48px;
  border-top: 1px solid rgba(240, 235, 225, 0.05);
}
.services-list {
  display: flex;
  flex-direction: column;
}
.service-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(240, 235, 225, 0.07);
  cursor: none;
  transition: padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.service-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--acid);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-item:hover::after {
  width: 100%;
}
.service-item:hover {
  padding-left: 16px;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(240, 235, 225, 0.28);
}
.service-body h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.service-item:hover .service-body h3 {
  color: var(--acid);
}
.service-body p {
  font-size: 0.88rem;
  color: rgba(240, 235, 225, 0.42);
  max-width: 440px;
  line-height: 1.6;
}
.service-icon {
  font-size: 1.4rem;
  color: rgba(240, 235, 225, 0.13);
  transition:
    color 0.3s,
    transform 0.4s;
}
.service-item:hover .service-icon {
  color: var(--acid);
  transform: rotate(90deg) scale(1.2);
}

/* ======= BOTTOM MARQUEE ======= */
.bottom-marquee-wrap {
  background: var(--acid);
  overflow: hidden;
  padding: 20px 0;
}
.bottom-marquee-outer {
  overflow: hidden;
}
.bottom-marquee-track {
  display: flex;
  width: max-content;
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  color: var(--black);
  animation: marqueeScroll 18s linear infinite;
}

/* ======= CONTACT ======= */
#contact {
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}
#contact::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 255, 0, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-headline h2 {
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 11rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--white);
}
.contact-subline {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: rgba(240, 235, 225, 0.38);
  margin-top: 24px;
  text-transform: uppercase;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: rgba(200, 255, 0, 0.55);
}
.field-val {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  cursor: none;
}
.field-val:hover {
  color: var(--acid);
}
.contact-big-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  background: transparent;
  border: 1px solid var(--acid);
  color: var(--acid);
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 16px;
  cursor: none;
  transition:
    background 0.3s,
    color 0.3s;
}
.contact-big-btn:hover {
  background: var(--acid);
  color: var(--black);
}
.btn-arrow {
  font-size: 1.8rem;
  transition: transform 0.3s;
}
.contact-big-btn:hover .btn-arrow {
  transform: translate(4px, -4px);
}

/* ======= FOOTER ======= */
footer {
  padding: 32px 48px;
  border-top: 1px solid rgba(240, 235, 225, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}
.footer-logo .accent {
  color: var(--acid);
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: rgba(240, 235, 225, 0.22);
  margin-top: 4px;
}
.footer-right {
  display: flex;
  gap: 28px;
}
.footer-right a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(240, 235, 225, 0.38);
  text-decoration: none;
  cursor: none;
  transition: color 0.2s;
}
.footer-right a:hover {
  color: var(--acid);
}

/* ======= KEYFRAMES ======= */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

/* Single-direction marquee — track is 2× content, move by 50% */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Artist rows — fwd moves left, rev moves right, both by 50% of total width */
@keyframes artistScrollFwd {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes artistScrollRev {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes glitch {
  0%,
  90%,
  100% {
    transform: translate(0);
  }
  92% {
    transform: translate(-4px, 2px);
  }
  94% {
    transform: translate(4px, -2px);
  }
  96% {
    transform: translate(-2px, -2px);
  }
  98% {
    transform: translate(2px, 2px);
  }
}
@keyframes glitchTop {
  0%,
  88%,
  100% {
    transform: translate(0);
    opacity: 0;
  }
  90% {
    transform: translate(-6px, -2px);
    opacity: 0.9;
  }
  92% {
    transform: translate(6px, 2px);
    opacity: 0.9;
  }
  94% {
    opacity: 0;
  }
}
@keyframes glitchBottom {
  0%,
  88%,
  100% {
    transform: translate(0);
    opacity: 0;
  }
  91% {
    transform: translate(4px, 3px);
    opacity: 0.9;
  }
  93% {
    transform: translate(-4px, -3px);
    opacity: 0.9;
  }
  95% {
    opacity: 0;
  }
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .hero-sub {
    position: relative;
    top: auto;
    transform: none;
    max-width: 100%;
    margin-top: 40px;
  }
  .work-card--large {
    grid-column: 1 / -1;
  }
  .work-card--sm:nth-of-type(2) {
    grid-column: 1 / 7;
  }
  .work-card--sm:nth-of-type(3) {
    grid-column: 7 / -1;
  }
  .work-card--wide {
    grid-column: 1 / -1;
  }
  .philosophy-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  #nav {
    padding: 18px 24px;
  }
  .nav-links {
    display: none;
  }
  #hero,
  #work,
  #artists,
  #philosophy,
  #services,
  #contact {
    padding-left: 24px;
    padding-right: 24px;
  }
  footer {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .work-card--sm:nth-of-type(2),
  .work-card--sm:nth-of-type(3) {
    grid-column: 1 / -1;
  }
  .service-item {
    grid-template-columns: 60px 1fr;
  }
  .service-icon {
    display: none;
  }
  .stat-num,
  .stat-unit {
    font-size: 3rem;
  }
  .artists-stat-strip {
    gap: 24px;
  }
}
