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

:root {
  --bg: #0d0d0d;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --accent: #c8922a;
  --accent-light: #e8b54a;
  --text: #f0ede6;
  --text-muted: #8a8680;
  --text-dim: #4a4744;
  --border: #252525;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-dot { color: var(--accent); }
.nav-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* HERO */
.hero {
  padding: 80px 48px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-overline {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* Waveform */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.waveform {
  width: 100%;
  height: 120px;
  background: repeating-linear-gradient(
    to right,
    var(--accent) 0px, var(--accent) 3px,
    transparent 3px, transparent 8px
  );
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 100'%3E%3Cpath d='M0,50 Q10,20 20,50 T40,50 T60,50 T80,50 T100,50 T120,50 T140,50 T160,50 T180,50 T200,50 T220,50 T240,50 T260,50 T280,50 T300,50 T320,50 T340,50 T360,50 T380,50 T400,50' fill='none' stroke='black' stroke-width='24'/%3E%3C/svg%3E");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  opacity: 0.6;
  position: relative;
}
.waveform::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to right,
    var(--accent) 0px, var(--accent) 2px,
    transparent 2px, transparent 12px
  );
  opacity: 0.4;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.stat { padding: 0 40px 0 0; }
.stat:first-child { padding-left: 0; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin: 0 40px 0 0;
}

/* Section Label */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}

/* PHILOSOPHY */
.philosophy {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
}
.philosophy-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  padding-top: 6px;
}
.philosophy-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 32px;
}
.philosophy-body p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.philosophy-body p:last-child { margin-bottom: 0; }

/* SERVICES */
.services {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.services-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.services-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card {
  background: var(--surface);
  padding: 48px 40px;
}
.service-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ROSTER */
.roster {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.roster-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.roster-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 600px;
}
.roster-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 48px;
}
.roster-cta {
  border-left: 2px solid var(--accent);
  padding-left: 24px;
}
.roster-cta-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  max-width: 700px;
}
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.closing-vision {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--accent);
  line-height: 1.6;
}

/* FOOTER */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--text);
}
.footer-dot { color: var(--accent); }
.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 4px;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 60px 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .stat { padding: 0 20px 0 0; }
  .stat-divider { margin: 0 20px 0 0; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 24px; }
  .services { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .roster { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  .stat-num { font-size: 1.4rem; }
  .stat-divider { height: 30px; }
}