:root {
  --ink: #1c1917;
  --navy: #1b2a41;
  --navy-deep: #121c2b;
  --gold: #a67c52;
  --gold-light: #c9a87c;
  --gold-pale: #e8d5b5;
  --cream: #f4f0ea;
  --ivory: #fbfaf7;
  --paper: #ffffff;
  --muted: #6b6560;
  --line: #e4ddd4;
  --line-strong: #cfc6ba;
  --success: #2f5d45;
  --success-bg: #e7f1eb;
  --error: #8b3a3a;
  --error-bg: #f6eaea;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --shadow: 0 18px 40px rgba(27, 42, 65, 0.08);
  --radius: 2px;
  --header-h: 4.5rem;
  --measure: 70ch;
}

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

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: var(--navy);
  text-decoration-color: var(--gold-light);
  text-underline-offset: 0.18em;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.35rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--navy);
  color: var(--ivory);
  padding: 0.5rem 0.9rem;
  z-index: 100;
}

.skip-link:focus {
  top: 0.75rem;
  color: var(--ivory);
}

.inline-error {
  margin: 0;
  padding: 0.85rem 1.1rem;
  background: var(--error-bg);
  color: var(--error);
  border: 1px solid #e2c4c4;
  font-size: 0.95rem;
}

.chrome-error {
  margin: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--navy);
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-toggle {
  display: none;
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--navy);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  cursor: pointer;
}

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

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

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

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

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #d8d0c6;
  padding: 4rem 1.5rem 1.5rem;
  margin-top: 0;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.3fr;
  gap: 2rem 2.5rem;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold-pale);
  margin: 0 0 0.6rem;
}

.footer-lede {
  max-width: 34ch;
  color: #b8b0a6;
}

.footer-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 0.85rem;
}

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

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

.footer-links a,
.footer-contact a {
  color: #e8e2d9;
  text-decoration: none;
}

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

.footer-contact p {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
}

.footer-copy {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(201, 168, 124, 0.22);
  font-size: 0.85rem;
  color: #9a9288;
}

/* Layout */
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.wrap-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  min-height: 60vh;
}

.section {
  padding: 4.5rem 0;
}

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

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

.section-navy {
  background: var(--navy);
  color: #e8e2d9;
}

.section-navy h2,
.section-navy h3 {
  color: var(--ivory);
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.85rem;
  font-weight: 500;
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 62ch;
}

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

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.split-top {
  align-items: start;
}

.media-frame {
  position: relative;
}

.media-frame img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.media-frame.portrait img,
.cover-img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.media-frame.wide img,
.hero-photo {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  width: 100%;
}

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

.instructor-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.8rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  color: var(--navy);
}

.btn-primary {
  background: var(--navy);
  color: var(--ivory);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: #243650;
  color: var(--ivory);
}

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

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

.btn-gold {
  background: transparent;
  color: var(--ivory);
  border-color: var(--gold-light);
}

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

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.text-link {
  font-weight: 500;
  color: var(--navy);
}

/* Hero — editorial, not two-CTA */
.hero-editorial {
  padding: 4.25rem 0 2rem;
}

.hero-editorial .split {
  gap: 3.5rem;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  align-items: center;
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-kicker span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
}

.hero-editorial h1 {
  margin-bottom: 1rem;
  max-width: 14ch;
}

.hero-editorial .lede {
  font-size: 1.08rem;
}

.session-note {
  margin-top: 1.75rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--muted);
}

.session-note strong {
  color: var(--navy);
  font-weight: 500;
}

.metric-card {
  position: absolute;
  left: -1.25rem;
  bottom: -1.4rem;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.15rem 1.3rem 1.2rem;
  max-width: 230px;
  box-shadow: var(--shadow);
}

.metric-card .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--navy);
  display: block;
  margin-bottom: 0.35rem;
}

.metric-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

/* Cards / grids */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

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

.card-body h3 {
  margin: 0;
}

.card-body p {
  color: var(--muted);
  font-size: 0.98rem;
}

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

.card-body .text-link {
  margin-top: auto;
  padding-top: 0.6rem;
}

/* Principles / benefits later on home */
.principle-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

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

.principle-list h3 {
  margin-bottom: 0.35rem;
}

.principle-list p {
  color: var(--muted);
}

/* Testimonials */
.quote-block {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.6rem 1.7rem 1.5rem;
  height: 100%;
}

.quote-block blockquote {
  margin: 0 0 1.1rem;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.45;
  color: var(--navy);
}

.quote-block.short blockquote {
  font-size: 1.12rem;
}

.quote-attr {
  font-size: 0.9rem;
  color: var(--muted);
}

.quote-attr strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
}

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

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

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

.price-card.featured {
  border-color: var(--navy);
  background: var(--navy);
  color: #e8e2d9;
}

.price-card.featured h3,
.price-card.featured .price {
  color: var(--ivory);
}

.price-card.featured .eyebrow {
  color: var(--gold-light);
}

.price {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--navy);
  margin: 0.2rem 0 0.15rem;
  line-height: 1;
}

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

.price-card.featured .price span {
  color: #b8b0a6;
}

.price-card ul {
  margin: 1.1rem 0 1.4rem;
  padding-left: 1.05rem;
  color: inherit;
  flex: 1;
}

.price-note {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

/* Reviews / case studies */
.case {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.case img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.case-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

/* Blog */
.article-hero img {
  aspect-ratio: 21 / 9;
  object-fit: cover;
  width: 100%;
  margin: 1.5rem 0 2rem;
}

.prose {
  max-width: var(--measure);
}

.prose h2,
.prose h3 {
  margin-top: 1.8em;
}

.prose h2:first-child,
.prose h3:first-child {
  margin-top: 0;
}

.prose li + li {
  margin-top: 0.35em;
}

.meta-row {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}

/* Forms */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.field {
  margin-bottom: 1.05rem;
}

.field label {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
  font-weight: 500;
}

.field .hint {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.82rem;
}

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

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

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

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

.form-status {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
}

.form-status-success {
  background: var(--success-bg);
  color: var(--success);
  border: 1px solid #c5d9cc;
}

.form-status-error {
  background: var(--error-bg);
  color: var(--error);
  border: 1px solid #e2c4c4;
}

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

.address-block h2 {
  font-size: 1.5rem;
}

/* Course detail */
.module-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.module-list li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0.8rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

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

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

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--navy);
}

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

.outcomes {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0 0 1.5rem;
  list-style: none;
}

.outcomes li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--muted);
}

.outcomes li::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 0.55em;
}

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

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--paper);
  border-top: 1px solid var(--line-strong);
  box-shadow: 0 -12px 30px rgba(27, 42, 65, 0.08);
}

.cookie-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.15rem 1.5rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem 2rem;
  align-items: center;
}

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

.cookie-banner-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.cookie-fallback {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0 1.75rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

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

th {
  font-weight: 500;
  color: var(--navy);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* 404 */
.page-404 {
  padding: 6rem 1.5rem 7rem;
  text-align: center;
}

.page-404 .code {
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 7rem);
  color: var(--gold-light);
  line-height: 1;
  margin: 0;
}

.page-404 h1 {
  max-width: 16ch;
  margin: 0.4rem auto 0.8rem;
}

.page-404 p {
  color: var(--muted);
  max-width: 42ch;
  margin: 0 auto 1.5rem;
}

/* Page headers */
.page-head {
  padding: 3.5rem 0 1.5rem;
}

.page-head h1 {
  max-width: 18ch;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-row div {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.stat-row .num {
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--navy);
  display: block;
  line-height: 1.1;
}

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

.notice {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 1rem 1.15rem;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 980px) {
  .footer-inner,
  .split,
  .card-grid,
  .price-grid,
  .contact-layout,
  .case,
  .stat-row,
  .card-grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-editorial h1 {
    max-width: none;
  }

  .metric-card {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

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

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

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 1.5rem 1.1rem;
    gap: 0;
  }

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

  .site-nav a {
    padding: 0.55rem 0;
    border-bottom: 1px solid var(--line);
  }

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

  .header-inner {
    position: relative;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (min-width: 700px) and (max-width: 980px) {
  .card-grid,
  .price-grid,
  .card-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
