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

:root {
  --black:       #060606;
  --dark:        #0F0F0F;
  --dark-card:   #1A1A1A;
  --gold:        #C9A84C;
  --gold-light:  #E2C87C;
  --white:       #FFFFFF;
  --off-white:   #F7F5EE;
  --gray:        #888888;
  --light-gray:  #E0E0E0;
  --amber:       #F59E0B;
  --amber-light: #FBBF24;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Poppins', system-ui, sans-serif;

  --ease:   0.3s ease;
  --radius: 12px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.12);

  --section-pad: 8rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem);  font-weight: 900; }
h2 { font-size: clamp(2rem,   4vw, 3.2rem); font-weight: 700; }
h3 { font-size: 1.4rem;  font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

em { font-style: italic; color: var(--amber); }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label.light { color: var(--gold-light); }

.section-intro {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 580px;
  margin: 1rem 0 3.5rem;
  line-height: 1.8;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--ease);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: #000000;
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn.full-width {
  width: 100%;
  text-align: center;
  display: block;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav-phone-bar {
  background: rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  text-align: center;
  padding: 0.35rem 1rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

.nav-phone-bar a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.06em;
}

.nav-phone-bar a:hover {
  color: var(--gold-light);
}

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.6rem 0;
  transition: all var(--ease);
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 1rem 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--ease);
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--amber) !important;
  color: #000000 !important;
  padding: 0.6rem 1.3rem;
  border-radius: 4px;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  transition: background var(--ease), transform var(--ease) !important;
}
.nav-cta:hover {
  background: var(--amber-light) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 950;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu.open { display: flex; }

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.8rem;
  cursor: pointer;
  transition: color var(--ease);
}
.mobile-close:hover { color: var(--white); }

.mobile-menu ul { text-align: center; }

.mobile-menu li { margin: 1.25rem 0; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--ease);
}
.mobile-menu a:hover { color: rgba(255, 255, 255, 0.7); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 9rem 2rem 5rem;
}

.hero-waveform {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 140px;
  pointer-events: none;
  opacity: 0;
  animation: waveFadeIn 2s ease 0.8s forwards;
}

.waveform-group {
  transform-origin: 50% 50%;
  animation: waveBreath 8s ease-in-out infinite;
  filter: drop-shadow(0 0 7px rgba(201, 168, 76, 0.65)) drop-shadow(0 0 18px rgba(201, 168, 76, 0.25));
}

@keyframes waveFadeIn {
  to { opacity: 1; }
}

@keyframes waveBreath {
  0%, 100% { transform: scaleY(1); }
  50%       { transform: scaleY(1.06); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-waveform { animation: none; opacity: 0.5; }
  .waveform-group { animation: none; filter: drop-shadow(0 0 7px rgba(201, 168, 76, 0.6)); }
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-press-quote {
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  text-align: center;
}
.hero-press-quote span {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

#hero h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 12px 40px rgba(0, 0, 0, 0.22);
}


.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin-bottom: 2.75rem;
  line-height: 1.85;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-press {
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  font-style: italic;
  line-height: 1.3;
}
.hero-press span {
  color: var(--gold);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1rem;
  display: block;
  margin-top: 0.35rem;
}

/* ============================================================
   PRESS
   ============================================================ */
#press {
  padding: 4rem 0;
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.press-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.press-as-seen {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.press-outlets {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.press-outlet {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.press-divider {
  color: rgba(201,168,76,0.3);
  font-size: 1rem;
}

.press-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.press-quote-card {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.press-quote-card blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  margin: 0;
}

.press-quote-card cite {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

@media (max-width: 900px) {
  .press-quotes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .press-quotes {
    grid-template-columns: 1fr;
  }
  .press-bar {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrap { position: relative; }

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--amber);
  color: #000000;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.45);
  white-space: nowrap;
}

.about-text h2 { margin-bottom: 1.5rem; }

.about-text p {
  color: #444;
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--light-gray);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.5rem;
}

/* Approach section */
.approach-section {
  background: var(--dark);
  padding: 4rem 0 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.approach-section .section-label {
  display: block;
  margin-bottom: 2rem;
}

.approach-body {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.approach-body p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin: 0;
}

.approach-closer {
  color: var(--gold);
  font-style: italic;
}

/* ============================================================
   CLIENTS
   ============================================================ */
#clients {
  padding: var(--section-pad) 0;
  background: var(--dark);
}

#clients h2             { color: var(--white); }
#clients h3             { color: var(--white); }
#clients .section-intro { color: rgba(255, 255, 255, 0.5); }

/* Photo grid — responsive, auto-fill */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.client-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  will-change: transform;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}
.client-card:hover {
  border-color: rgba(201, 168, 76, 0.45);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.40),
    0 0 0 1px rgba(201, 168, 76, 0.30),
    0 0 28px rgba(201, 168, 76, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}
.client-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.06) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}
.client-card:hover::after { opacity: 1; }

/* Fixed-height image slot — every card identical */
.client-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #1e1e1e;
  flex-shrink: 0;
}
.client-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.client-card:hover .client-img-wrap img {
  transform: scale(1.05);
}

/* Initials fallback — same fixed height */
.client-img-initials {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  background: var(--c, #2a2a4e);
  flex-shrink: 0;
}

/* Name block — always the same padding, centered */
.client-info {
  padding: 1rem 1.25rem 1.25rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.client-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.client-role {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

/* Grid section break */
.client-grid-break {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1rem;
}

.client-grid-break::before,
.client-grid-break::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201, 168, 76, 0.25);
}

.client-grid-break::before { display: none; }

/* Logos grid — Labels, Management & Agencies */
.logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 0.5rem 0 3rem;
}

.logo-item {
  background: #fff;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  max-width: 200px;
  height: 70px;
  flex: 1 1 140px;
}

.logo-item img {
  max-width: 100%;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.logo-text-badge {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
}

/* Notable clients */
.notable-clients {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 3.5rem;
}

.notable-clients h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

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

.notable-cat h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.85rem;
}

.notable-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.notable-tag {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  line-height: 1.4;
  transition: color var(--ease), border-color var(--ease);
}

.notable-tag--highlight {
  color: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.18);
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  border: 1.5px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 2.5rem 1.75rem;
  position: relative;
  transition: border-color var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
  will-change: transform;
  cursor: pointer;
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 24px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.06),
    0 20px 52px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(201, 168, 76, 0.25),
    0 0 20px rgba(201, 168, 76, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(201, 168, 76, 0.08) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }

.service-card.featured {
  background: var(--black);
  border-color: var(--black);
}
.service-card.featured h3  { color: var(--white); }
.service-card.featured > p { color: rgba(255, 255, 255, 0.6); }
.service-card.featured ul li { color: rgba(255, 255, 255, 0.55); border-color: rgba(255,255,255,0.08); }

.featured-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #000000;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 0 0 6px 6px;
}

.service-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}
.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 { margin-bottom: 0.75rem; }

.service-card > p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  flex-grow: 0;
}

.service-card ul {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-card ul li {
  font-size: 0.86rem;
  color: #666;
  padding: 0.4rem 0 0.4rem 1.1rem;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(0, 0, 0, 0.28);
  font-size: 0.8rem;
}
.service-card.featured ul li::before {
  color: rgba(255, 255, 255, 0.22);
}

/* ============================================================
   ARTIST DEVELOPMENT
   ============================================================ */
#artist-development {
  padding: var(--section-pad) 0;
  background: var(--black);
}

.artdev-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.artdev-text .section-label {
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.artdev-text h2 {
  margin-bottom: 1.5rem;
}

.artdev-text p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.artdev-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

.artdev-text .btn {
  margin-top: 0.75rem;
}

.artdev-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.artdev-pillar {
  background: var(--dark-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  transition: border-color 0.3s;
}

.artdev-pillar:hover {
  border-color: rgba(201,168,76,0.4);
}

.artdev-pillar-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.artdev-pillar p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .artdev-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

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

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: var(--section-pad) 0;
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: start;
}

#contact h2 { color: var(--white); margin-bottom: 1rem; }

.contact-intro {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.75rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.contact-icon { font-size: 1.1rem; flex-shrink: 0; }

/* Form */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2.5rem;
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.08) inset;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.25rem; }

label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

input, select, textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--ease), background var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

input::placeholder, textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

select option { background: #1a1a1a; color: var(--white); }

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

.form-success {
  display: none;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold-light);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
}
.form-success.visible { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.footer-logo a {
  color: inherit;
  text-decoration: none;
}
.footer-logo a:hover {
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1.75rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2.25rem;
  margin-bottom: 2rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--white); }

.copyright {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 6rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .notable-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { gap: 4rem; }
  .contact-grid  { gap: 4rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 4rem; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  #hero { padding: 8rem 1.5rem 4rem; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image-wrap {
    max-width: 280px;
    margin: 0 auto;
  }
  .about-badge {
    right: 0;
    bottom: -1rem;
  }
  .about-stats { gap: 2rem; }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrapper { padding: 1.75rem; }
}

@media (max-width: 480px) {
  :root { --section-pad: 3rem; }

  .clients-grid  { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .btn { display: block; text-align: center; }

  /* Press — 2 columns on small screens */
  .press-quotes { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .press-quote-card { padding: 1.25rem; }
  .press-quote-card blockquote { font-size: 0.9rem; }
  #press { padding: 2.5rem 0; }

  /* Tighten hero */
  #hero { padding: 6rem 1.25rem 3rem; }

  /* Services cards */
  .service-card { padding: 1.75rem; }

  /* Artist development */
  #artist-development { padding: var(--section-pad) 0; }
  .artdev-pillars { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .artdev-pillar { padding: 1rem; }

  /* Logos grid — smaller on mobile */
  .logos-grid { gap: 0.75rem; }
  .logo-item { min-width: 100px; height: 55px; padding: 0.5rem; }

  /* About stats */
  .about-stats { grid-template-columns: repeat(2, 1fr); }

  /* Reduce card section padding */
  .service-card ul { margin-top: 0.75rem; }
  .service-card li { font-size: 0.82rem; }

  .footer-logo {
    font-size: 1.1rem;
    letter-spacing: 0.04em;
  }
}
