:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --cream: #f2ede3;
  --gold: #c9a84c;
  --gold-light: #e2c97a;
  --muted: #6b6b6b;
  --muted-light: #9a9a9a;
  --border: #252525;
  --white: #ffffff;
}

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

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 5vw;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted-light);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.hero-services-list span {
  font-size: 0.8rem;
  color: var(--cream);
  opacity: 0.7;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Hero right */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}

.wordmark-block {
  border-left: 1px solid var(--gold);
  padding-left: 28px;
}

.wordmark-name {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1;
}

.wordmark-sub {
  font-size: 0.75rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  font-weight: 600;
  margin-top: 6px;
}

.wordmark-tag {
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 12px;
}

.hero-stat-row {
  display: flex;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* SERVICES */
.services {
  padding: 120px 5vw;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.services-inner { max-width: 1400px; margin: 0 auto; }

.section-header { margin-bottom: 64px; }

.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--cream);
  max-width: 600px;
  line-height: 1.2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg-2);
  padding: 48px;
  position: relative;
}

.service-num {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--muted-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 5px 10px;
  font-weight: 500;
}

/* EDGE */
.edge {
  padding: 120px 5vw;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.edge-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
}

.edge-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 24px;
}

.edge-body {
  font-size: 1rem;
  color: var(--muted-light);
  line-height: 1.8;
  margin-bottom: 48px;
  max-width: 520px;
}

.edge-pillars {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pillar-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.pillar-text {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.6;
  opacity: 0.85;
}

.pillar-text strong {
  color: var(--cream);
  font-weight: 600;
}

.edge-visual {
  display: flex;
  justify-content: flex-end;
}

.edge-block {
  border: 1px solid var(--gold);
  padding: 40px;
  max-width: 300px;
}

.edge-block-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.edge-block-price {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 16px;
}

.edge-block-price span {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--muted-light);
}

.edge-block-detail {
  font-size: 0.85rem;
  color: var(--muted-light);
  line-height: 1.6;
}

/* AUDIENCE */
.audience {
  padding: 120px 5vw;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.audience-inner { max-width: 1400px; margin: 0 auto; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}

.audience-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1;
}

.audience-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}

.audience-desc {
  font-size: 0.95rem;
  color: var(--muted-light);
  line-height: 1.7;
}

.audience-bottom {
  border-top: 1px solid var(--border);
  padding-top: 64px;
  text-align: center;
}

.audience-quote {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -60px;
  left: -20px;
  line-height: 1;
}

.audience-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 16px;
  position: relative;
}

.quote-attr {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* PROCESS */
.process {
  padding: 120px 5vw;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.process-inner { max-width: 1400px; margin: 0 auto; }

.process-steps {
  display: flex;
  align-items: center;
  margin-top: 48px;
}

.step {
  flex-shrink: 0;
}

.step-num {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--muted-light);
  line-height: 1.6;
  max-width: 200px;
}

.step-connector {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 24px;
  margin-bottom: 40px;
}

/* MANIFESTO */
.manifesto {
  padding: 120px 5vw 160px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.manifesto-inner { max-width: 1400px; margin: 0 auto; }

.manifesto-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 48px;
}

.manifesto-title em {
  font-style: italic;
  color: var(--gold);
}

.manifesto-body {
  max-width: 640px;
}

.manifesto-body p {
  font-size: 1rem;
  color: var(--muted-light);
  line-height: 1.9;
  margin-bottom: 24px;
}

.manifesto-body p:last-child strong {
  color: var(--cream);
}

/* FOOTER */
.footer {
  padding: 48px 5vw;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-meta {
  text-align: right;
}

.footer-location {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 4px;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .edge-inner { grid-template-columns: 1fr; }
  .edge-visual { justify-content: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { flex-direction: column; align-items: flex-start; gap: 32px; }
  .step-connector { display: none; }
  .footer-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .footer-meta { text-align: left; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 6vw; }
  .services, .edge, .audience, .process, .manifesto { padding: 80px 6vw; }
  .service-card { padding: 32px; }
  .edge-block { padding: 28px; }
}