:root {
  --ivory: #f6f1ea;
  --paper: #fbf8f3;
  --white: #fffdf8;
  --ink: #1c1814;
  --ink-soft: #4a433c;
  --muted: #7a7268;
  --line: #e4dcd0;
  --gold: #a67c52;
  --gold-deep: #8b6340;
  --gold-pale: #ede4d6;
  --espresso: #2a241e;
  --wine: #6e3d3d;
  --ok: #2f5d3a;
  --err: #8a2f2f;
  --shadow: 0 18px 50px rgba(28, 24, 20, 0.08);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --wrap: 1120px;
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.7;
  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.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.6em;
}

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

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

h3 {
  font-size: 1.45rem;
}

p {
  margin: 0 0 1em;
}

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

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

.wide {
  width: min(100% - 2.4rem, 1280px);
  margin-inline: auto;
}

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

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

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

.inline-error {
  background: #f8e8e4;
  color: var(--err);
  padding: 0.7rem 1rem;
  margin: 0.5rem 0;
  border-left: 3px solid var(--err);
}

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

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.4rem;
}

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

.logo-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-mark {
  display: flex;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1.15rem;
}

.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);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: 0.45rem 0.8rem;
  font: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--ivory);
  padding: 0.78rem 1.25rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  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);
  border-color: var(--ink);
}

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

.btn-text {
  background: none;
  border: 0;
  color: var(--gold-deep);
  padding: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  text-decoration: none;
}

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

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 78vh;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  padding: clamp(2.5rem, 6vw, 5.5rem) clamp(1.2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--paper);
  border-right: 1px solid var(--line);
}

.hero-index {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

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

.hero-copy .lede {
  margin-bottom: 1.8rem;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.float-card {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  right: auto;
  max-width: 22rem;
  background: var(--white);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.float-card p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.35;
}

.float-card span {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.section {
  padding: clamp(3.2rem, 7vw, 6rem) 0;
}

.section-alt {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.stat {
  padding: 1.8rem 1.4rem;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.45rem;
}

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

.spotlight {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

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

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

.method-card {
  padding: 1.6rem 1.4rem 1.8rem;
  border-top: 2px solid var(--gold);
  background: var(--white);
}

.method-card .num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

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

.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: 1.2fr 1fr;
}

.card,
.course-card,
.blog-card,
.price-card,
.quote-card {
  background: var(--white);
  border: 1px solid var(--line);
}

.course-card img,
.blog-card img,
.page-hero img,
.article-cover img,
.avatar {
  width: 100%;
  object-fit: cover;
}

.course-card img {
  aspect-ratio: 16 / 10;
}

.blog-card img {
  aspect-ratio: 3 / 2;
}

.course-card,
.blog-card {
  display: flex;
  flex-direction: column;
}

.card-body,
.course-card .body,
.blog-card .body,
.price-card {
  padding: 1.2rem 1.25rem 1.4rem;
}

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

.course-card h3,
.blog-card h3 {
  margin-bottom: 0.4rem;
}

.course-card p,
.blog-card p {
  color: var(--ink-soft);
  flex-grow: 1;
}

.quotes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
}

.quote-card {
  padding: 1.4rem 1.3rem 1.5rem;
}

.quote-card p {
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.4;
  font-style: italic;
}

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

.visit-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.visit-strip address {
  font-style: normal;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.page-hero .copy {
  padding: clamp(2.4rem, 5vw, 4.5rem) clamp(1.2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-hero img {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.prose {
  max-width: 46rem;
}

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

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
}

.instructor {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.4rem;
  align-items: start;
  padding: 1.3rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.instructor img,
.avatar {
  width: 140px;
  height: 140px;
  object-fit: cover;
}

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

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

.modules .n {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 1.3rem;
}

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

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

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

.price-card.featured {
  border-color: var(--ink);
  background: var(--espresso);
  color: var(--ivory);
}

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

.price-card .amount {
  font-family: var(--serif);
  font-size: 2.4rem;
  margin: 0.4rem 0 0.8rem;
}

.price-card ul {
  padding-left: 1rem;
  color: inherit;
}

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

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

.review-item {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

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

.article {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.article-cover {
  margin-bottom: 2rem;
}

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

.blog-list .blog-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.4rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.blog-list .blog-row img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

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

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

.contact-card address {
  font-style: normal;
}

.field {
  margin-bottom: 1rem;
}

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

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

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

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

.form-status {
  margin-top: 1rem;
  padding: 0.8rem 0.9rem;
}

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

.form-status.is-error {
  background: #f8e8e4;
  color: var(--err);
}

.legal {
  max-width: 48rem;
}

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

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

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

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

.error-page h1 {
  font-size: clamp(4rem, 12vw, 8rem);
  margin-bottom: 0.2rem;
}

.site-footer {
  background: var(--espresso);
  color: #e8dfd4;
  padding: 3rem 0 1.4rem;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.3fr 0.8fr 0.8fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.footer-lede {
  color: #cfc4b6;
  max-width: 18rem;
}

.footer-address,
.site-footer p {
  color: #cfc4b6;
}

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

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

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

.footer-base {
  padding-top: 1.1rem;
  font-size: 0.88rem;
  color: #b8aea2;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: var(--espresso);
  color: #f3ebe1;
  border-top: 1px solid var(--gold);
  padding: 1.1rem 0;
}

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

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.cookie-banner p {
  margin: 0;
  max-width: 46rem;
}

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

.cookie-banner .btn-solid {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.cookie-banner .btn-ghost {
  border-color: #f3ebe1;
  color: #f3ebe1;
}

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

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

.tiny-note {
  font-size: 0.88rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .hero-split,
  .page-hero,
  .spotlight,
  .method-grid,
  .course-grid,
  .blog-grid,
  .price-grid,
  .quotes,
  .visit-strip,
  .two-col,
  .review-grid,
  .case-study,
  .contact-grid,
  .footer-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .blog-list .blog-row {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .site-header {
    position: sticky;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
}
