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

:root {
  --black: #080808;
  --dark: #111111;
  --mid: #1a1a1a;
  --border: rgba(255,255,255,0.08);
  --white: #f5f4f0;
  --muted: rgba(245,244,240,0.45);
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 4rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(16px);
  transition: padding 0.3s;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-logo:hover { color: rgba(201,168,76,0.9); }

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.4);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(201,168,76,0.6);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }

/* AUDIT HERO LINKS */
.audit-hero-link {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 0.88rem !important;
  font-style: italic !important;
  font-weight: 300 !important;
  color: rgba(201,168,76,0.65) !important;
  letter-spacing: 0.04em !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(201,168,76,0.2) !important;
  padding-bottom: 2px !important;
  transition: color 0.2s, border-color 0.2s !important;
}
.audit-hero-link:hover {
  color: rgba(201,168,76,1) !important;
  border-color: rgba(201,168,76,0.7) !important;
}

.nav-cta {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: rgba(201,168,76,0.9);
  text-decoration: none;
  border: 1px solid transparent;
  padding: 0.55rem 1.4rem;
  transition: all 0.3s;
  font-weight: 400;
}

.nav-cta:hover {
  background: rgba(201,168,76,1);
  color: var(--black);
}

/* HAMBURGER MENU */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

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

/* BUTTONS */
.btn-primary {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  background: rgba(201,168,76,0.95);
  text-decoration: none;
  padding: 1rem 2.5rem;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary:hover {
  background: rgba(201,168,76,1);
  box-shadow: 0 0 28px rgba(201,168,76,0.2);
}

.btn-secondary {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,244,240,0.7);
  background: transparent;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(245,244,240,0.15);
  transition: all 0.3s;
  cursor: pointer;
}

.btn-secondary:hover {
  color: var(--white);
  border-color: rgba(245,244,240,0.4);
}

/* SECTION LABEL */
.section-label {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.7);
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(201,168,76,0.3);
}

/* SECTIONS */
section {
  padding: 9rem 4rem;
  border-top: 1px solid var(--border);
}

.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 720px; margin: 0 auto; }

/* DIVIDER */
.divider {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

/* PAGE HERO (non-homepage) */
.page-hero {
  padding: 14rem 4rem 8rem;
  background: var(--black);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 2rem;
  max-width: 800px;
}

.page-hero p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.9;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--white);
}

.site-footer p {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.7rem;
  transition: color 0.3s;
}

.site-footer a:hover { color: var(--white); }

/* FOOTER CTA SECTION */
.footer-cta {
  background: var(--black);
  text-align: center;
  padding: 10rem 4rem;
  border-top: 1px solid var(--border);
}

.footer-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

.footer-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* PROSE */
.prose p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.prose p strong, .prose p.highlight {
  color: var(--white);
  font-weight: 400;
}

.prose h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  margin: 3rem 0 1rem;
  color: var(--white);
}

.prose blockquote {
  border-left: 1px solid var(--border);
  padding-left: 2rem;
  margin: 2.5rem 0;
}

.prose blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--white);
  margin: 0;
}

/* PHASES GRID */
.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.phase {
  background: var(--dark);
  padding: 2.5rem;
  transition: background 0.3s;
}

.phase:hover { background: var(--mid); }

.phase-num {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.phase h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.phase-price {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.phase p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}

.phase ul {
  list-style: none;
  margin-top: 1rem;
}

.phase ul li {
  font-size: 0.82rem;
  color: var(--muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.phase ul li:last-child { border-bottom: none; }

/* AUDIENCE GRID */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.audience-card {
  background: var(--dark);
  padding: 3rem 2.5rem;
  transition: background 0.3s;
  text-decoration: none;
  display: block;
}

.audience-card:hover { background: var(--mid); }

.audience-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}

.audience-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.audience-card .card-link {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.audience-card:hover .card-link { color: var(--white); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    padding: 1.5rem 2rem;
  }

  .nav-links, .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  section {
    padding: 6rem 2rem;
  }

  .page-hero {
    padding: 10rem 2rem 6rem;
  }

  .phases, .audience-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 2rem;
    flex-direction: column;
    text-align: center;
  }

  .footer-cta {
    padding: 6rem 2rem;
  }
}
