:root {
  --blush: #fdf4ef;
  --peach: #f7e4dc;
  --coral: #e8917a;
  --coral-deep: #d4715a;
  --sage: #7e9e8e;
  --sage-soft: #c9d9cf;
  --cream: #fff9f5;
  --ink: #3a3532;
  --muted: #6f6560;
  --card: #ffffff;
  --shadow: 0 12px 32px rgba(90, 60, 50, 0.08);
  --shadow-soft: 0 6px 18px rgba(90, 60, 50, 0.06);
  --radius: 1.35rem;
  --radius-sm: 0.85rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
  --max: 1120px;
  --header-h: 4.5rem;
}

*,
*::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% 0%, #fde8df 0%, transparent 45%),
    radial-gradient(ellipse at 90% 8%, #e5efe8 0%, transparent 40%),
    linear-gradient(180deg, var(--blush) 0%, var(--cream) 48%, #f6ebe4 100%);
  min-height: 100vh;
  line-height: 1.65;
}

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

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

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(253, 244, 239, 0.86);
  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;
}

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

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 28%, transparent 29%),
    radial-gradient(circle at 65% 35%, #fff 0 28%, transparent 29%),
    linear-gradient(145deg, var(--coral), #f2b4a2);
  box-shadow: var(--shadow-soft);
}

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

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

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

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

.nav-cta {
  background: var(--coral);
  color: #fff !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, background 0.25s ease;
}

.nav-cta:hover {
  background: var(--coral-deep);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

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

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

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

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

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

.btn-soft {
  background: var(--sage-soft);
  color: var(--ink);
}

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

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(58, 53, 50, 0.18);
}

.section {
  padding: 4.5rem 0;
}

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

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

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

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-body {
  padding: 1.35rem 1.45rem 1.55rem;
}

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

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

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

.soft-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(232, 145, 122, 0.16);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

/* Home hero — brand-first, full-bleed visual */
.hero-home {
  position: relative;
  min-height: min(92vh, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 0 0 2.5rem 2.5rem;
}

.hero-home-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(58, 53, 50, 0.15) 0%, rgba(58, 53, 50, 0.55) 100%),
    url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
}

.hero-home-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3.5rem;
  color: #fff;
  animation: rise-in 0.9s ease both;
}

.hero-home-content .brand-hero {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  margin: 0 0 0.6rem;
  color: #fff;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.hero-home-content .hero-line {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  max-width: 28rem;
  color: rgba(255, 249, 245, 0.92);
  margin-bottom: 1.5rem;
}

.hero-home-content .btn-primary {
  animation: soft-pulse 3.2s ease-in-out infinite;
}

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

@keyframes soft-pulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(232, 145, 122, 0.35); }
  50% { box-shadow: 0 12px 28px rgba(232, 145, 122, 0.55); }
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: -2.25rem;
  position: relative;
  z-index: 2;
}

.trust-pill {
  background: var(--card);
  border-radius: 1.25rem;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
  min-width: 9.5rem;
  animation: float-y 5s ease-in-out infinite;
}

.trust-pill:nth-child(2) { animation-delay: 0.4s; }
.trust-pill:nth-child(3) { animation-delay: 0.8s; }

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

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

.quote-block {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--ink);
  line-height: 1.35;
  margin: 0;
}

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

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.75rem 0 1rem;
}

.chip {
  display: inline-flex;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--peach);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
}

.chip-sage {
  background: var(--sage-soft);
}

.price-tag {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0.4rem 0 1rem;
}

.site-footer {
  margin-top: 3rem;
  background: linear-gradient(180deg, rgba(247, 228, 220, 0.55), rgba(201, 217, 207, 0.45));
  border-top: 1px solid rgba(126, 158, 142, 0.25);
  padding: 3rem 0 1.5rem;
}

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

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

.footer-tag {
  font-size: 0.95rem;
}

.footer-heading {
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

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

.footer-links li + li,
.footer-legal li + li {
  margin-top: 0.45rem;
}

.footer-links a,
.footer-legal a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
}

.footer-address {
  font-style: normal;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.footer-contact {
  margin: 0.25rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(58, 53, 50, 0.08);
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

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

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

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

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

.form label {
  font-weight: 700;
  font-size: 0.92rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1.5px solid rgba(58, 53, 50, 0.14);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.95rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(232, 145, 122, 0.45);
  border-color: var(--coral);
}

.field-error {
  color: #b2453a;
  font-size: 0.85rem;
  min-height: 1.15em;
}

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

.form-status.is-success {
  display: block;
  background: #e5efe8;
  color: #2f5a48;
}

.form-status.is-error {
  display: block;
  background: #fde4df;
  color: #8a3228;
}

.inline-error {
  margin: 0.75rem 0;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: #fde4df;
  color: #8a3228;
  font-weight: 600;
}

.faq details {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 0.75rem;
}

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

.faq details p {
  margin: 0.75rem 0 0;
}

.pricing-card {
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: linear-gradient(165deg, #fff, #fde8df);
  border: 1.5px solid rgba(232, 145, 122, 0.35);
}

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

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

.review-card {
  padding: 1.5rem;
}

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

.avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  object-fit: cover;
}

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

.module-list li {
  background: var(--card);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  box-shadow: var(--shadow-soft);
}

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

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
}

.legal-content th,
.legal-content td {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(58, 53, 50, 0.08);
  vertical-align: top;
}

.legal-content th {
  background: var(--peach);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 420px;
  margin-left: auto;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(90, 60, 50, 0.16);
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(232, 145, 122, 0.22);
  animation: rise-in 0.45s ease both;
}

.cookie-banner p {
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-actions .btn {
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

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

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

.blog-prose {
  max-width: 42rem;
}

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

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

.illus-blob {
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: float-y 6s ease-in-out infinite;
}

.case-study {
  padding: 1.75rem;
}

@media (max-width: 900px) {
  .grid-3,
  .footer-grid,
  .illus-row {
    grid-template-columns: 1fr;
  }

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

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(253, 244, 239, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.35rem;
    border-bottom: 1px solid rgba(232, 145, 122, 0.18);
    gap: 0.35rem;
  }

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

  .site-nav a {
    padding: 0.65rem 0.4rem;
  }

  .nav-cta {
    text-align: center;
    margin-top: 0.35rem;
  }
}
