:root {
  --bg: #fff6f1;
  --bg-soft: #ffe9e0;
  --surface: #ffffff;
  --ink: #3a322e;
  --ink-soft: #6a5c55;
  --coral: #e8897a;
  --coral-deep: #d46b5c;
  --peach: #ffd4c8;
  --mint: #9fd4c4;
  --mint-deep: #6fb89f;
  --blush: #f7c5bc;
  --cream: #fffaf7;
  --shadow: 0 10px 28px rgba(90, 60, 50, 0.08);
  --shadow-soft: 0 4px 14px rgba(90, 60, 50, 0.06);
  --radius: 1.35rem;
  --radius-sm: 0.85rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", "Apple SD Gothic Neo", sans-serif;
  --header-h: 4.25rem;
  --max: 70rem;
}

*,
*::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%, #ffe0d4 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 95% 5%, #d8f0e8 0%, transparent 50%),
    var(--bg);
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--coral-deep);
  text-decoration-thickness: 0.08em;
  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.25;
  color: var(--ink);
}

p {
  margin: 0 0 1rem;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--coral);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 246, 241, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 137, 122, 0.18);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

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

.brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, var(--mint), transparent 55%),
    radial-gradient(circle at 70% 65%, var(--coral), var(--peach));
  box-shadow: var(--shadow-soft);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 650;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

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

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

.nav-toggle span {
  display: block;
  width: 1.4rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--cream);
    border-bottom: 1px solid rgba(232, 137, 122, 0.2);
    padding: 0.75rem 1.25rem 1.25rem;
    display: none;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: block;
    animation: softDrop 0.28s ease;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.55rem;
  }
}

@keyframes softDrop {
  from { opacity: 0; transform: translateY(-0.4rem); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

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

.float-soft {
  animation: floatSoft 5.5s ease-in-out infinite;
}

/* Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

main {
  min-height: 60vh;
}

.section {
  padding: 4rem 0;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-bottom: 0.65rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-body);
  font-weight: 750;
  font-size: 0.98rem;
  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(--coral), var(--coral-deep));
  color: #fff;
  box-shadow: 0 8px 20px rgba(212, 107, 92, 0.28);
}

.btn-primary:hover {
  color: #fff;
}

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--peach);
  box-shadow: var(--shadow-soft);
}

.btn-ghost:hover {
  color: var(--coral-deep);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Cards */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(255, 212, 200, 0.55);
}

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

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

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

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.card p {
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
}

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

/* Home hero — full-bleed visual plane */
.hero-home {
  position: relative;
  min-height: min(88vh, 42rem);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-home__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-home__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-home__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 246, 241, 0.25) 0%, rgba(255, 246, 241, 0.55) 45%, rgba(255, 246, 241, 0.92) 100%),
    linear-gradient(90deg, rgba(255, 246, 241, 0.75) 0%, rgba(255, 246, 241, 0.2) 55%);
}

.hero-home__content {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.25rem 3.5rem;
}

.hero-home .brand-hero {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.hero-home h1 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 500;
  max-width: 28rem;
  margin: 0 0 0.85rem;
  color: var(--ink-soft);
}

.hero-home .hero-support {
  max-width: 26rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}

/* Page heroes (inner) */
.page-hero {
  padding: 3.5rem 0 2rem;
}

.page-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin: 0 0 0.75rem;
}

/* Benefits / soft panels */
.soft-panel {
  background: linear-gradient(145deg, #fff, var(--bg-soft));
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 212, 200, 0.45);
}

.soft-panel h3 {
  margin-top: 0;
}

.icon-blob {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, var(--mint), var(--peach));
}

/* Quote / proof */
.quote-block {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--mint);
}

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

.quote-meta {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-style: normal;
  margin: 0;
}

.stars {
  color: var(--coral);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

/* Pricing */
.price-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  align-items: stretch;
}

.price-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 212, 200, 0.55);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: linear-gradient(165deg, #fff 0%, #ffe8df 100%);
  border-color: var(--coral);
  transform: scale(1.02);
}

.price-card h3 {
  margin: 0 0 0.35rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: 0.6rem 0;
}

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

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

.price-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 1.5rem;
}

/* Forms */
.form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 212, 200, 0.5);
  max-width: 36rem;
}

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

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--peach);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 137, 122, 0.22);
}

.form-group textarea {
  min-height: 8rem;
  resize: vertical;
}

.field-error {
  color: #b33a2e;
  font-size: 0.86rem;
  margin-top: 0.3rem;
  display: none;
}

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

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
  border-color: #d45a4c;
}

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

.form-status.is-success {
  display: block;
  background: #e5f6ef;
  color: #1f6b52;
}

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

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

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

.contact-aside {
  background: linear-gradient(160deg, var(--bg-soft), #e8f5f0);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-aside address {
  font-style: normal;
  margin-bottom: 1rem;
  color: var(--ink-soft);
}

/* Blog / article */
.article-hero img {
  width: 100%;
  max-height: 22rem;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.prose {
  max-width: 42rem;
}

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

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

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

/* Legal */
.legal {
  max-width: 46rem;
}

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

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

.legal th,
.legal td {
  border: 1px solid rgba(232, 137, 122, 0.2);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal th {
  background: var(--bg-soft);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 34rem;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: 0 16px 40px rgba(90, 60, 50, 0.16);
  border: 1px solid rgba(255, 212, 200, 0.7);
  animation: riseIn 0.4s ease;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

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

.inline-error {
  background: #fde8e4;
  color: #8f2f24;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin: 0.75rem 0;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  background: linear-gradient(180deg, transparent, #ffe8df 18%);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(232, 137, 122, 0.15);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 650;
  margin: 0 0 0.35rem;
}

.footer-tag {
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
}

.footer-cols {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  margin-bottom: 2rem;
}

.footer-cols h2 {
  font-size: 0.95rem;
  margin: 0 0 0.65rem;
}

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

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

.footer-cols a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
}

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

.footer-cols address {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-top: 1px solid rgba(232, 137, 122, 0.2);
  padding-top: 1rem;
}

/* Misc */
.two-col {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

@media (max-width: 760px) {
  .two-col {
    grid-template-columns: 1fr;
  }

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

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

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

.module-list li {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 212, 200, 0.45);
}

.module-list strong {
  display: block;
  margin-bottom: 0.25rem;
}

.faq details {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.15rem;
  margin-bottom: 0.65rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 212, 200, 0.45);
}

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

.faq details p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin: 1.5rem 0;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.85rem;
  color: var(--coral-deep);
}

.stat-item span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.not-found {
  text-align: center;
  padding: 6rem 1.25rem;
}

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

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.illus-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.illus-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
