:root {
  --bg-deep: #0a0c10;
  --bg-card: #12151c;
  --bg-elevated: #1a1e28;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dim: #8a7234;
  --text-primary: #e8e6e1;
  --text-secondary: #9b978f;
  --text-muted: #6b6860;
  --border: #2a2d36;
  --accent-green: #4a9e6e;
}

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

html { scroll-behavior: smooth; }

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

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 6rem 8vw;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.hero-tag {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

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

/* ===== SERVICES ===== */
.services {
  padding: 8rem 8vw;
  position: relative;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  max-width: 600px;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-2px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.card-number {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold-dim);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
}

.card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.card-badge {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(74, 158, 110, 0.3);
  border-radius: 20px;
}

/* ===== EDGE ===== */
.edge {
  padding: 6rem 8vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.edge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.edge-left .section-title {
  margin-bottom: 1.5rem;
}

.edge-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 480px;
}

.edge-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.edge-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.edge-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
}

.edge-item-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.edge-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== CLOSING ===== */
.closing {
  padding: 10rem 8vw;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.closing-statement {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 8vw;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 6vw;
    min-height: 90vh;
  }

  .hero-stats {
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .edge-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services, .edge {
    padding: 5rem 6vw;
  }

  .closing {
    padding: 6rem 6vw;
  }

  .footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ── CTA Button ─────────────────────────────────────────────────────────── */
.cta-btn {
  display: inline-block;
  background: #c9a84c;
  color: #0a0c10;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 1rem 2.2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.cta-btn:hover {
  background: #e0bb60;
  transform: translateY(-2px);
}
.cta-btn--sm {
  font-size: 0.9rem;
  padding: 0.75rem 1.7rem;
}

/* ── Hero CTA block ─────────────────────────────────────────────────────── */
.hero-cta {
  margin-top: 2.5rem;
}

/* ── Card CTA link ──────────────────────────────────────────────────────── */
.card-cta {
  display: inline-block;
  margin-top: 1.2rem;
  color: #c9a84c;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}
.card-cta:hover {
  color: #e0bb60;
}

/* ── 2-column services grid override ───────────────────────────────────── */
.services-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .services-grid--2col {
    grid-template-columns: 1fr;
  }
}

/* ── Market tags ────────────────────────────────────────────────────────── */
.services-markets {
  margin-top: 3rem;
  text-align: center;
}
.market-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.9rem;
}
.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.market-tag {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: #c9a84c;
  font-size: 0.78rem;
  font-family: 'DM Sans', sans-serif;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ── Footer link ────────────────────────────────────────────────────────── */
.footer-link a {
  color: #c9a84c;
  font-size: 0.85rem;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.footer-link a:hover {
  opacity: 1;
}

/* ── Closing CTA alignment ──────────────────────────────────────────────── */
.closing .cta-btn {
  margin-top: 2rem;
}

/* ===== MISSION / WHY I DO THIS ===== */
.mission {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 8vw;
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

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

.mission-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 3rem;
}

.mission-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-style: italic;
  line-height: 1.85;
  color: var(--text-secondary);
  position: relative;
  padding: 0;
}

.mission-quote-mark {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 5rem;
  font-style: normal;
  font-weight: 800;
  color: var(--gold);
  line-height: 0.7;
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.mission-cite {
  display: block;
  margin-top: 3rem;
  font-family: 'Syne', sans-serif;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .mission {
    padding: 5rem 6vw;
  }

  .mission-quote-mark {
    font-size: 4rem;
  }
}