:root {
  --bg: #060606;
  --bg-2: #0d0d0d;
  --panel: #131313;
  --panel-2: #181818;
  --line: rgba(211, 168, 95, 0.28);
  --gold: #d3a85f;
  --gold-2: #b8863b;
  --text: #f5f1e8;
  --muted: #c8bea9;
  --shadow: 0 22px 58px rgba(0, 0, 0, 0.45);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 0%, #1b1408 0%, #090909 42%), var(--bg);
  line-height: 1.62;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 8, 8, 0.84);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 180px;
  max-width: 40vw;
  border-radius: 10px;
  border: 1px solid rgba(211, 168, 95, 0.4);
}

.nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: #ebdfcb;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav a:hover { color: var(--gold); }

.hero {
  padding: 6rem 0 4.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
}

h1, h2, h3 {
  font-family: Manrope, Inter, sans-serif;
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.15rem, 5vw, 4rem); max-width: 14ch; }
h2 { font-size: clamp(1.55rem, 3vw, 2.45rem); }
h3 { font-size: 1.15rem; }

.hero-copy > p { color: var(--muted); max-width: 56ch; }

.hero-cta {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.78rem 1.06rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(120deg, var(--gold), var(--gold-2));
  color: #1f1303;
}

.btn-ghost {
  color: #f4eee1;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.01);
}

.btn:focus-visible,
.nav a:focus-visible,
.toc-card a:focus-visible {
  outline: 3px solid #f2cf93;
  outline-offset: 2px;
}

.hero-visual {
  min-height: 390px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section { padding: 4.2rem 0; }
.muted { background: linear-gradient(180deg, var(--bg-2), #0a0a0a); }

.section-image,
.page-hero-image,
.detail-image {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.section-image { max-height: 340px; margin: 1rem 0 1.1rem; }
.page-hero-image { max-height: 420px; margin: 1rem 0 1.2rem; }
.detail-image { max-height: 270px; margin-top: 0.75rem; }

.stats-grid,
.experience-grid,
.proof-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 1rem; }
.experience-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 1rem; }
.proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 1rem; }
.testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 1rem; }

.stats-grid article,
.card,
.offer-card,
.proof-card,
.testimonial-grid blockquote,
.process li,
.toc-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  box-shadow: var(--shadow);
}

.stats-grid article,
.card,
.offer-card,
.testimonial-grid blockquote,
.process li,
.toc-card {
  padding: 1.2rem;
}

.stat {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2rem);
  color: var(--gold);
  font-weight: 800;
}

.label, .card p, .hero-copy, .article-body p, .stack, .checklist, .process p {
  color: var(--muted);
}

.process {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.process li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
}

.process span {
  color: var(--gold);
  font-family: Manrope, sans-serif;
  font-weight: 800;
}

.proof-card {
  min-height: 220px;
  text-decoration: none;
  padding: 1.2rem;
  display: grid;
  align-content: end;
  gap: 0.5rem;
  color: #f4eee1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 20% 0%, rgba(211, 168, 95, 0.18), transparent 55%),
    var(--bg-image, linear-gradient(180deg, #171717, #0f0f0f));
  background-size: cover;
  background-position: center;
}

.proof-card strong { color: #f4d59f; }
.proof-card span { color: #efe4ce; font-size: 0.95rem; }
.proof-card:hover { border-color: rgba(211, 168, 95, 0.6); transform: translateY(-2px); }

.chip {
  display: inline-block;
  padding: 0.3rem 0.58rem;
  border-radius: 999px;
  background: rgba(211, 168, 95, 0.18);
  color: #f3dcb0;
  font-size: 0.8rem;
  font-weight: 600;
}

.price { color: #f3dcb0; font-weight: 700; }
.text-link { text-decoration: none; color: #f0d5a2; font-weight: 600; }
.text-link:hover { color: #f9e5c3; }

.testimonial-grid blockquote { margin: 0; color: #efe6d6; }
.testimonial-grid cite {
  display: block;
  margin-top: 0.75rem;
  color: #f0d4a2;
  font-style: normal;
  font-size: 0.9rem;
}

.stack,
.checklist { margin: 0; padding-left: 1.15rem; }

.final-cta { text-align: center; }
.final-cta p { color: var(--muted); margin-bottom: 1rem; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2.2rem;
  color: var(--muted);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.7rem 0 1rem;
}

.blog-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.article-body h1 {
  max-width: 24ch;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.12;
  text-wrap: balance;
}

.article-body h2,
.article-body h3 {
  margin-top: 1.3rem;
}

.article-body p { max-width: 72ch; }

.toc-card { margin: 1rem 0 1.5rem; }
.toc-card h3 { margin-bottom: 0.45rem; }
.toc-card ol { margin: 0; padding-left: 1.1rem; }
.toc-card a { color: #eadfcb; text-decoration: none; }
.toc-card a:hover { color: var(--gold); }

.related-links {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav { display: none; }

  .hero-grid,
  .stats-grid,
  .experience-grid,
  .proof-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 4.9rem; }
  .hero-visual { min-height: 300px; }

  .container {
    width: min(1140px, calc(100% - 1.25rem));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand img {
    width: 152px;
    max-width: 58vw;
  }

  .btn {
    width: 100%;
  }

  .hero-cta,
  .related-links {
    gap: 0.6rem;
  }

  .article-body h1 {
    max-width: 100%;
    font-size: clamp(1.6rem, 8vw, 2.1rem);
    line-height: 1.2;
  }

  .article-body p {
    max-width: 100%;
    font-size: 0.98rem;
  }

  .toc-card {
    padding: 0.9rem;
  }

  .process li,
  .card,
  .testimonial-grid blockquote,
  .toc-card {
    padding: 1rem;
  }

  .page-hero-image {
    max-height: 280px;
  }
}
