:root {
  --sage: #4a6b52;
  --sage-deep: #355040;
  --sage-soft: #d9e5db;
  --linen: #f3efe6;
  --stone: #ebe4d6;
  --ink: #2a3028;
  --muted: #5f675c;
  --amber: #b8924a;
  --amber-soft: #f0e2c4;
  --white: #fffcf7;
  --danger: #9b3d3d;
  --ok: #3d6b4f;
  --radius: 1.25rem;
  --radius-sm: 0.75rem;
  --shadow: 0 12px 40px rgba(42, 48, 40, 0.08);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;
  --max: 1120px;
}

*,
*::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%, #e4efe6 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, #f0e6d0 0%, transparent 45%),
    linear-gradient(180deg, var(--linen) 0%, #efe9dc 40%, var(--linen) 100%);
  min-height: 100vh;
  line-height: 1.65;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--sage);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(243, 239, 230, 0.88);
  border-bottom: 1px solid rgba(74, 107, 82, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

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

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.7rem;
  background:
    linear-gradient(145deg, var(--sage) 0%, var(--sage-deep) 100%);
  box-shadow: inset 0 -6px 0 rgba(255, 252, 247, 0.15);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0.45rem 0.55rem 0.45rem auto;
  width: 0.35rem;
  border-radius: 999px;
  background: var(--amber);
}

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

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

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

.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 0.55rem 1rem !important;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(74, 107, 82, 0.22);
}

.nav-cta:hover {
  background: var(--sage-deep);
}

.nav-toggle {
  display: none;
  background: var(--white);
  border: 1px solid rgba(74, 107, 82, 0.2);
  border-radius: 0.7rem;
  width: 2.6rem;
  height: 2.6rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after { top: 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  padding: 0.85rem 1.4rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(74, 107, 82, 0.25);
}

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

.btn-secondary {
  background: var(--white);
  color: var(--sage-deep);
  border: 1px solid rgba(74, 107, 82, 0.25);
}

.btn-secondary:hover {
  background: var(--sage-soft);
  color: var(--sage-deep);
}

.btn-amber {
  background: var(--amber);
  color: var(--white);
}

.section {
  padding: 4.5rem 0;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.15rem;
  max-width: 40rem;
}

.panel {
  background: rgba(255, 252, 247, 0.78);
  border: 1px solid rgba(74, 107, 82, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.soft-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(74, 107, 82, 0.1);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.soft-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(42, 48, 40, 0.12);
}

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

.soft-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.tag {
  display: inline-block;
  background: var(--sage-soft);
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

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

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

.hero-home {
  padding: 3.5rem 0 2rem;
}

.hero-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
  min-height: min(78vh, 720px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
  animation: rise 0.8s ease both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--sage-deep);
  margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 500;
  color: var(--ink);
  max-width: 18ch;
}

.hero-copy .lead {
  margin-top: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 0.4rem);
  overflow: hidden;
  min-height: 360px;
  animation: fade-in 1s ease 0.15s both;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 40%, rgba(53, 80, 64, 0.35));
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: -1rem;
  position: relative;
  z-index: 2;
}

.proof-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(74, 107, 82, 0.1);
  text-align: center;
  animation: rise 0.7s ease both;
}

.proof-item:nth-child(2) { animation-delay: 0.1s; }
.proof-item:nth-child(3) { animation-delay: 0.2s; }

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--sage-deep);
  margin-bottom: 0.25rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.featured-course {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.featured-course img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.benefit-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  background: rgba(255, 252, 247, 0.7);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  border: 1px solid rgba(74, 107, 82, 0.08);
}

.benefit-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.8rem;
  background: var(--sage-soft);
  color: var(--sage-deep);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.quote-block {
  background: linear-gradient(135deg, var(--sage-deep), var(--sage));
  color: var(--white);
  border-radius: calc(var(--radius) + 0.25rem);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.quote-block::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 6rem;
  position: absolute;
  top: -0.6rem;
  left: 1rem;
  opacity: 0.18;
  line-height: 1;
}

.quote-block p {
  color: rgba(255, 252, 247, 0.95);
  font-size: 1.15rem;
  position: relative;
}

.quote-block cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 700;
  color: var(--amber-soft);
}

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

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 16ch;
}

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

.page-hero.with-image img {
  border-radius: var(--radius);
  aspect-ratio: 5 / 4;
  object-fit: cover;
  width: 100%;
}

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

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(74, 107, 82, 0.12);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: linear-gradient(180deg, #fffdf8 0%, #eef5ef 100%);
  border-color: var(--sage);
  transform: scale(1.03);
  box-shadow: var(--shadow);
}

.price-card h2 {
  font-size: 1.35rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--sage-deep);
  margin: 0.5rem 0;
}

.price-amount span {
  font-size: 1rem;
  color: var(--muted);
  font-family: var(--font-body);
}

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

.price-card li + li {
  margin-top: 0.45rem;
}

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

.review-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(74, 107, 82, 0.1);
}

.review-item.wide {
  grid-column: 1 / -1;
}

.stars {
  color: var(--amber);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.case-study {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(74, 107, 82, 0.1);
}

.case-study img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.case-study-body {
  padding: 1.5rem 1.5rem 1.5rem 0.5rem;
}

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

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row label {
  font-weight: 700;
  color: var(--ink);
}

.form-row input,
.form-row select,
.form-row textarea {
  font: inherit;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(74, 107, 82, 0.25);
  background: var(--white);
  color: var(--ink);
  width: 100%;
}

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

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--sage);
  outline-offset: 1px;
}

.field-error {
  color: var(--danger);
  font-size: 0.9rem;
  min-height: 1.2em;
}

.form-status {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
}

.form-status.success {
  display: block;
  background: #e5f2e9;
  color: var(--ok);
}

.form-status.error {
  display: block;
  background: #f7e6e6;
  color: var(--danger);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.75rem;
}

.contact-details dt {
  font-weight: 800;
  color: var(--ink);
  margin-top: 1rem;
}

.contact-details dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.legal-content {
  max-width: 48rem;
}

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

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.legal-content th,
.legal-content td {
  text-align: left;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(74, 107, 82, 0.12);
  vertical-align: top;
  font-size: 0.95rem;
}

.legal-content th {
  background: var(--sage-soft);
  color: var(--sage-deep);
}

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

.module-list li {
  counter-increment: module;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.15rem 1rem 3.5rem;
  position: relative;
  border: 1px solid rgba(74, 107, 82, 0.1);
}

.module-list li::before {
  content: counter(module, decimal-leading-zero);
  position: absolute;
  left: 1rem;
  top: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--amber);
}

.faq details {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  border: 1px solid rgba(74, 107, 82, 0.1);
  margin-bottom: 0.75rem;
}

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

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

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

.blog-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.article {
  max-width: 44rem;
}

.article img.cover {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 21 / 9;
  object-fit: cover;
  margin: 1.5rem 0;
}

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

.not-found h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--sage);
  margin-bottom: 0.25rem;
}

.site-footer {
  margin-top: 4rem;
  background: var(--sage-deep);
  color: rgba(255, 252, 247, 0.88);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.footer-tag,
.footer-address,
.site-footer p {
  color: rgba(255, 252, 247, 0.78);
}

.footer-heading {
  font-size: 0.95rem;
  color: var(--amber-soft);
  margin-bottom: 0.85rem;
}

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

.footer-links a,
.site-footer a {
  color: rgba(255, 252, 247, 0.88);
  text-decoration: none;
}

.footer-links a:hover,
.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 252, 247, 0.12);
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 640px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid rgba(74, 107, 82, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(42, 48, 40, 0.18);
  padding: 1.25rem 1.35rem;
  display: none;
  animation: rise 0.4s ease both;
}

.cookie-banner.is-visible {
  display: block;
}

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

.inline-error {
  background: #f7e6e6;
  color: var(--danger);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin: 0.75rem 0;
}

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

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 960px) {
  .hero-band,
  .featured-course,
  .page-hero.with-image,
  .contact-layout,
  .case-study,
  .price-grid,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .case-study-body {
    padding: 1.25rem;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

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

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

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 252, 247, 0.98);
    border-bottom: 1px solid rgba(74, 107, 82, 0.12);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-cta {
    text-align: center;
  }
}
