:root {
  --bg: #0c0b09;
  --bg-elevated: #15130f;
  --bg-soft: #1c1914;
  --ink: #f3efe6;
  --ink-muted: #b7a08f;
  --muted: #9a9080;
  --gold: #c9a227;
  --gold-soft: #e0c56a;
  --gold-deep: #8f7112;
  --line: rgba(201, 162, 39, 0.22);
  --danger: #d9897a;
  --success: #8fbf9a;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Figtree", "Segoe UI", sans-serif;
  --radius: 2px;
  --max: 1120px;
  --header-h: 72px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(201, 162, 39, 0.12), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(143, 113, 18, 0.1), transparent 50%),
    linear-gradient(180deg, #100e0b 0%, var(--bg) 40%, #090807 100%);
  min-height: 100vh;
  line-height: 1.65;
}

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

a {
  color: var(--gold-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #f0dfa0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(12, 11, 9, 0.78);
  border-bottom: 1px solid rgba(201, 162, 39, 0.14);
}

.header-inner {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
}

.logo:hover {
  color: var(--gold-soft);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem 1.15rem;
}

.site-nav a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-soft);
}

.site-nav .nav-cta {
  border: 1px solid var(--line);
  padding: 0.45rem 0.9rem;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  cursor: pointer;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.1rem;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.35rem;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #140f05;
  border-color: var(--gold);
}

.btn-gold:hover {
  color: #140f05;
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--gold) 100%);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-soft);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--ink);
}

.hero-editorial {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-editorial__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slow-zoom 18s ease-in-out infinite alternate;
}

.hero-editorial__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 7, 5, 0.92) 0%, rgba(8, 7, 5, 0.72) 42%, rgba(8, 7, 5, 0.35) 100%),
    linear-gradient(180deg, rgba(8, 7, 5, 0.2) 0%, rgba(8, 7, 5, 0.88) 100%);
}

.hero-editorial__content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5rem 0 4.5rem;
  max-width: 38rem;
  animation: rise-in 0.9s ease both;
}

.brand-mark {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  color: var(--ink);
  margin: 0 0 0.35em;
  letter-spacing: 0.03em;
}

.hero-editorial h1 {
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  color: var(--gold-soft);
  max-width: 16ch;
}

.hero-editorial p {
  font-size: 1.05rem;
  max-width: 36ch;
  color: #d2c8b4;
}

.proof-band {
  border-block: 1px solid var(--line);
  background: rgba(21, 19, 15, 0.7);
}

.proof-band__inner {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1.75rem 0;
}

.proof-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 500;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 5rem 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--ink);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.feature-course {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.feature-course img {
  width: 100%;
  height: min(460px, 70vw);
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-course .meta {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.benefit-list h3 {
  font-size: 1.45rem;
  color: var(--ink);
}

.split-dark {
  background: var(--bg-elevated);
  border-block: 1px solid rgba(201, 162, 39, 0.1);
}

.quote-stack {
  display: grid;
  gap: 1.75rem;
}

.quote {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}

.quote blockquote {
  margin: 0 0 0.9rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  color: var(--ink);
  line-height: 1.35;
}

.quote cite {
  font-style: normal;
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0;
  border-top: 1px solid var(--line);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% 40%;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.18), transparent 65%);
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  max-width: 14ch;
  margin: 0;
}

.page-hero {
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  max-width: 16ch;
}

.page-hero p {
  max-width: 42ch;
  font-size: 1.05rem;
}

.media-hero {
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.media-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-hero .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 5, 0.25), rgba(8, 7, 5, 0.88));
}

.media-hero .content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 4rem 0 2.5rem;
}

.course-grid,
.blog-grid,
.tier-grid {
  display: grid;
  gap: 1.75rem;
}

.course-grid,
.blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tier-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.course-item,
.blog-item {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.course-item img,
.blog-item img,
.avatar {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
}

.course-item h2,
.blog-item h2,
.course-item h3,
.blog-item h3 {
  font-size: 1.45rem;
  margin: 0;
}

.course-item a,
.blog-item a {
  text-decoration: none;
  color: inherit;
}

.course-item a:hover h2,
.course-item a:hover h3,
.blog-item a:hover h2,
.blog-item a:hover h3 {
  color: var(--gold-soft);
}

.tier {
  border: 1px solid var(--line);
  background: rgba(21, 19, 15, 0.75);
  padding: 1.75rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.tier.featured {
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: inset 0 0 0 1px rgba(201, 162, 39, 0.15);
}

.tier h2 {
  font-size: 1.7rem;
  margin: 0;
}

.tier .price {
  font-family: var(--serif);
  font-size: 2.3rem;
  color: var(--gold);
}

.tier ul {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--muted);
  flex: 1;
}

.tier li + li {
  margin-top: 0.4rem;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: 2rem;
  font-size: 1.8rem;
}

.prose h3 {
  margin-top: 1.5rem;
  font-size: 1.35rem;
}

.prose ul,
.prose ol {
  color: var(--muted);
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.92rem;
}

.prose th,
.prose td {
  border: 1px solid var(--line);
  padding: 0.7rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: var(--bg-soft);
  color: var(--gold-soft);
  font-weight: 500;
}

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

.modules li {
  border-left: 2px solid var(--gold);
  padding: 0.3rem 0 0.3rem 1rem;
}

.instructor {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.instructor .avatar {
  aspect-ratio: 1;
  width: 160px;
}

.faq details {
  border-bottom: 1px solid rgba(201, 162, 39, 0.14);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.faq p {
  margin-top: 0.7rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
}

.field {
  margin-bottom: 1.1rem;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.75rem 0.85rem;
  font: inherit;
  border-radius: var(--radius);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 1px solid var(--gold);
  border-color: var(--gold);
}

.field-error {
  margin: 0.4rem 0 0;
  color: var(--danger);
  font-size: 0.88rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
}

.form-status.is-success {
  border-color: rgba(143, 191, 154, 0.45);
  color: var(--success);
}

.form-status.is-error {
  border-color: rgba(217, 137, 122, 0.45);
  color: var(--danger);
}

.contact-aside {
  border: 1px solid var(--line);
  background: rgba(21, 19, 15, 0.7);
  padding: 1.5rem;
}

.contact-aside address {
  font-style: normal;
  color: var(--muted);
  margin-bottom: 1rem;
}

.review-list {
  display: grid;
  gap: 1.75rem;
}

.review-block {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}

.review-block .rating {
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.case-study {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(201, 162, 39, 0.16);
  background: #090807;
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2rem;
}

.footer-heading {
  font-size: 1.1rem;
  color: var(--gold-soft);
  margin-bottom: 0.8rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-address {
  font-style: normal;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.footer-bottom {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  border-top: 1px solid rgba(201, 162, 39, 0.1);
  padding-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 640px;
  margin-inline: auto;
  background: #17140f;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
}

.cookie-banner p {
  margin: 0 0 1rem;
  color: #cfc4b0;
  font-size: 0.92rem;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.inline-error {
  background: #3a1f1b;
  color: #f0c2ba;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #6a3a33;
}

.not-found {
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 3rem 1.25rem;
}

.not-found h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--gold);
  margin-bottom: 0.2em;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes slow-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@media (max-width: 960px) {
  .proof-band__inner,
  .benefit-list,
  .course-grid,
  .blog-grid,
  .tier-grid,
  .feature-course,
  .contact-layout,
  .footer-grid,
  .instructor {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(12, 11, 9, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-inner {
    position: relative;
  }
}

@media (max-width: 640px) {
  .proof-band__inner {
    grid-template-columns: 1fr;
  }

  .hero-editorial__content,
  .page-hero,
  .section {
    padding-top: 3rem;
  }
}
