:root {
  --bg: #fff6f4;
  --bg-soft: #f3f8f5;
  --bg-blush: #fde8eb;
  --surface: #ffffff;
  --ink: #3a3436;
  --ink-soft: #6b6164;
  --line: #eadfe1;
  --rose: #e891a0;
  --rose-deep: #d4727f;
  --sage: #7ba89a;
  --sage-deep: #5f8f81;
  --peach: #f6c9b8;
  --mint: #cfe8df;
  --shadow: 0 12px 30px rgba(88, 58, 66, 0.08);
  --shadow-soft: 0 6px 18px rgba(88, 58, 66, 0.06);
  --radius: 22px;
  --radius-sm: 14px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", "Segoe 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(circle at 12% 8%, rgba(246, 201, 184, 0.45), transparent 32%),
    radial-gradient(circle at 88% 0%, rgba(207, 232, 223, 0.5), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #fff9f7 48%, var(--bg-soft) 100%);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

a:hover {
  color: var(--rose-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;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255, 246, 244, 0.86);
  border-bottom: 1px solid rgba(234, 223, 225, 0.8);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  background:
    radial-gradient(circle at 70% 30%, var(--sage) 0 28%, transparent 29%),
    linear-gradient(145deg, var(--bg-blush), #fff);
  box-shadow: inset 0 0 0 1px rgba(232, 145, 160, 0.25);
}

.brand-text {
  font-size: 0.98rem;
}

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

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

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

.nav-cta {
  background: var(--rose);
  color: #fff !important;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}

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

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  border-radius: 0.85rem;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
}

.nav-toggle-bar {
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

main {
  overflow: clip;
}

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

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

.hero-copy {
  padding: 1rem 0 1.5rem;
}

.brand-kicker {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 34rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.25rem;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  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(--rose), #efb0bb);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

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

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-soft);
}

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

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

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

.hero-caption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.45);
  border-block: 1px solid rgba(234, 223, 225, 0.7);
}

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

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

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

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

.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(234, 223, 225, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

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

.card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--mint);
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}

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

.benefit {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(234, 223, 225, 0.65);
}

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

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

.proof-item {
  text-align: center;
  background: linear-gradient(180deg, #fff, var(--bg-blush));
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
  box-shadow: var(--shadow-soft);
}

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

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

.quote {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(234, 223, 225, 0.7);
}

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

.quote footer {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.cta-band {
  margin: 1rem 0 3rem;
  border-radius: 2rem;
  padding: 2.2rem;
  background:
    linear-gradient(135deg, rgba(232, 145, 160, 0.18), rgba(123, 168, 154, 0.2)),
    var(--surface);
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

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

.page-hero p {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.prose {
  max-width: 46rem;
}

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

.prose h3 {
  margin-top: 1.4rem;
  font-size: 1.25rem;
}

.table-wrap {
  overflow-x: auto;
  margin: 1.2rem 0 1.8rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
}

th,
td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--bg-blush);
  font-size: 0.92rem;
}

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

.price-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(234, 223, 225, 0.75);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price-card.featured {
  background: linear-gradient(180deg, #fff, #fff1f3);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

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

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

.price span {
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-family: var(--font-body);
}

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

.form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(234, 223, 225, 0.75);
  display: grid;
  gap: 1rem;
}

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

label {
  font-weight: 800;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  font: inherit;
  background: #fffaf9;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(232, 145, 160, 0.45);
  border-color: var(--rose);
}

.field-error {
  color: #b24757;
  font-size: 0.88rem;
  min-height: 1.1em;
}

.form-status {
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-weight: 700;
}

.form-status.success {
  background: var(--mint);
  color: var(--sage-deep);
}

.form-status.error {
  background: #fde2e6;
  color: #9d3646;
}

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

.info-panel {
  background: linear-gradient(180deg, #fff, var(--bg-soft));
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.module-list,
.faq-list {
  display: grid;
  gap: 0.9rem;
}

.module,
.faq-item {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-soft);
}

.instructor {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.2rem;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
}

.instructor img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 1.2rem;
}

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

.case-study {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(234, 223, 225, 0.7);
}

.blog-meta {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.footer-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.footer-heading {
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.footer-blurb,
.footer-meta {
  color: rgba(247, 236, 238, 0.82);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-links a,
.footer-meta a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover,
.footer-meta a:hover {
  color: var(--peach);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(247, 236, 238, 0.7);
  font-size: 0.92rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 720px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: rise 0.35s ease;
}

.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));
  background: #fde2e6;
  color: #9d3646;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  font-weight: 700;
}

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

.not-found h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
}

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

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

@media (max-width: 960px) {
  .hero-split,
  .card-grid,
  .pricing-grid,
  .quote-grid,
  .contact-layout,
  .footer-grid,
  .benefit-list,
  .proof-row {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 1rem;
    right: 1rem;
    background: var(--surface);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-split,
  .card-grid,
  .pricing-grid,
  .quote-grid,
  .contact-layout,
  .footer-grid,
  .benefit-list,
  .proof-row {
    grid-template-columns: 1fr;
  }

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

  .brand-text {
    max-width: 11rem;
  }
}
