:root {
  --bg: #fff6f2;
  --bg-soft: #f3faf6;
  --bg-blush: #ffe8e1;
  --surface: #ffffff;
  --ink: #3a3532;
  --ink-soft: #6a615c;
  --sage: #6ba89a;
  --sage-deep: #4f8a7d;
  --coral: #e07a6e;
  --coral-deep: #c86358;
  --peach: #f2c6a0;
  --mint: #b8ddd0;
  --line: rgba(58, 53, 50, 0.08);
  --shadow: 0 12px 40px rgba(79, 90, 80, 0.08);
  --shadow-soft: 0 6px 20px rgba(79, 90, 80, 0.06);
  --radius: 1.4rem;
  --radius-sm: 0.9rem;
  --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 80% 50% at 10% -10%, rgba(232, 122, 110, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 0%, rgba(107, 168, 154, 0.16), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 45%, var(--bg) 100%);
  min-height: 100vh;
  line-height: 1.65;
}

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(--coral-deep);
}

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

p {
  margin: 0 0 1rem;
}

.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(14px);
  background: rgba(255, 246, 242, 0.84);
  border-bottom: 1px solid var(--line);
}

.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;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.7rem;
  background:
    radial-gradient(circle at 70% 30%, var(--coral), transparent 45%),
    radial-gradient(circle at 30% 70%, var(--peach), transparent 50%),
    var(--sage);
  box-shadow: var(--shadow-soft);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

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

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

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

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

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

.nav-toggle {
  display: none;
  border: 0;
  background: var(--surface);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  place-items: center;
  gap: 0.3rem;
}

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

main {
  overflow: clip;
}

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

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

.hero-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1rem;
}

.hero-brand {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  margin: 0 0 1rem;
  max-width: 12ch;
  color: var(--ink);
}

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

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 0.4rem);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transform: scale(1.02);
  animation: drift 18s ease-in-out infinite alternate;
}

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

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

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

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

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

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

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

.section {
  padding: 3.5rem 0;
}

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

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

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

.proof-band {
  padding: 1.5rem 0 0.5rem;
}

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

.proof-item {
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
}

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

.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(79, 90, 80, 0.12);
}

.card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mint);
}

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

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

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

.pill {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--bg-blush);
  color: var(--coral-deep);
  margin-bottom: 0.65rem;
}

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

.benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

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

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

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

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

  .split.reverse > :first-child {
    order: 2;
  }
}

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

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

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

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

.cta-panel {
  background: linear-gradient(135deg, rgba(107, 168, 154, 0.2), rgba(224, 122, 110, 0.16));
  border-radius: calc(var(--radius) + 0.5rem);
  padding: 2.25rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 1.5rem;
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid var(--line);
}

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

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

.footer-heading {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

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

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

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

.footer-links a:hover,
.footer-legal a:hover,
.site-footer a:hover {
  color: var(--coral-deep);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

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

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

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

.breadcrumb {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: stretch;
}

.price-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: linear-gradient(180deg, #fff, #f4fbf8);
  border-color: rgba(107, 168, 154, 0.35);
  transform: translateY(-6px);
}

.price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  margin: 0.5rem 0;
}

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

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

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

.form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  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 {
  font: inherit;
  padding: 0.8rem 0.95rem;
  border-radius: 0.85rem;
  border: 1.5px solid var(--line);
  background: #fffaf8;
  color: var(--ink);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: 2px solid rgba(107, 168, 154, 0.45);
  border-color: var(--sage);
}

.field-error {
  color: var(--coral-deep);
  font-size: 0.88rem;
  min-height: 1.2em;
}

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

.form-status.success {
  display: block;
  background: rgba(107, 168, 154, 0.18);
  color: var(--sage-deep);
}

.form-status.error {
  display: block;
  background: rgba(224, 122, 110, 0.16);
  color: var(--coral-deep);
}

.contact-panel {
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.modules {
  display: grid;
  gap: 0.85rem;
}

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

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

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

.legal {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

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

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

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

.legal th {
  background: rgba(107, 168, 154, 0.12);
}

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

.instructor {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.article {
  max-width: 720px;
}

.article-cover {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.25rem 0 1.75rem;
  box-shadow: var(--shadow);
}

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

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

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 520px;
  margin-inline: auto;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 18px 50px rgba(58, 53, 50, 0.18);
  border: 1px solid var(--line);
  display: none;
}

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

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

.inline-error {
  margin: 1rem auto;
  width: min(100% - 2rem, var(--max));
  background: rgba(224, 122, 110, 0.14);
  color: var(--coral-deep);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
}

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

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

.rating {
  color: var(--coral-deep);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.case-study {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(184, 221, 208, 0.25));
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
}

@keyframes drift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

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

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

.reveal {
  animation: fade-up 0.7s ease both;
}

.reveal-delay {
  animation-delay: 0.15s;
}

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

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

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

  .site-nav {
    display: none;
    position: absolute;
    top: calc(var(--header-h) + 0.35rem);
    left: 1rem;
    right: 1rem;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
  }

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

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

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

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