/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html.theme-transitioning *,
html.theme-transitioning *::before,
html.theme-transitioning *::after {
  transition: background-color 0.35s ease, border-color 0.35s ease !important;
}

:root {
  --bg: #121212;
  --bg2: #1a1a1a;
  --pink: #e52585;
  --white: #f5f5f0;
  --grey: #ccd3e0;
  --border: #2a2a2a;
  --radius: 12px;
}

[data-theme="light"] {
  --bg: #f5f5f0;
  --bg2: #eaeae5;
  --white: #121212;
  --grey: #5a6070;
  --border: #d4d4ce;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
  overflow-x: clip;
}

body {
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1875rem;
  line-height: 1.6;
  overflow-x: clip;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: -530px;
  right: -300px;
  width: 1212px;
  height: 1212px;
  background: url('images/pink-blur.svg') no-repeat center / contain;
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

[data-theme="light"] body::before {
  opacity: 0.2;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

/* ===========================
   NAV
=========================== */
.nav-outer {
  position: sticky;
  top: 0;
  background: rgba(18, 18, 18, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
}

.nav-logo svg { display: block; }
.nav-logo svg .st1 { transition: fill 0.2s; }

@keyframes letter-wave {
  50% { fill: #e52585; }
}

.nav-logo:hover svg path.st1 {
  animation: letter-wave 0.45s ease;
  animation-delay: var(--ld, 0ms);
}
.nav-logo:hover svg path:nth-child(2)  { --ld: 0ms; }
.nav-logo:hover svg path:nth-child(3)  { --ld: 35ms; }
.nav-logo:hover svg path:nth-child(4)  { --ld: 70ms; }
.nav-logo:hover svg path:nth-child(5)  { --ld: 105ms; }
.nav-logo:hover svg path:nth-child(6)  { --ld: 140ms; }
.nav-logo:hover svg path:nth-child(7)  { --ld: 175ms; }
.nav-logo:hover svg path:nth-child(8)  { --ld: 210ms; }
.nav-logo:hover svg path:nth-child(9)  { --ld: 245ms; }
.nav-logo:hover svg path:nth-child(10) { --ld: 280ms; }
.nav-logo:hover svg path:nth-child(11) { --ld: 315ms; }
.nav-logo:hover svg path:nth-child(12) { --ld: 350ms; }
.nav-logo:hover svg path:nth-child(13) { --ld: 385ms; }
.nav-logo:hover svg path:nth-child(14) { --ld: 420ms; }
.nav-logo:hover svg path:nth-child(15) { --ld: 455ms; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  margin-left: auto;
}

.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1875rem;
  color: var(--grey);
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.2rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

/* Theme toggle */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 2.5rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  line-height: 0;
  flex-shrink: 0;
}

.theme-toggle:hover { color: var(--pink); }

.icon-sun { display: block; }
.icon-moon { display: none; }

[data-theme="light"] .icon-sun { display: none; }
[data-theme="light"] .icon-moon { display: block; }

[data-theme="light"] .nav-outer {
  background: rgba(245, 245, 240, 0.88);
}

[data-theme="light"] .nav-logo svg .st1 { fill: #121212; }

[data-theme="light"] .clients { background: #121212; }
[data-theme="light"] .clients .section-title { color: #ccd3e0; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
  gap: 1.25rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 1.1rem;
  color: var(--grey);
  transition: color 0.2s;
}

.nav-mobile a:hover,
.nav-mobile a.active { color: var(--pink); }

/* ===========================
   HERO
=========================== */
.hero {
  padding: clamp(2rem, 12vw, 1rem) clamp(1rem, 5vw, 4rem);
  max-width: 1440px;
  margin: 0 auto;
}


.eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 22ch;
  margin-bottom: 3rem;
}

.highlight { color: var(--pink); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--pink);
  padding-bottom: 0.25rem;
  transition: color 0.2s, gap 0.2s;
}

.btn::after { content: '→'; }
.btn:hover { color: var(--pink); gap: 1.25rem; }

/* ===========================
   WORK SECTION
=========================== */
.work {
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.section-title {
  font-family: 'Figtree', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 3rem;
}

/* ===========================
   CARDS
=========================== */
.card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.card:hover { border-color: var(--pink); box-shadow: 0 0 24px 0 rgba(229, 37, 133, 0.28); }

.card--reverse .card-image { order: 2; }
.card--reverse .card-content { order: 1; }

.card-image { overflow: hidden; }

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.card:hover .card-image img { transform: scale(1.03); filter: grayscale(0%); }

.card-content {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-title {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.card-desc {
  font-size: 1.1875rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 32ch;
}

.card-metric {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.card-metric-label {
  font-size: 1.1875rem;
  color: var(--grey);
}

/* ===========================
   404 & THANK YOU
=========================== */
.error-page {
  padding: 1.5rem 0 4rem;
}

.error-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.error-arrow {
  margin: 0 auto;
}

.error-caption {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.error-image {
  width: 100%;
  max-width: 720px;
  border-radius: var(--radius);
}

body.no-blob::before { display: none; }

.thankyou-wrap {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.thankyou-wrap p {
  font-size: 1.1rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ===========================
   FOOTER
=========================== */
.footer-outer {
  border-top: 1px solid var(--border);
}

.footer {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem clamp(1.5rem, 5vw, 4rem);
}

.footer-left {
  font-size: 1.1875rem;
  color: #a6a6a6;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-right a {
  font-size: 1.1875rem;
  color: var(--grey);
  transition: color 0.2s;
}

.footer-right a:hover { color: var(--pink); }

.social-icon {
  display: flex;
  align-items: center;
  color: var(--grey);
  transition: color 0.2s;
}

.social-icon:hover { color: var(--pink); }

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-resume {
  font-size: 1.1875rem;
  color: var(--grey);
  transition: color 0.2s;
}

.footer-resume:hover { color: var(--pink); }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .theme-toggle { margin-left: auto; }
}

@media (max-width: 768px) {
  body::before { display: none; }
  .nav-logo svg { height: 22px; width: auto; }
  .card { grid-template-columns: 1fr; }
  .card-image { height: 240px; }
  .footer { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-right { flex-wrap: wrap; justify-content: center; }
}

/* ===========================
   CASE STUDY
=========================== */
.cs-hero {
  padding: clamp(2rem, 12vw, 1rem) clamp(1.5rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
  max-width: 1440px;
  margin: 0 auto;
}

.cs-hero h1 {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 22ch;
  margin-top: 1.5rem;
}

/* Full width image block */
.cs-image-block {
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  max-width: 1440px;
  margin: 0 auto 4rem;
}

.cs-figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.cs-figure img {
  width: 100%;
  height: auto;
  display: block;
}

figcaption {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  padding: 0.75rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

/* Sections */
.cs-section {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

.cs-heading {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  padding-top: 34px;
  position: relative;
}

.cs-heading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #e52585;
  border-radius: 2px;
}

.cs-body {
  color: var(--grey);
  max-width: 70ch;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Two col layout */
.cs-two-col {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.cs-contributions p {
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 65ch;
}

.cs-sidebar-block {
  margin-bottom: 2.5rem;
}

.cs-section .cs-heading,
.cs-section .cs-body {
  transform: translateY(32px);
  opacity: 0;
  transition: transform 0.65s ease-out, opacity 0.65s ease-out;
}

.cs-section .cs-heading.in-view,
.cs-section .cs-body.in-view {
  transform: translateY(0);
  opacity: 1;
}

.cs-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cs-services li {
  font-size: 0.9rem;
  color: var(--grey);
  padding-left: 1.25rem;
  position: relative;
}

.cs-services li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
}

.cs-role {
  color: var(--grey);
  font-size: 0.95rem;
}

/* Stats */
.cs-impact-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cs-impact-intro {
  color: var(--grey);
  max-width: 60ch;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.cs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
}

.cs-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cs-stat-value {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--pink);
  line-height: 1;
  letter-spacing: -0.02em;
}

.cs-stat-label {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.5;
}

/* ===========================
   CASE STUDY CTA
=========================== */
.cs-cta {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  overflow: hidden;
  margin-top: clamp(1rem, 3vw, 2rem);
}

.cs-cta-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, black 30%, transparent 100%);
  opacity: 0.5;
}

/* Swap out .cs-cta-bg background-image with your own asset:
   background-image: url('images/your-graphic.webp');
   background-size: cover;
   background-position: center; */

.cs-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cs-cta-text {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
}

.cs-cta-link {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--pink);
  line-height: 1.1;
  transition: opacity 0.2s;
  border-bottom: 2px solid transparent;
}

.cs-cta-link:hover {
  opacity: 0.75;
  border-bottom-color: var(--pink);
}

/* Prev / Next */
.cs-pagination {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--border);
  margin-top: clamp(3rem, 6vw, 5rem);
}

.cs-pagination .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cs-page-link {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: color 0.2s;
}

.cs-page-link:hover { color: var(--pink); }

.cs-page-dir {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.cs-page-next { text-align: right; }

.cs-page-title {
  font-family: 'Figtree', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 960px) {
  .cs-two-col {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .cs-stats {
    grid-template-columns: 1fr;
  }

  .cs-pagination .container {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
  }

  .cs-body,
  .cs-contributions p {
    font-size: 1rem;
  }
}

/* ===========================
   ABOUT PAGE
=========================== */
.about-hero {
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(2rem, 5vw, 4rem);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-hero-text h1 {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 1.5rem 0 2rem;
}

.about-intro {
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 55ch;
}

.about-hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-section {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-top: 1px solid var(--border);
}

.about-content {
  max-width: 70ch;
}

.about-content p {
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Photo Grid */
.about-grid-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--border);
}

.about-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-photo:hover img {
  transform: scale(1.04);
}

@media (max-width: 960px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-image {
    max-height: 500px;
  }

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

@media (max-width: 600px) {
  .about-photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
}

/* About page life grid — bento layout */
.about-grid-section--bento .about-photo-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 220px 300px;
}

.about-grid-section--bento .about-photo {
  aspect-ratio: unset;
}

.about-grid-section--bento .about-photo:nth-child(1) { grid-column: 1;     grid-row: 1; }
.about-grid-section--bento .about-photo:nth-child(2) { grid-column: 2 / 4; grid-row: 1; }
.about-grid-section--bento .about-photo:nth-child(3) { grid-column: 1 / 3; grid-row: 2; }
.about-grid-section--bento .about-photo:nth-child(4) { grid-column: 3;     grid-row: 2; }
.about-grid-section--bento .about-photo:nth-child(5) { grid-column: 1;     grid-row: 3; }
.about-grid-section--bento .about-photo:nth-child(6) { grid-column: 2 / 4; grid-row: 3; }

@media (max-width: 768px) {
  .about-grid-section--bento .about-photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .about-grid-section--bento .about-photo {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 4/3;
  }
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-hero {
  padding: 2rem 0 clamp(2rem, 4vw, 3rem);
}

.contact-hero h1 {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 20ch;
}

.contact-body {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info p {
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 50ch;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1875rem;
  color: var(--white);
  border-bottom: 1px solid var(--pink);
  padding-bottom: 0.25rem;
  transition: color 0.2s, gap 0.2s;
  align-self: flex-start;
}

.contact-links a::after { content: '→'; }
.contact-links a:hover { color: var(--pink); gap: 1.25rem; }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

.form-group input,
.form-group textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #444;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--pink);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pink);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.875rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.form-submit:hover { opacity: 0.85; }

@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   CLIENT SCROLLER
=========================== */
.clients {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.clients-track-outer {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients-track {
  display: flex;
  width: max-content;
  animation: scroll 48s linear infinite;
}

.clients-track--reverse {
  animation-name: scroll-reverse;
}

.clients-list {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  white-space: nowrap;
}

.clients-list img {
  width: 182px;
  height: auto;
}

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

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

@media (max-width: 768px) {
  .clients-track { animation-duration: 28s; }
  .clients-list img { width: 120px; }
}
/* Disciplines */
.about-disciplines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 3rem;
  margin-top: 0.5rem;
}

.discipline {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(1.8rem, 3vw, 1rem);
  line-height: 1.1;
  font-weight: 200;
  letter-spacing: -0.02em;
  color: var(--pink);
}

@media (max-width: 768px) {
  .about-disciplines {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .discipline {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }
}

.cs-section .about-photo-grid {
  margin-top: 1.5rem;
}

/* About Blurb */
.about-blurb {
  padding: clamp(60px, 8vw, 120px) 0;
  border-top: 1px solid var(--border);
}

.about-blurb-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-blurb-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
}

.about-blurb-lead {
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.4;
}

.about-blurb-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.about-blurb-list li {
  color: var(--grey);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.about-blurb-list li::before {
  content: '→';
  color: var(--pink);
  margin-right: 12px;
}

.about-blurb-link {
  color: var(--pink);
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.2s ease;
}

.about-blurb-link:hover {
  opacity: 0.7;
}

/* Mobile */
@media (max-width: 960px) {
  .about-blurb-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-blurb-image img {
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }
}

/* ===========================
   ASSORTED PAGE
=========================== */
.assorted-list {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.assorted-item {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--border);
}

.assorted-item:last-child {
  border-bottom: 1px solid var(--border);
}

.assorted-item--reverse {
  grid-template-columns: 2fr 3fr;
}

.assorted-item--reverse .assorted-image { order: 2; }
.assorted-item--reverse .assorted-content { order: 1; }

.assorted-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg2);
}

.assorted-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.assorted-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.assorted-eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
}

.assorted-title {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}

.assorted-desc {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.65;
}

.assorted-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.assorted-bullets li {
  color: var(--grey);
  font-size: 0.9375rem;
  padding-left: 1.1rem;
  position: relative;
}

.assorted-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-size: 0.75rem;
  top: 0.2em;
}

.assorted-role {
  font-size: 0.875rem;
  color: var(--grey);
  opacity: 0.6;
}

.assorted-role span {
  color: var(--white);
  opacity: 1;
}

.assorted-odds-header {
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  border-top: 1px solid var(--border);
}

.assorted-odds-title {
  font-family: 'Figtree', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .assorted-item {
    grid-template-columns: 1fr;
  }

  .assorted-item--reverse .assorted-image { order: 0; }
  .assorted-item--reverse .assorted-content { order: 1; }
}
