/* ===== VARIABLES ===== */
:root {
  --midnight: #0F1117;
  --charcoal: #1A1C24;
  --dark-card: #14161D;
  --copper: #C87941;
  --copper-dim: #A06330;
  --cream: #F2EDE4;
  --off-white: #FAF8F5;
  --muted: #8A8A9A;
  --border: #252836;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--midnight);
  color: var(--cream);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 3rem;
  font-style: italic;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15,17,23,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-cta {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  text-decoration: none;
  border: 1px solid var(--copper);
  padding: 0.4rem 1rem;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover {
  background: var(--copper);
  color: var(--midnight);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--midnight);
  z-index: 0;
}

.hero-shapes {
  position: absolute;
  inset: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
}

.shape-1 {
  width: 600px;
  height: 600px;
  right: -150px;
  top: -100px;
  background: radial-gradient(circle, rgba(200,121,65,0.12) 0%, transparent 70%);
}

.shape-2 {
  width: 400px;
  height: 400px;
  right: 80px;
  top: 60px;
  background: radial-gradient(circle, rgba(200,121,65,0.06) 0%, transparent 70%);
  border: 1px solid rgba(200,121,65,0.08);
}

.shape-3 {
  width: 300px;
  height: 300px;
  left: -80px;
  bottom: 80px;
  background: radial-gradient(circle, rgba(242,237,228,0.03) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-headline {
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  max-width: 700px;
}

.hero-headline em {
  font-style: italic;
  color: var(--copper);
}

.hero-rule {
  width: 60px;
  height: 2px;
  background: var(--copper);
  margin-bottom: 1.75rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 480px;
  font-weight: 300;
  line-height: 1.7;
}

/* ===== PROCESS ===== */
.process {
  background: var(--charcoal);
  padding: 6rem 2rem;
}

.process .section-title { font-style: italic; }

.process-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.process-step {
  background: var(--charcoal);
  padding: 2.5rem 2rem;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--copper);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.process-step h3 {
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

/* ===== SERVICES ===== */
.services {
  background: var(--midnight);
  padding: 6rem 2rem;
}

.services .section-title { font-style: italic; }

.services-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.service-card {
  background: var(--dark-card);
  padding: 2rem;
  transition: background 0.3s;
}

.service-card:hover { background: #1A1D27; }

.service-card-wide { grid-column: span 2; }

.service-icon {
  width: 28px;
  height: 2px;
  background: var(--copper);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--charcoal);
  padding: 6rem 2rem;
}

.pricing .section-title { font-style: italic; }

.pricing-note {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 3rem;
}

.pricing-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-bottom: 2rem;
}

.pricing-tier {
  background: var(--dark-card);
  padding: 2rem 1.5rem;
}

.pricing-tier-featured {
  background: #1C1F2A;
  border-top: 2px solid var(--copper);
}

.pricing-tier-premium {
  background: #191B24;
}

.tier-name {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.tier-features {
  list-style: none;
}

.tier-features li {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}

.tier-features li:last-child { border-bottom: none; }

.pricing-ceramic {
  max-width: 1140px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 300;
  font-style: italic;
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--midnight);
  padding: 7rem 2rem;
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  opacity: 0.3;
}

.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--cream);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.manifesto-rule {
  width: 40px;
  height: 1px;
  background: var(--copper);
  margin: 0 auto 2rem;
}

.manifesto-closing {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: #090A0E;
  padding: 4rem 2rem 3rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.footer-location {
  font-size: 0.75rem;
  color: var(--copper);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.footer-tag {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.footer-rule {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 1.5rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-card-wide { grid-column: span 1; }
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero { padding-top: 7rem; }
  .hero-headline { font-size: 3.5rem; }
  .services-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    background: none;
    gap: 0;
  }
  .process-step {
    border-bottom: 1px solid var(--border);
  }
  .services-grid {
    background: none;
    gap: 0;
  }
  .service-card { border-bottom: 1px solid var(--border); }
  .pricing-grid {
    background: none;
    gap: 0;
  }
  .pricing-tier { border-bottom: 1px solid var(--border); }
  .nav-tagline { display: none; }
}