:root {
  --bg: #f6f0e8;
  --bg-deep: #ebe2d4;
  --surface: #fffbf6;
  --ink: #2f2a24;
  --muted: #6b635a;
  --line: #e0d5c8;
  --sage: #5a7d62;
  --sage-deep: #3f5a45;
  --copper: #c17f4e;
  --honey: #e8c9a8;
  --mist: rgba(90, 125, 98, 0.12);
  --shadow: 0 12px 32px rgba(47, 42, 36, 0.08);
  --radius: 1.1rem;
  --radius-lg: 1.75rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", "Segoe UI", sans-serif;
  --max: 70rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(232, 201, 168, 0.45), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(90, 125, 98, 0.18), transparent 50%),
    var(--bg);
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--sage-deep);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

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

p {
  margin: 0 0 1em;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--sage);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(246, 240, 232, 0.88);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.15rem;
}

.brand__mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.7rem;
  background:
    linear-gradient(145deg, var(--sage), var(--sage-deep));
  box-shadow: inset 0 0 0 3px rgba(255, 251, 246, 0.25);
}

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--sage);
  color: #fffbf6;
  box-shadow: 0 8px 20px rgba(90, 125, 98, 0.28);
}

.btn--primary:hover {
  background: var(--sage-deep);
  color: #fff;
}

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

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

.btn--copper {
  background: var(--copper);
  color: #fff;
}

.btn--small {
  padding: 0.45rem 0.95rem;
  font-size: 0.9rem;
}

.hero {
  padding: 3.5rem 0 2.5rem;
}

.hero--statement {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 14ch;
  margin-bottom: 0.4em;
}

.hero__lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 38rem;
}

.hero__panel {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  min-height: 18rem;
}

.hero__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 18rem;
  animation: soft-rise 1.1s var(--ease) both;
}

.hero__caption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 251, 246, 0.92);
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
}

.page-hero {
  padding: 2.75rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.page-hero p {
  color: var(--muted);
  max-width: 40rem;
}

.section {
  padding: 3rem 0;
}

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

.section__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.75rem;
}

.section__head p {
  color: var(--muted);
  max-width: 32rem;
  margin: 0;
}

.soft-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

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

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

.benefit {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(165deg, var(--surface), var(--bg-deep));
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease);
}

.benefit:hover {
  transform: translateY(-4px);
}

.benefit h3 {
  font-size: 1.2rem;
}

.benefit p {
  color: var(--muted);
  margin: 0;
}

.course-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.course-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

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

.course-card__body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.course-card__body h3 {
  font-size: 1.15rem;
  margin: 0;
}

.course-card__body p {
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  background: var(--mist);
  color: var(--sage-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.quote-stack {
  display: grid;
  gap: 1rem;
}

.quote {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.35rem 1.5rem;
}

.quote p {
  font-size: 1.05rem;
}

.quote footer {
  color: var(--muted);
  font-size: 0.92rem;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.stat {
  background: rgba(255, 251, 246, 0.7);
  border: 1px dashed var(--line);
  border-radius: 1rem;
  padding: 0.9rem 1.15rem;
  min-width: 8rem;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--sage-deep);
}

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

.cta-band {
  margin: 2rem 0 3.5rem;
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(120deg, rgba(90, 125, 98, 0.16), rgba(193, 127, 78, 0.18)),
    var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.cta-band h2 {
  margin: 0 0 0.35em;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
}

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

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-card--featured {
  border-color: var(--sage);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #fffbf6, #f0ebe1);
}

.price-card h2 {
  font-size: 1.4rem;
  margin: 0;
}

.price-card .amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--sage-deep);
}

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

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

.prose {
  max-width: 46rem;
}

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

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

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

.prose th {
  background: var(--bg-deep);
}

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

.blog-item {
  display: grid;
  grid-template-columns: 12rem 1fr;
  gap: 1.25rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.blog-item__body {
  padding: 1rem 1.2rem 1rem 0;
}

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

.instructor {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.25rem;
  align-items: center;
}

.instructor img {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--honey);
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.7rem;
}

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

.field {
  margin-bottom: 1rem;
}

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

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

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

.field-error {
  color: #9b3d2e;
  font-size: 0.88rem;
  min-height: 1.1em;
  margin-top: 0.25rem;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
}

.form-status--ok {
  background: rgba(90, 125, 98, 0.15);
  color: var(--sage-deep);
}

.form-status--err {
  background: rgba(155, 61, 46, 0.12);
  color: #9b3d2e;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

.address-block {
  white-space: pre-wrap;
}

.site-footer {
  margin-top: 3rem;
  background: #2f2a24;
  color: #efe7db;
  padding: 3rem 0 1.5rem;
}

.site-footer a {
  color: #e8c9a8;
  text-decoration: none;
}

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

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.footer-blurb,
.footer-address {
  color: #cbbfaf;
  font-style: normal;
}

.footer-label {
  font-weight: 700;
  margin-bottom: 0.55rem;
}

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

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

.site-footer__base {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #b7aa99;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 40rem;
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  animation: soft-rise 0.5s var(--ease) both;
}

.cookie-banner__inner {
  display: grid;
  gap: 0.9rem;
}

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

.inline-error {
  background: #f8e4df;
  color: #7a2f24;
  padding: 0.75rem 1rem;
  margin: 0;
}

.module-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.module-list li {
  background: var(--surface);
  border-left: 4px solid var(--sage);
  border-radius: 0 0.9rem 0.9rem 0;
  padding: 0.9rem 1rem;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-study {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 1.6rem;
  margin-bottom: 1.25rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1.25rem;
}

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

.center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

@keyframes soft-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-6px);
  }
}

.float-soft {
  animation: drift 3.5s ease-in-out infinite alternate;
}

@media (min-width: 900px) {
  .hero--statement {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

@media (max-width: 960px) {
  .grid-3,
  .price-grid,
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

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

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

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

  .grid-3,
  .grid-2,
  .price-grid,
  .site-footer__grid,
  .blog-item {
    grid-template-columns: 1fr;
  }

  .blog-item__body {
    padding: 0 1.1rem 1.1rem;
  }

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