:root {
  --ivory: #f4efe6;
  --paper: #fbf8f2;
  --stone: #e7dfd2;
  --ink: #1c2430;
  --ink-soft: #3a4452;
  --muted: #6c645b;
  --gold: #a07d45;
  --gold-deep: #845f2e;
  --forest: #2c4640;
  --white: #fffdf8;
  --line: rgba(28, 36, 48, 0.12);
  --line-strong: rgba(28, 36, 48, 0.22);
  --shadow: 0 22px 60px rgba(28, 36, 48, 0.08);
  --radius: 2px;
  --header-h: 4.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Karla, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  min-height: 100vh;
}

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

a {
  color: var(--forest);
  text-underline-offset: 0.18em;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

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 1rem;
}

.muted {
  color: var(--muted);
}

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

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(760px, calc(100% - 2.5rem));
  margin-inline: auto;
}

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

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

[data-include="header"] {
  min-height: var(--header-h);
}

[data-include="footer"] {
  min-height: 16rem;
}

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

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

.wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.03em;
}

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

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

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

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

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

.nav-toggle span {
  display: block;
  width: 1.05rem;
  height: 1px;
  background: var(--ink);
  margin: 0.28rem auto;
}

.include-error,
.js-error,
.form-status.error,
.inline-error {
  background: #f6e8e4;
  color: #6e2e2e;
  border: 1px solid #e2c2ba;
  padding: 0.85rem 1rem;
  margin: 0.75rem 0;
}

.form-status.success {
  background: #e7efe9;
  color: #234034;
  border: 1px solid #c3d6ca;
  padding: 0.85rem 1rem;
  margin: 0.75rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.45rem;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  border: 1px solid var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

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

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

.hero-editorial {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: end;
  padding: 3.5rem 0 2.5rem;
}

.hero-copy .rule {
  width: 3rem;
  height: 2px;
  background: var(--gold);
  margin: 0 0 1.4rem;
  border: 0;
}

.hero-copy h1 {
  margin-bottom: 1.1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.hero-meta strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-frame {
  position: relative;
}

.hero-frame img {
  width: 100%;
  height: 34rem;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: var(--paper);
  padding: 0.7rem 0.9rem;
  font-size: 0.82rem;
  max-width: 16rem;
  color: var(--ink-soft);
}

.band {
  padding: 4rem 0;
}

.band-ivory {
  background: var(--ivory);
}

.band-forest {
  background: var(--forest);
  color: #e8efe9;
}

.band-forest h2,
.band-forest h3 {
  color: #f7f3ea;
}

.band-forest .muted,
.band-forest p {
  color: #d5e0d8;
}

.band-forest .btn-ghost {
  color: #f7f3ea;
  border-color: rgba(247, 243, 234, 0.45);
}

.band-forest .btn-ghost:hover {
  background: #f7f3ea;
  color: var(--ink);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.card-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0;
  box-shadow: var(--shadow);
}

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

.card-body {
  padding: 1.25rem 1.3rem 1.4rem;
}

.card h3 {
  margin-bottom: 0.45rem;
}

.card h3 a {
  color: inherit;
  text-decoration: none;
}

.card h3 a:hover {
  color: var(--gold-deep);
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.4rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

.quote {
  background: var(--white);
  border-left: 2px solid var(--gold);
  padding: 1.4rem 1.5rem;
}

.quote p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.45;
  font-style: italic;
}

.quote footer {
  font-size: 0.88rem;
  color: var(--muted);
  font-style: normal;
  font-family: Karla, sans-serif;
}

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

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

.benefit-list {
  display: grid;
  gap: 1.25rem;
}

.benefit-list article {
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--line);
}

.benefit-list h3 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

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

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

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

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: inherit;
}

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

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

.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fbf6ec 0%, var(--white) 42%);
}

.price-card .amount {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.3rem;
  margin: 0.6rem 0 0.2rem;
}

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

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

.review-stack {
  display: grid;
  gap: 1.25rem;
}

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

.review.long {
  padding: 1.8rem 1.7rem;
}

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

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

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

.modules {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

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

.modules summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.modules summary::-webkit-details-marker {
  display: none;
}

.modules summary::before {
  content: "+";
  display: inline-block;
  width: 1.2rem;
  color: var(--gold-deep);
}

.modules details[open] summary::before {
  content: "–";
}

.outcome-list {
  columns: 2;
  gap: 2rem;
  margin: 0 0 1.5rem;
  padding-left: 1.15rem;
}

.instructor {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.4rem;
  align-items: center;
  background: var(--ivory);
  padding: 1.3rem;
}

.instructor img {
  width: 8rem;
  height: 8rem;
  object-fit: cover;
  border-radius: 50%;
}

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

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

form.contact-form,
form.refund-note {
  display: grid;
  gap: 0.95rem;
}

label span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

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

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

.field-error {
  color: #8a2f2f;
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

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

.address-block {
  background: var(--ivory);
  padding: 1.5rem 1.4rem;
}

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

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

.blog-row {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.blog-row img {
  width: 100%;
  height: 100%;
  min-height: 10rem;
  object-fit: cover;
}

.blog-row .card-body {
  padding: 1.2rem 1.2rem 1.3rem 0;
}

.article-cover {
  width: 100%;
  height: min(28rem, 58vw);
  object-fit: cover;
  margin: 0 0 2rem;
}

.article-body h2 {
  margin-top: 2rem;
}

.article-body h3 {
  margin-top: 1.4rem;
}

.legal h2 {
  margin-top: 2rem;
}

.legal table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1rem 0 1.5rem;
}

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

.legal th {
  background: var(--ivory);
}

.site-footer {
  background: #171e28;
  color: #d8d2c8;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-grid {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 0.8fr 0.8fr;
  gap: 2rem;
}

.footer-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  color: #f6f1e8;
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: #eadfcf;
  text-decoration: none;
  display: block;
  margin: 0.25rem 0;
}

.site-footer a:hover {
  color: #c9a56a;
}

.site-footer h2 {
  color: #c9a56a;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: Karla, sans-serif;
  font-weight: 600;
}

.footer-copy {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  color: #9a9388;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  background: var(--ink);
  color: #f3eee6;
  padding: 1.1rem 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  box-shadow: var(--shadow);
  max-width: 1120px;
  margin-inline: auto;
}

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

.cookie-banner a {
  color: #e2c48a;
}

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

.cookie-actions .btn {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.cookie-actions .btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(251, 248, 242, 0.45);
}

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

.error-page .code {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5rem, 12vw, 8rem);
  line-height: 0.9;
  color: var(--gold);
  margin: 0;
}

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

.stat {
  border-top: 2px solid var(--gold);
  padding-top: 0.85rem;
}

.stat b {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.prose-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

@media (max-width: 960px) {
  .hero-editorial,
  .page-hero.with-image,
  .split,
  .quote-grid,
  .contact-layout,
  .case-study,
  .price-grid,
  .card-grid,
  .card-grid.four,
  .stat-row,
  .footer-grid,
  .blog-row {
    grid-template-columns: 1fr;
  }

  .hero-frame img,
  .page-hero img,
  .split img {
    height: 18rem;
  }

  .outcome-list {
    columns: 1;
  }

  .nav-toggle {
    display: inline-block;
  }

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

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

  .cookie-banner {
    grid-template-columns: 1fr;
    left: 0.6rem;
    right: 0.6rem;
  }
}

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

  * {
    transition: none !important;
    animation: none !important;
  }
}
