:root {
  --bg: #0c0b0a;
  --bg-elevated: #141210;
  --bg-soft: #1a1814;
  --bg-panel: #201c17;
  --gold: #c9a962;
  --gold-bright: #dfc27a;
  --gold-deep: #9a7b3c;
  --ink: #f3efe6;
  --ink-muted: #b7b0a4;
  --ink-dim: #8a8378;
  --line: rgba(201, 169, 98, 0.22);
  --line-strong: rgba(201, 169, 98, 0.45);
  --danger: #d9897a;
  --success: #8fbe9a;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --max: 1120px;
  --header-h: 4.5rem;
  --radius: 2px;
  --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(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(201, 169, 98, 0.12), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(201, 169, 98, 0.06), transparent 50%),
    var(--bg);
  min-height: 100vh;
}

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

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

a:hover {
  color: var(--ink);
}

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

h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--gold);
  color: var(--bg);
  padding: 0.6rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

.inline-error {
  background: rgba(217, 137, 122, 0.12);
  border: 1px solid rgba(217, 137, 122, 0.45);
  color: #f0c4bc;
  padding: 0.75rem 1rem;
  margin: 1rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(12, 11, 10, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 0.85rem;
  height: 0.85rem;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.12);
}

.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.55rem;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 1px;
  background: var(--gold);
  width: 100%;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.nav-list a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

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

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

.nav-cta:hover {
  background: rgba(201, 169, 98, 0.12);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .site-nav.is-open {
    max-height: 420px;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.4rem;
    gap: 0.85rem;
  }
}

.site-footer {
  margin-top: 5rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(201, 169, 98, 0.04));
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.footer-tag {
  max-width: 34rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.footer-heading {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

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

.footer-col li {
  margin-bottom: 0.45rem;
}

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

.footer-col a:hover {
  color: var(--gold-bright);
}

.footer-address {
  font-size: 0.95rem;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 0.9rem;
}

@media (max-width: 800px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold));
  color: #140f08;
  border-color: var(--gold-bright);
}

.btn-gold:hover {
  color: #0c0b0a;
  transform: translateY(-1px);
}

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

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

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.page-hero {
  padding: 4.5rem 0 2.5rem;
}

.page-hero .eyebrow {
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 1rem;
}

.page-hero p.lead {
  font-size: 1.15rem;
  max-width: 40rem;
}

.section {
  padding: 4rem 0;
}

.section-tight {
  padding: 2.5rem 0;
}

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

@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 1.1s ease;
}

.media-frame:hover img {
  transform: scale(1.04);
}

.gold-rule {
  width: 4rem;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.75rem 0;
}

.stat-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold-bright);
  font-weight: 500;
}

.stat-row span {
  color: var(--ink-dim);
  font-size: 0.92rem;
}

@media (max-width: 700px) {
  .stat-row {
    grid-template-columns: 1fr;
  }
}

.feature-list {
  display: grid;
  gap: 1.5rem;
}

.feature-item {
  padding-left: 1.25rem;
  border-left: 1px solid var(--gold);
}

.feature-item h3 {
  margin-bottom: 0.35rem;
}

.course-grid,
.blog-grid,
.price-grid,
.review-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

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

@media (max-width: 900px) {
  .course-grid,
  .blog-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

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

.course-tile,
.blog-tile {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.course-tile:hover,
.blog-tile:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.course-tile img,
.blog-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tile-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.tile-body h3 {
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.tile-meta {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.price-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.price-panel.featured {
  border-color: var(--gold);
  background:
    linear-gradient(180deg, rgba(201, 169, 98, 0.1), transparent 40%),
    var(--bg-panel);
}

.price-panel h3 {
  margin-bottom: 0.35rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold-bright);
  margin: 1rem 0 0.35rem;
}

.price-note {
  font-size: 0.9rem;
  color: var(--ink-dim);
  margin-bottom: 1.25rem;
}

.price-panel ul {
  margin: 0 0 1.75rem;
  padding: 0 0 0 1.1rem;
  color: var(--ink-muted);
  flex: 1;
}

.price-panel li {
  margin-bottom: 0.55rem;
}

.quote-block {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 1.75rem;
}

.quote-block blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.35;
  color: var(--ink);
}

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

.stars {
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

.prose {
  max-width: 44rem;
}

.prose h2 {
  margin-top: 2.5rem;
}

.prose h3 {
  margin-top: 1.75rem;
}

.prose ul,
.prose ol {
  color: var(--ink-muted);
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

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

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

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}

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

.faq details p {
  margin-top: 0.75rem;
}

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

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.field {
  margin-bottom: 1.15rem;
}

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

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

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

.field-error {
  min-height: 1.2rem;
  margin-top: 0.35rem;
  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, 190, 154, 0.5);
  color: var(--success);
  background: rgba(143, 190, 154, 0.08);
}

.form-status.is-error {
  border-color: rgba(217, 137, 122, 0.5);
  color: #f0c4bc;
  background: rgba(217, 137, 122, 0.08);
}

.office-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 1.75rem;
}

.office-panel h2 {
  font-size: 1.5rem;
}

.home-stage {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
}

.home-stage-copy {
  padding: clamp(2.5rem, 6vw, 5rem) 1.25rem clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 36rem;
  margin-left: auto;
}

.home-stage-visual {
  position: relative;
  min-height: 70vh;
  overflow: hidden;
}

.home-stage-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 70vh;
  filter: brightness(0.55) contrast(1.08) saturate(0.8);
}

.home-stage-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(12, 11, 10, 0.35) 35%, transparent 70%),
    linear-gradient(0deg, rgba(12, 11, 10, 0.55), transparent 40%);
}

.brand-hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--gold-bright);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  animation: rise 0.9s ease both;
}

.home-stage h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  max-width: 14ch;
  animation: rise 1s ease 0.12s both;
}

.home-stage .lede {
  margin-top: 1.25rem;
  max-width: 30rem;
  animation: rise 1s ease 0.22s both;
}

.home-stage .cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: rise 1s ease 0.32s both;
}

@media (max-width: 900px) {
  .home-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-stage-copy {
    max-width: none;
    margin: 0;
    order: 2;
    padding: 2.5rem 1.25rem 3rem;
  }

  .home-stage-visual {
    order: 1;
    min-height: 48vh;
  }

  .home-stage-visual img {
    min-height: 48vh;
  }

  .home-stage-visual::after {
    background: linear-gradient(0deg, var(--bg), transparent 45%);
  }
}

.band {
  background: var(--bg-elevated);
  border-block: 1px solid var(--line);
}

.case-study {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  padding: 2rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

@media (max-width: 800px) {
  .case-study {
    grid-template-columns: 1fr;
  }
}

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

.module-list li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}

.module-num {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.4rem;
}

.instructor {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  padding: 1.25rem;
}

.instructor img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}

@media (max-width: 600px) {
  .instructor {
    grid-template-columns: 1fr;
  }
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 720px;
  margin: 0 auto;
}

.cookie-banner-inner {
  background: rgba(20, 18, 16, 0.96);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.35rem;
  display: grid;
  gap: 1rem;
}

.cookie-banner-inner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.error-page .code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 9rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-reveal],
  .brand-hero-name,
  .home-stage h1,
  .home-stage .lede,
  .home-stage .cta-row {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}
