/* ═══════════════════════════════════════════════════
   DAVID SCHWANAU KÜNSTLERMANAGEMENT
   Berlin · Kiez · Community — V3 Light
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Outfit:wght@200;300;400;500;600;700&family=Bebas+Neue&display=swap');

/* ── Custom Properties ── */
:root {
  --white: #ffffff;
  --bg: #fafaf8;
  --bg-soft: #f4f1fb;
  --bg-card: #eeeaf8;
  --border: #ddd8ee;
  --border-dark: #c8c0e0;
  --ink: #14101e;
  --ink-soft: #2a2240;
  --text: #3a3050;
  --text-muted: #6a6080;
  --text-dim: #9a90b0;
  --pink: #c83880;
  --pink-light: #e060a8;
  --pink-dark: #962060;
  --purple: #7248b8;
  --purple-light: #9068d0;
  --rainbow: linear-gradient(to right, #ff22bb, #ff1f1f, #ff8800, #ffdd00, #22bb33, #2244ff, #8811ee, #ff22bb);
  --rainbow-text: linear-gradient(to right, #ff22bb, #ff1f1f, #ff8800, #ffdd00, #22bb33, #2244ff, #8811ee, #ff22bb);
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Outfit', 'Helvetica Neue', sans-serif;
  --impact: 'Bebas Neue', 'Arial Black', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: thin;
  scrollbar-color: var(--pink-dark) var(--bg-soft);
}

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--pink-dark); border-radius: 3px; }

/* ── Grain ── */
.grain {
  position: fixed;
  inset: -200%;
  width: 400%;
  height: 400%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.018;
  pointer-events: none;
  z-index: 1000;
  animation: grain 8s steps(10) infinite;
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -2%); }
  20% { transform: translate(2%, 2%); }
  30% { transform: translate(-1%, 1%); }
  40% { transform: translate(1%, -1%); }
  50% { transform: translate(-2%, 1%); }
  60% { transform: translate(2%, -2%); }
  70% { transform: translate(-1%, -1%); }
  80% { transform: translate(1%, 2%); }
  90% { transform: translate(-2%, 2%); }
}

@keyframes rainbow-shift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ── Cursor Glow ── */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(114, 72, 184, 0.06) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* ── Preloader ── */

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4vw;
  transition: all 0.4s var(--ease-out-expo);
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.nav.scrolled::before { opacity: 1; }
.nav.scrolled { padding: 0.9rem 4vw; }

.nav.scrolled::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

/* ── Logo (modern) ── */
.nav-logo {
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  z-index: 1;
}

.nav-logo-mark {
  font-family: var(--impact);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1;
  background: var(--rainbow-text);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-shift 12s linear infinite;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.06em;
}

.nav-logo-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 1px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  position: relative;
  z-index: 1;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--pink); }

.nav-cta {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.nav-cta:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1;
}

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

.nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 9rem 4vw 5rem;
  background: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 75% 30%, rgba(114, 72, 184, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(200, 56, 128, 0.05) 0%, transparent 55%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(0) scale(0); opacity: 0; }
  10% { opacity: 0.15; transform: scale(1); }
  90% { opacity: 0.05; }
  100% { transform: translateY(-80px) scale(0); opacity: 0; }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
  border: 1px solid var(--border-dark);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  background: var(--bg-soft);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-title {
  font-family: var(--impact);
  font-size: clamp(3.5rem, 9.5vw, 9.5rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 2rem;
}

/* Fix: padding ensures letters aren't clipped by overflow:hidden */
.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.38em;
  margin-bottom: -0.38em;
}

.hero-title .line-inner {
  display: block;
  animation: slideUp 1s var(--ease-out-expo) forwards;
  animation-delay: calc(var(--i, 0) * 0.12s + 0.3s);
  transform: translateY(110%);
  opacity: 0;
}

.hero-title .line:nth-child(1) .line-inner { --i: 0; }
.hero-title .line:nth-child(2) .line-inner { --i: 1; }
.hero-title .line:nth-child(3) .line-inner { --i: 2; }

@keyframes slideUp {
  to { transform: translateY(0); opacity: 1; }
}

.hero-title em {
  font-style: italic;
  background: var(--rainbow-text);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-shift 12s linear infinite;
}

.hero-rainbow {
  background: var(--rainbow-text);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-shift 12s linear infinite;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s var(--ease-out-quart);
  border-radius: 2px;
  background: var(--white);
  cursor: pointer;
  font-family: var(--sans);
}

.btn:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-ghost {
  border-color: var(--border-dark);
  color: var(--text-muted);
}

.btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--white);
}

.btn-filled {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.btn-filled:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
}

.btn-full { width: 100%; justify-content: center; }
.btn-arrow { transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ── Hero Bottom ── */
.hero-bottom {
  position: absolute;
  bottom: 2rem;
  left: 4vw;
  right: 4vw;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 2;
}

.hero-bottom-item { display: flex; flex-direction: column; gap: 0.3rem; }
.hero-bottom-right { align-items: flex-end; }

.hero-bottom-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-bottom-value {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Marquee ── */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  background: var(--bg-soft);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

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

.marquee-item {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  padding: 0 2.5rem;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.marquee-item .dot {
  color: var(--pink);
  font-style: normal;
  font-size: 0.55rem;
  margin-left: 2.5rem;
}

/* ── Section Helpers ── */
.section-padding { padding: clamp(4rem, 8vw, 8rem) 4vw; }
.section-header { max-width: 700px; }

.section-overline {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-overline::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--pink);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--pink);
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ── About ── */
.about {
  background: var(--white);
}

.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text { display: flex; flex-direction: column; gap: 1.5rem; }
.about-text p { color: var(--text-muted); line-height: 1.85; }

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-soft);
  transition: border-color 0.3s;
}

.about-value:hover { border-color: var(--pink); }

.about-value-icon {
  color: var(--pink);
  font-size: 0.55rem;
  margin-top: 0.6rem;
  flex-shrink: 0;
}

.about-value strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

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

.about-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-accent-box {
  border: 1px solid var(--border);
  padding: 3rem;
  background: var(--bg-soft);
  position: relative;
  border-radius: 4px;
}

.about-accent-box::before {
  content: '';
  position: absolute;
  top: -1px; left: 2rem; right: 2rem;
  height: 2px;
  background: var(--rainbow);
  border-radius: 2px;
}

.about-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.about-quote-name {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
}

/* ── Statement ── */
.statement-section {
  padding: clamp(5rem, 10vw, 10rem) 4vw;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--bg-soft);
}

.statement-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(200, 56, 128, 0.04) 0%, transparent 70%);
}

.statement-content { position: relative; z-index: 1; }

.statement-text {
  font-family: var(--impact);
  font-size: clamp(2.5rem, 7vw, 6.5rem);
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.statement-text em {
  font-style: italic;
  font-family: var(--serif);
  background: var(--rainbow-text);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-shift 12s linear infinite;
}

/* ── Artists ── */
.artists {
  background: var(--white);
}

.artists-showcase {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.artist-featured {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.artist-photo-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.artist-photo-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rainbow);
  z-index: 2;
}

.artist-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: saturate(0.95);
  transition: filter 0.5s, transform 0.6s var(--ease-out-expo);
}

.artist-photo-wrap:hover .artist-photo {
  filter: saturate(1.1);
  transform: scale(1.02);
}

.artist-photo-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3rem 1.5rem 1.2rem;
  background: linear-gradient(to top, rgba(20,16,30,0.85) 0%, transparent 100%);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: #fff;
  letter-spacing: 0.05em;
}

.artist-featured-badge {
  display: inline-block;
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  border: 1px solid var(--pink);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
  background: rgba(200, 56, 128, 0.06);
}

.artist-featured-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.artist-featured-title em { font-style: italic; color: var(--pink); }

.artist-featured-role {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.artist-featured-desc {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.artist-featured-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.artist-tag {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-dark);
  padding: 0.28rem 0.7rem;
  border-radius: 2px;
  transition: all 0.3s;
  background: var(--bg-soft);
}

.artist-tag:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.artist-featured-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.artist-availability {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.availability-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3a9a50;
  animation: pulse 2s ease-in-out infinite;
}

/* ── Artist Reversed Layout ── */
.artist-featured--reverse {
  grid-template-columns: 1.1fr 1fr;
}

/* ── Artist Photo Placeholder ── */
.artist-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.artist-photo-placeholder span {
  font-family: var(--impact);
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.1em;
  background: var(--rainbow-text);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: rainbow-shift 12s linear infinite;
}

/* ── Open Roster ── */
.roster-open {
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
}

.roster-open::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--rainbow);
}

.roster-open-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 3rem;
}

.roster-open-icon {
  font-size: 2.5rem;
  color: var(--pink);
  font-weight: 200;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
}

.roster-open-inner h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.roster-open-inner p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.roster-open-inner .btn { margin-left: auto; flex-shrink: 0; }

/* ── About ── */
.about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

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

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid var(--border);
  z-index: 0;
}

.about-image-wrapper::after {
  content: 'David Schwanau';
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-family: var(--serif);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--pink);
  background: var(--surface);
  padding: 0.4rem 0.9rem;
  letter-spacing: 0.1em;
  z-index: 3;
}

.about-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) contrast(1.05);
  transition: transform 0.8s var(--ease-out-expo), filter 0.8s;
}

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

.about-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.85;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.about-stat-number {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--pink);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrapper::before { display: none; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

/* ── Community ── */
.community {
  background: var(--bg-soft);
}

.community-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.community-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.community-card:hover {
  border-color: var(--purple-light);
  box-shadow: 0 4px 24px rgba(114, 72, 184, 0.08);
}

.community-card-bar {
  width: 32px;
  height: 3px;
  background: var(--rainbow);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.community-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.community-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.community-rainbow {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.rainbow-bar {
  width: 100px;
  height: 3px;
  background: var(--rainbow);
  border-radius: 2px;
}

.rainbow-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.7rem);
  font-style: italic;
  color: var(--text-muted);
  max-width: 600px;
}

/* ── Services ── */
.services {
  background: var(--white);
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 3rem;
  transition: background 0.3s;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--rainbow);
  transition: height 0.4s var(--ease-out-expo);
}

.service-card:hover { background: var(--bg-soft); }
.service-card:hover::before { height: 100%; }

.service-number {
  font-family: var(--impact);
  font-size: 4rem;
  line-height: 1;
  color: var(--border-dark);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.service-card:hover .service-number { color: var(--pink); }

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.8rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ── Contact ── */
.contact {
  background: var(--bg-soft);
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info p { color: var(--text-muted); line-height: 1.85; }
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  flex-shrink: 0;
  background: var(--white);
}

.contact-detail-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.2rem;
}

.contact-detail-value a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.contact-detail-value a:hover { color: var(--pink); }

.contact-hours {
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 4px;
  background: var(--white);
}

.contact-hours-title {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.8rem;
}

.contact-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-hours-row:last-child { border-bottom: none; }

/* ── Contact Form ── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem;
  height: 2px;
  background: var(--rainbow);
  border-radius: 2px;
}

.form-header { margin-bottom: 2rem; }

.form-header h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.form-header p { font-size: 0.82rem; color: var(--text-muted); }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group:last-child { margin-bottom: 1.5rem; }

.form-group label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }

.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Footer ── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 4vw 3rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.footer-logo-big {
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.footer-logo-sub {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-rainbow-bar {
  width: 60px;
  height: 2px;
  background: var(--rainbow);
  border-radius: 2px;
}

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

.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col h5 {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-light);
  margin-bottom: 0.5rem;
}

.footer-col a {
  text-decoration: none;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}

.footer-col a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 4vw;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
}

.footer-location {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
}

.made-by {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.3s;
}

.made-by:hover { color: rgba(255,255,255,0.7); }

.made-by svg {
  fill: rgba(255,255,255,0.3);
  transition: fill 0.3s;
}

.made-by:hover svg { fill: rgba(255,255,255,0.7); }

/* ── Mobile ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .artist-featured,
  .artist-featured--reverse { grid-template-columns: 1fr; gap: 3rem; }
  .artist-featured--reverse .artist-photo-wrap { order: -1; }
  .artist-photo { aspect-ratio: 4/3; }
  .artist-photo-placeholder { aspect-ratio: 4/3; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .roster-open-inner { flex-wrap: wrap; }
  .roster-open-inner .btn { margin-left: 0; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; color: var(--ink); }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 7rem 5vw 8rem; }
  .hero-bottom { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-columns { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .roster-open-inner { flex-direction: column; padding: 2rem; }
  .roster-open-inner .btn { width: 100%; justify-content: center; }
}
