:root {
  --ink: #1c1917;
  --ink-soft: #44403c;
  --muted: #78716c;
  --cream: #f7f3ed;
  --paper: #fdfbf7;
  --sand: #efe8dc;
  --gold: #a67c52;
  --gold-deep: #8b6540;
  --gold-light: #d4b896;
  --line: #e4d9c8;
  --white: #ffffff;
  --danger: #8a3a2a;
  --ok: #2f5d3a;
  --shadow: 0 18px 50px rgba(28, 25, 23, 0.08);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --max: 1120px;
  --narrow: 760px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  min-height: 100vh;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.6em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0 0 1em;
}

.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.lede {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 42rem;
}

.wrap {
  width: min(100% - 2.4rem, var(--max));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - 2.4rem, var(--narrow));
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section-cream {
  background: var(--cream);
}

.section-sand {
  background: var(--sand);
}

.gold-rule {
  width: 3.5rem;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: 0 0 1.5rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
  color: var(--paper);
}

.inline-error {
  background: #f6e8e4;
  color: var(--danger);
  border: 1px solid #e3c4bb;
  padding: 0.75rem 1rem;
  margin: 0.75rem 1rem;
}

#site-header,
#site-footer {
  min-height: 1px;
}

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

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

.logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

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

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

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

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -1px 0 var(--gold);
}

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

.nav-cta:hover {
  background: var(--gold);
  color: var(--paper) !important;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  padding: 0.55rem;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--ink);
}

.site-footer {
  background: var(--ink);
  color: #d6d0c8;
  padding: 3.5rem 0 1.5rem;
  margin-top: 0;
}

.footer-inner {
  width: min(100% - 2.4rem, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-mark {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--paper);
  margin-bottom: 0.4rem;
}

.footer-tag,
.site-footer p {
  color: #c9c1b6;
}

.footer-heading {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}

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

.footer-links a,
.site-footer a {
  color: #ece7df;
  text-decoration: none;
}

.footer-links a:hover,
.site-footer a:hover {
  color: var(--gold-light);
}

.footer-copy {
  width: min(100% - 2.4rem, var(--max));
  margin: 2.5rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(212, 184, 150, 0.25);
  font-size: 0.9rem;
  color: #a8a29a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--paper);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-deep);
  color: var(--paper);
  border-color: var(--gold-deep);
}

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

.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-text {
  background: none;
  border: 0;
  padding: 0;
  color: var(--gold-deep);
  text-decoration: none;
  font-weight: 600;
  box-shadow: inset 0 -1px 0 var(--gold-light);
}

.btn-text:hover {
  color: var(--ink);
}

.hero-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: end;
  padding: 4.2rem 0 2rem;
}

.hero-aside {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow);
}

.hero-aside .metric {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-figure {
  margin: 0;
}

.hero-figure img {
  width: 100%;
  max-height: 28rem;
  object-fit: cover;
}

.hero-figure figcaption {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.7rem 0 0;
}

.quote-band {
  padding: 3rem 0;
}

.quote-band blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.4;
  max-width: 46rem;
}

.quote-band cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.92rem;
  color: var(--muted);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.5rem;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.card img {
  width: 100%;
  height: 11.5rem;
  object-fit: cover;
}

.card h3 {
  margin: 0;
}

.card p {
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}

.meta {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat {
  border-left: 1px solid var(--gold-light);
  padding-left: 1rem;
}

.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--ink);
}

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

.page-hero {
  padding: 3.4rem 0 2rem;
}

.page-hero.with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.page-hero img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
}

.prose {
  max-width: 46rem;
}

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

.prose ul,
.prose ol {
  padding-left: 1.2rem;
}

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

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

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

.prose th {
  background: var(--cream);
  font-weight: 600;
}

.avatar {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: cover;
  border-radius: 50%;
}

.instructor {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--cream);
  padding: 1.4rem;
  border: 1px solid var(--line);
}

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

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

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

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  margin: 0.7rem 0 0.2rem;
  color: var(--ink-soft);
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.8rem 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--gold);
  background: var(--cream);
  transform: translateY(-0.4rem);
}

.price-card h3 {
  margin-bottom: 0.2rem;
}

.price {
  font-family: var(--serif);
  font-size: 2.3rem;
  margin: 0.6rem 0 1rem;
}

.price small {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--muted);
}

.price-card ul {
  margin: 0 0 1.4rem;
  padding-left: 1.1rem;
  color: var(--ink-soft);
  flex: 1;
}

.review {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem;
}

.review .stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

.review footer {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  background: none;
  padding: 0;
}

.case-study {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
  margin: 2rem 0 3rem;
}

.case-study img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.form {
  display: grid;
  gap: 1rem;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

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

.field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

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

.field-error {
  color: var(--danger);
  font-size: 0.88rem;
  min-height: 1.1em;
  margin-top: 0.3rem;
}

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

.form-status.is-success {
  background: #e9f3ea;
  color: var(--ok);
  border-color: #b7d4bc;
}

.form-status.is-error,
.form-status.is-pending {
  background: var(--cream);
}

.form-status.is-error {
  color: var(--danger);
  border-color: #e3c4bb;
}

.address-block {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 1.4rem 1.5rem;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: var(--ink);
  color: #ece7df;
  border-top: 1px solid rgba(212, 184, 150, 0.35);
  padding: 1.1rem 0;
}

.cookie-banner-inner {
  width: min(100% - 2.4rem, var(--max));
  margin-inline: auto;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--paper);
  margin: 0 0 0.35rem;
}

.cookie-copy p {
  margin: 0;
  color: #d6d0c8;
}

.cookie-banner a {
  color: var(--gold-light);
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-shrink: 0;
}

.cookie-banner .btn-ghost {
  color: var(--paper);
  border-color: #a8a29a;
}

.cookie-banner .btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
}

.article-hero img {
  width: 100%;
  max-height: 22rem;
  object-fit: cover;
  margin: 0 0 1.5rem;
}

.not-found {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.2rem;
}

.not-found h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  margin-bottom: 0.2rem;
}

@media (max-width: 980px) {
  .hero-split,
  .page-hero.with-image,
  .case-study,
  .footer-inner,
  .grid-3,
  .grid-4,
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .site-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 4.4rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem 1.2rem 1.2rem;
    gap: 0.7rem;
  }

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

  .hero-split,
  .page-hero.with-image,
  .case-study,
  .grid-2,
  .grid-3,
  .grid-4,
  .stat-row,
  .footer-inner,
  .cookie-banner-inner {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .cookie-banner-inner {
    display: grid;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}
