:root {
  --blush: #f7d6cb;
  --peach: #fbeee6;
  --cream: #fff8f3;
  --mint: #c9ddd2;
  --sage: #8fafa0;
  --sage-deep: #5f8576;
  --coral: #e8917a;
  --coral-deep: #d66f56;
  --ink: #4a3b36;
  --ink-soft: #6f5c55;
  --muted: #9a857c;
  --white: #ffffff;
  --card: #fffdfb;
  --shadow: 0 12px 32px rgba(74, 59, 54, 0.08);
  --shadow-soft: 0 6px 18px rgba(74, 59, 54, 0.06);
  --radius: 22px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
  --max: 1120px;
  --header-h: 76px;
}

*,
*::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 at 12% 8%, rgba(247, 214, 203, 0.55), transparent 42%),
    radial-gradient(ellipse at 88% 0%, rgba(201, 221, 210, 0.45), transparent 38%),
    linear-gradient(180deg, var(--cream) 0%, var(--peach) 48%, #f6ebe3 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

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

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

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

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

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

ul, ol {
  color: var(--ink-soft);
}

.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: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 243, 0.84);
  border-bottom: 1px solid rgba(232, 145, 122, 0.18);
}

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

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

.logo-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.75rem;
  background:
    radial-gradient(circle at 70% 30%, var(--mint), transparent 55%),
    linear-gradient(145deg, var(--blush), var(--coral));
  box-shadow: var(--shadow-soft);
}

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

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 0.35rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

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

.nav-cta {
  background: var(--coral);
  color: var(--white) !important;
  padding: 0.55rem 1rem !important;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
}

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

.nav-toggle {
  display: none;
  background: var(--white);
  border: 1px solid rgba(232, 145, 122, 0.3);
  border-radius: 12px;
  width: 2.6rem;
  height: 2.6rem;
  cursor: pointer;
  padding: 0;
  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; }

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

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: rgba(255, 253, 251, 0.98);
    border-bottom: 1px solid rgba(232, 145, 122, 0.2);
    padding: 1rem;
    display: none;
  }

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

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }

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

.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;
  text-decoration: none;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--coral), #f0a48f);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--coral-deep), var(--coral));
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(143, 175, 160, 0.45);
}

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

.btn-ghost {
  background: transparent;
  color: var(--sage-deep);
  padding-inline: 0.8rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(247, 214, 203, 0.65);
  overflow: hidden;
}

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

.card-media {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  background: var(--mint);
}

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

.section {
  padding: 4.5rem 0;
}

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

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

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

@media (max-width: 860px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Hero — brand-forward, asymmetric */
.hero-home {
  padding: 3.5rem 0 2rem;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: end;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 1.2rem;
  color: var(--ink);
}

.hero-brand span {
  display: block;
  color: var(--coral-deep);
}

.hero-copy {
  font-size: 1.12rem;
  max-width: 28rem;
  margin-bottom: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.hero-visual {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow);
  animation: floatSoft 7s ease-in-out infinite;
}

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

.hero-blob {
  position: absolute;
  inset: auto -8% -12% auto;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(201, 221, 210, 0.75), transparent 70%);
  pointer-events: none;
}

@media (max-width: 860px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 260px;
  }

  .hero-visual img {
    min-height: 260px;
  }
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 1.4rem 1.6rem;
  background: rgba(255, 253, 251, 0.75);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 221, 210, 0.55);
  box-shadow: var(--shadow-soft);
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--ink);
}

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

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

.benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(247, 214, 203, 0.7);
  box-shadow: var(--shadow-soft);
}

.benefit-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, var(--mint), var(--blush));
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.quote-card {
  padding: 1.5rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(247, 214, 203, 0.65);
}

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

.quote-meta {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

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

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

.page-hero p {
  max-width: 40rem;
  font-size: 1.08rem;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.8rem 0 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  background: rgba(201, 221, 210, 0.45);
  color: var(--sage-deep);
  border-radius: var(--radius-pill);
  padding: 0.28rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
}

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

@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; }
}

.price-card {
  padding: 1.7rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(247, 214, 203, 0.7);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: linear-gradient(180deg, #fff7f3, #ffffff);
  border-color: rgba(232, 145, 122, 0.45);
  transform: translateY(-6px);
}

.price-card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--coral-deep);
  margin: 0.6rem 0 1rem;
}

.price-card ul {
  padding-left: 1.1rem;
  flex: 1;
  margin-bottom: 1.4rem;
}

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

.form-card {
  padding: 1.7rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(247, 214, 203, 0.7);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(154, 133, 124, 0.35);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid rgba(143, 175, 160, 0.55);
  border-color: var(--sage);
}

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

.field-error {
  color: #b1433a;
  font-size: 0.88rem;
  margin-top: 0.35rem;
  display: none;
}

.form-group.is-invalid .field-error {
  display: block;
}

.form-group.is-invalid input,
.form-group.is-invalid select,
.form-group.is-invalid textarea {
  border-color: #d8796f;
}

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

.form-status.is-success {
  display: block;
  background: rgba(201, 221, 210, 0.5);
  color: var(--sage-deep);
}

.form-status.is-error {
  display: block;
  background: rgba(232, 145, 122, 0.22);
  color: #9a3f34;
}

.contact-panel {
  padding: 1.5rem;
  background: linear-gradient(160deg, rgba(201, 221, 210, 0.4), rgba(247, 214, 203, 0.45));
  border-radius: var(--radius);
}

.legal-content {
  max-width: 48rem;
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(247, 214, 203, 0.65);
}

.legal-content h2 {
  margin-top: 1.8rem;
  font-size: 1.35rem;
}

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

.legal-content th,
.legal-content td {
  border: 1px solid rgba(154, 133, 124, 0.25);
  padding: 0.65rem 0.7rem;
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  background: rgba(201, 221, 210, 0.35);
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 1.5rem;
  background: rgba(255, 253, 251, 0.7);
  border-top: 1px solid rgba(232, 145, 122, 0.18);
}

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

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.footer-heading {
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.7rem;
}

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

.footer-links li,
.footer-contact li {
  margin-bottom: 0.45rem;
}

.footer-links a,
.footer-contact a {
  text-decoration: none;
  color: var(--ink-soft);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(154, 133, 124, 0.2);
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 720px;
  margin-inline: auto;
  background: var(--card);
  border: 1px solid rgba(232, 145, 122, 0.35);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.3rem;
  display: none;
  animation: slideUp 0.45s ease;
}

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

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

.inline-error {
  margin: 1rem auto;
  width: min(100% - 2rem, var(--max));
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(232, 145, 122, 0.22);
  color: #9a3f34;
}

.prose {
  max-width: 42rem;
}

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

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

.module-list li {
  padding: 1rem 1.1rem;
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(247, 214, 203, 0.7);
}

.faq details {
  background: var(--card);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(247, 214, 203, 0.7);
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.7rem;
}

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

.case-study {
  padding: 1.6rem;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(247, 214, 203, 0.65);
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.instructor {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  background: rgba(201, 221, 210, 0.28);
  border-radius: var(--radius);
}

.cta-band {
  margin: 2rem 0 0;
  padding: 2.2rem;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(232, 145, 122, 0.2), rgba(201, 221, 210, 0.45));
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.cta-band h2 {
  margin-bottom: 0.5rem;
}

.not-found {
  text-align: center;
  padding: 5rem 0;
}

.not-found h1 {
  font-size: clamp(3rem, 10vw, 5.5rem);
  color: var(--coral);
}

.blog-cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

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

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

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

@media (max-width: 800px) {
  .split-media { grid-template-columns: 1fr; }
}

.soft-panel {
  background: rgba(255, 253, 251, 0.8);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(201, 221, 210, 0.45);
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

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

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

.reveal {
  animation: fadeIn 0.7s ease both;
}

.reveal-delay {
  animation: fadeIn 0.9s ease 0.15s both;
}

.rating-stars {
  color: var(--coral-deep);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}
