/* David Price Music — Full Static Site */

:root {
  --black: #050505;
  --near-black: #0B0B0B;
  --section: #111111;
  --section-2: #161616;
  --gold: #C8A35A;
  --gold-light: #E4C878;
  --white: #FFFFFF;
  --gray: #BFBFBF;
  --soft-gray: #8F8F8F;
  --border: rgba(200, 163, 90, 0.34);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--near-black);
  color: var(--white);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  min-height: 88px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px clamp(22px, 4.5vw, 60px);
  background: linear-gradient(to bottom, rgba(0,0,0,0.86), rgba(0,0,0,0.56), transparent);
}

.logo { display: inline-flex; flex-direction: column; line-height: 1; min-width: 205px; }

.logo-main {
  font-family: "Cinzel", serif;
  font-size: clamp(17px, 1.55vw, 24px);
  letter-spacing: 0.02em;
  color: var(--gold);
  text-transform: uppercase;
}

.logo-sub {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--white);
  text-transform: uppercase;
}

.nav {
  justify-self: end;
  display: flex;
  gap: clamp(12px, 1.4vw, 24px);
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.nav a { color: rgba(255,255,255,0.88); }
.nav a:hover, .nav a.active { color: var(--gold-light); }

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #111;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  min-height: 760px;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/hero-david-price.png");
  background-size: cover;
  background-position: center center;
  filter: saturate(1.04) contrast(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.72) 31%, rgba(0,0,0,0.28) 60%, rgba(0,0,0,0.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.30), rgba(0,0,0,0.18) 48%, rgba(0,0,0,0.82));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(690px, 90vw);
  margin-left: clamp(28px, 6vw, 98px);
  padding-top: 70px;
}

.eyebrow, .section-eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: clamp(12px, 1.1vw, 16px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1, .page-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(58px, 6vw, 94px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--white);
  text-wrap: balance;
}

.hero-copy, .page-copy {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
}

.hero-actions, .button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 1px solid var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-1px); }
.button-primary { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #111; border-color: transparent; }
.button-secondary { background: rgba(0,0,0,0.28); color: var(--white); }

.stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(18px, 3vw, 54px);
  padding: 34px clamp(26px, 7vw, 115px);
  background: linear-gradient(180deg, #111, #0D0D0D);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.stat { display: flex; justify-content: center; align-items: center; gap: 20px; }
.stat-icon { color: var(--gold); font-size: 38px; line-height: 1; opacity: 0.95; }
.stat-number { margin: 0; font-family: "Cormorant Garamond", serif; color: var(--gold); font-size: clamp(42px, 4vw, 62px); line-height: 0.9; }
.stat-label { margin: 8px 0 0; color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 78px; background: rgba(255,255,255,0.16); }

.section {
  padding: 94px clamp(28px, 7vw, 110px);
  background: var(--section);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.section.alt { background: var(--section-2); }

.section-inner { max-width: 820px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 3.4vw, 56px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.012em;
}

h3 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 2.2vw, 38px);
  font-weight: 600;
  line-height: 1.08;
}

p, li {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.72;
}

.lead { font-size: 19px; color: rgba(255,255,255,0.82); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 70px);
  max-width: 1180px;
  margin: 48px auto 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.card {
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.26);
  padding: clamp(26px, 3vw, 42px);
}

.card.gold-card { border-color: var(--border); background: linear-gradient(180deg, rgba(200,163,90,0.10), rgba(0,0,0,0.22)); }

.card-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: 32px;
  margin-bottom: 24px;
}

.card a, .inline-link { color: var(--gold-light); font-weight: 800; letter-spacing: 0.10em; text-transform: uppercase; font-size: 12px; }

.page-hero {
  padding: 172px clamp(28px, 7vw, 110px) 82px;
  background:
    radial-gradient(circle at 80% 0%, rgba(200,163,90,0.15), transparent 36%),
    linear-gradient(180deg, #050505, #111);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.page-hero .page-copy { max-width: 760px; }

.list-clean {
  padding-left: 18px;
  margin: 24px 0 0;
}

.pricing-line {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.price {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold);
  font-size: 48px;
  line-height: 1;
}

.contact-box {
  max-width: 760px;
  margin: 40px auto 0;
  padding: 36px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.28);
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

input, textarea, select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.18);
  background: #0a0a0a;
  color: white;
  padding: 16px;
  font: inherit;
}

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

footer {
  padding: 30px;
  text-align: center;
  background: #050505;
  color: var(--soft-gray);
  font-size: 13px;
}

@media (max-width: 1060px) {
  .nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; background: rgba(0,0,0,0.78); backdrop-filter: blur(12px); }
}

@media (max-width: 820px) {
  .hero { min-height: 760px; align-items: flex-end; }
  .hero-bg { background-position: 70% center; }
  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0,0,0,0.86), rgba(0,0,0,0.58), rgba(0,0,0,0.12)),
      linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.54) 46%, rgba(0,0,0,0.95));
  }
  .hero-content { margin: 0; width: 100%; padding: 0 24px 62px; }
  h1 { font-size: clamp(50px, 14vw, 72px); }
  .button { width: 100%; }
  .stats { grid-template-columns: 1fr; gap: 26px; padding: 40px 24px; }
  .stat-divider { width: 100%; height: 1px; }
  .stat { justify-content: flex-start; max-width: 360px; margin: 0 auto; width: 100%; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .page-hero { padding-top: 138px; }
}
