:root {
  --blush: #f7c5c0;
  --peach: #f3d5c0;
  --cream: #fff7f2;
  --mist: #f4ebe4;
  --sage: #b8d4c8;
  --sage-deep: #7fa894;
  --rose: #e8a09a;
  --ink: #4a3532;
  --ink-soft: #6b534e;
  --muted: #8a736d;
  --card: #ffffff;
  --shadow: 0 12px 32px rgba(74, 53, 50, 0.08);
  --shadow-soft: 0 6px 18px rgba(74, 53, 50, 0.06);
  --radius: 1.35rem;
  --radius-sm: 0.85rem;
  --radius-pill: 999px;
  --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(247, 197, 192, 0.45), transparent 55%),
    radial-gradient(ellipse 70% 40% at 90% 0%, rgba(184, 212, 200, 0.4), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--mist) 48%, #f8efe8 100%);
  min-height: 100vh;
  line-height: 1.65;
}

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

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

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

p {
  margin: 0 0 1rem;
  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: 1rem;
  top: -3rem;
  background: var(--ink);
  color: #fff;
  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: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 247, 242, 0.82);
  border-bottom: 1px solid rgba(232, 160, 154, 0.25);
}

.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);
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--blush), var(--peach) 45%, var(--sage));
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.nav-toggle {
  display: none;
  background: var(--card);
  border: 1px solid rgba(232, 160, 154, 0.35);
  border-radius: 0.75rem;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  gap: 5px;
  cursor: pointer;
  flex-direction: column;
  padding: 0;
}

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

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

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--rose), var(--blush));
  color: #fff !important;
  padding: 0.55rem 1rem !important;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
}

.nav-cta:hover {
  filter: brightness(1.03);
}

main {
  padding-bottom: 4rem;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #e8928a, #f0b5a8);
  color: #fff;
  box-shadow: 0 10px 24px rgba(232, 146, 138, 0.35);
}

.btn-secondary {
  background: var(--card);
  color: var(--ink);
  border: 1.5px solid rgba(184, 212, 200, 0.8);
  box-shadow: var(--shadow-soft);
}

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

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

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

.section {
  padding: 3.5rem 0;
}

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

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

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

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

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

.soft-panel {
  background: rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  border: 1px solid rgba(247, 197, 192, 0.35);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

/* Home hero — asymmetric statement composition */
.hero-home {
  padding: 3rem 0 2rem;
}

.hero-home-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: stretch;
}

.hero-copy {
  padding: 1rem 0;
  animation: rise-in 0.7s ease both;
}

.hero-brand-line {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
  background: linear-gradient(120deg, var(--ink) 20%, #9a6b64 70%, var(--sage-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-statement {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  color: var(--ink-soft);
  font-weight: 600;
  max-width: 28rem;
  margin-bottom: 1.25rem;
}

.hero-visual {
  position: relative;
  border-radius: calc(var(--radius) + 0.4rem);
  overflow: hidden;
  min-height: 340px;
  box-shadow: var(--shadow);
  animation: float-soft 5.5s ease-in-out infinite;
}

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

.hero-float-note {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  background: rgba(255, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-soft);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  border: 1px solid rgba(184, 212, 200, 0.5);
}

.course-card img,
.blog-card img,
.instructor-avatar {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.instructor-avatar {
  aspect-ratio: 1;
  border-radius: 50%;
  width: 120px;
  height: 120px;
}

.meta {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

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

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

.tier-card.featured {
  background: linear-gradient(165deg, #fff 0%, #fff1ec 55%, #eef7f2 100%);
  border: 1.5px solid rgba(232, 160, 154, 0.45);
  transform: translateY(-6px);
}

.tier-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
}

.tier-list li {
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
  color: var(--ink-soft);
}

.tier-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--sage);
}

.quote-card {
  padding: 1.5rem;
}

.quote-card blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.stars {
  color: #d4a017;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

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

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.85rem);
}

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

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

label {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}

input,
textarea,
select {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(74, 53, 50, 0.15);
  background: #fff;
  color: var(--ink);
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--sage);
  outline-offset: 1px;
  border-color: var(--sage-deep);
}

.field-error {
  color: #b5473f;
  font-size: 0.85rem;
  font-weight: 600;
  min-height: 1.2em;
}

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

.form-status.success {
  display: block;
  background: rgba(184, 212, 200, 0.45);
  color: #2f5c48;
}

.form-status.error {
  display: block;
  background: rgba(247, 197, 192, 0.55);
  color: #8a3530;
}

.inline-error {
  background: rgba(247, 197, 192, 0.55);
  color: #8a3530;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin: 0.75rem 0;
  font-weight: 600;
}

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

.legal-content ul {
  color: var(--ink-soft);
}

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

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th, td {
  text-align: left;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(74, 53, 50, 0.08);
  font-size: 0.92rem;
}

th {
  background: rgba(247, 197, 192, 0.35);
  color: var(--ink);
}

.faq details {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.65rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(247, 197, 192, 0.3);
}

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

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

.module-list li {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  margin-bottom: 0.65rem;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--blush);
}

.site-footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(243, 213, 192, 0.35));
  border-top: 1px solid rgba(232, 160, 154, 0.25);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.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.25rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

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

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

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

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

.footer-contact {
  font-size: 0.92rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(74, 53, 50, 0.08);
  font-size: 0.88rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  max-width: 640px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(74, 53, 50, 0.18);
  border: 1px solid rgba(247, 197, 192, 0.55);
  padding: 1.15rem 1.25rem;
  animation: rise-in 0.45s ease both;
}

.cookie-banner p {
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

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

.case-study {
  padding: 1.75rem;
}

.case-study h3 {
  margin-top: 0;
}

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

.not-found h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  background: linear-gradient(120deg, var(--rose), var(--sage-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.illus-blob {
  width: 72px;
  height: 72px;
  border-radius: 40% 60% 55% 45%;
  background: linear-gradient(135deg, var(--blush), var(--sage));
  margin-bottom: 1rem;
  animation: morph 8s ease-in-out infinite;
}

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

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

@keyframes morph {
  0%, 100% { border-radius: 40% 60% 55% 45%; }
  50% { border-radius: 55% 45% 40% 60%; }
}

.fade-section {
  animation: rise-in 0.65s ease both;
}

@media (max-width: 900px) {
  .hero-home-layout,
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255, 247, 242, 0.97);
    border-bottom: 1px solid rgba(232, 160, 154, 0.25);
    padding: 0.75rem 1rem 1.25rem;
    display: none;
  }

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

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }

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