:root {
  --bg: #f6efe8;
  --bg-soft: #faf6f1;
  --surface: #fffdfb;
  --ink: #2f2a27;
  --ink-soft: #5c534e;
  --muted: #8a7f78;
  --coral: #e07a6a;
  --coral-deep: #c45f50;
  --sage: #7ba89a;
  --sage-deep: #5e8a7d;
  --blush: #f0c9bf;
  --lilac: #d4c4d8;
  --cream-card: #fff9f5;
  --shadow: 0 12px 32px rgba(74, 55, 48, 0.08);
  --shadow-soft: 0 6px 18px rgba(74, 55, 48, 0.06);
  --radius: 22px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", "Trebuchet MS", sans-serif;
  --max: 1120px;
  --header-h: 76px;
}

*,
*::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(240, 201, 191, 0.55), transparent 55%),
    radial-gradient(ellipse 60% 40% at 95% 5%, rgba(212, 196, 216, 0.45), transparent 50%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(123, 168, 154, 0.18), transparent 55%),
    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: 1px;
  text-underline-offset: 3px;
}

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

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

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

ul, ol {
  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: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(246, 239, 232, 0.85);
  border-bottom: 1px solid rgba(224, 122, 106, 0.12);
}

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

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

.logo-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  background:
    linear-gradient(145deg, var(--coral), var(--blush)),
    var(--coral);
  box-shadow: inset 0 -6px 0 rgba(123, 168, 154, 0.55);
}

.logo-text {
  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 {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.35rem 0.2rem;
}

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

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

.nav-cta:hover {
  background: var(--coral-deep);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  position: relative;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.nav-toggle-bar::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.nav-toggle-bar::after {
  position: absolute;
  top: 6px;
  left: 0;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.98rem;
  cursor: pointer;
  text-decoration: none;
  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), #ef9484);
  color: #fff;
  box-shadow: 0 10px 24px rgba(224, 122, 106, 0.28);
}

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

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(123, 168, 154, 0.25);
}

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

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

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

/* Cards */
.card {
  background: var(--cream-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(240, 201, 191, 0.45);
  overflow: hidden;
}

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

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

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

.card p:last-child {
  margin-bottom: 0;
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

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

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  max-width: 18ch;
}

.section-lead {
  max-width: 58ch;
  font-size: 1.08rem;
}

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

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

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

@media (max-width: 860px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Home hero — brand-forward, asymmetric */
.hero-home {
  padding: 3.5rem 0 2rem;
}

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

.brand-hero {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 1.2rem;
  color: var(--ink);
}

.brand-hero span {
  display: block;
  color: var(--coral);
}

.hero-note {
  font-size: 1.15rem;
  max-width: 34ch;
  margin-bottom: 1.6rem;
}

.hero-visual {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
  animation: float-in 0.9s ease both;
}

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

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

@media (max-width: 860px) {
  .hero-shell {
    grid-template-columns: 1fr;
  }
}

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

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

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

.reveal-delay-1 { animation-delay: 0.12s; }
.reveal-delay-2 { animation-delay: 0.24s; }
.reveal-delay-3 { animation-delay: 0.36s; }

/* Soft quote strip */
.quote-strip {
  background: linear-gradient(120deg, rgba(224, 122, 106, 0.12), rgba(123, 168, 154, 0.14));
  border-radius: var(--radius);
  padding: 2rem 2.2rem;
  box-shadow: var(--shadow-soft);
}

.quote-strip blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  color: var(--ink);
  line-height: 1.35;
}

.quote-strip cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Feature pills / benefits */
.benefit-list {
  display: grid;
  gap: 1rem;
}

.benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 196, 216, 0.4);
}

.benefit-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--lilac), #efe8f1);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--coral-deep);
}

/* Stats */
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-soft);
}

.stat {
  flex: 1 1 140px;
  text-align: center;
}

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

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

/* Page heroes */
.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: 56ch;
  font-size: 1.08rem;
}

.media-banner {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 1.5rem 0 0;
}

.media-banner img {
  width: 100%;
  aspect-ratio: 21 / 8;
  object-fit: cover;
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

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

.price-card {
  background: var(--cream-card);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(240, 201, 191, 0.5);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: linear-gradient(180deg, #fff7f3, #f3ebe4);
  border-color: rgba(224, 122, 106, 0.35);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

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

.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--ink);
  margin: 0.6rem 0 1rem;
}

.price-amount span {
  font-size: 1rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 700;
}

.price-card ul {
  padding-left: 1.1rem;
  margin: 0 0 1.5rem;
  flex: 1;
}

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

.price-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1.5rem;
}

/* Reviews */
.review-grid {
  display: grid;
  gap: 1.2rem;
}

.review-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(123, 168, 154, 0.18);
}

.review-card.wide {
  grid-column: 1 / -1;
}

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

.review-meta {
  margin-top: 0.9rem;
  font-weight: 800;
  color: var(--ink);
  font-size: 0.95rem;
}

.case-study {
  background: linear-gradient(135deg, rgba(123, 168, 154, 0.15), rgba(240, 201, 191, 0.25));
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 1.5rem;
}

/* Forms */
.form-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(240, 201, 191, 0.4);
}

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

.form-group label {
  display: block;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid rgba(92, 83, 78, 0.18);
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}

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

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.field-error {
  color: #b4473a;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 0.35rem;
  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: #b4473a;
}

.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  display: none;
  font-weight: 700;
}

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

.form-status.error {
  display: block;
  background: rgba(180, 71, 58, 0.12);
  color: #8f2f24;
}

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

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

.contact-card {
  background: var(--cream-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.contact-card h2 {
  font-size: 1.35rem;
}

/* Blog */
.blog-list {
  display: grid;
  gap: 1.35rem;
}

.blog-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(212, 196, 216, 0.35);
  transition: transform 0.2s ease;
}

.blog-item:hover {
  transform: translateY(-3px);
  color: inherit;
}

.blog-item img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
}

.blog-item-body {
  padding: 1.2rem 1.2rem 1.2rem 0;
}

.blog-item h2 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.meta {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (max-width: 700px) {
  .blog-item {
    grid-template-columns: 1fr;
  }

  .blog-item-body {
    padding: 0 1.2rem 1.2rem;
  }
}

.prose {
  max-width: 68ch;
}

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

.prose h3 {
  margin-top: 1.5rem;
  font-size: 1.2rem;
}

.article-hero img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  margin: 1.25rem 0 1.75rem;
  box-shadow: var(--shadow);
}

/* Course detail */
.module-list {
  display: grid;
  gap: 0.85rem;
}

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

.module h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

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

.instructor img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

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

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

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

/* Legal */
.legal {
  max-width: 72ch;
}

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

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

.legal th,
.legal td {
  text-align: left;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(92, 83, 78, 0.1);
  vertical-align: top;
}

.legal th {
  background: rgba(240, 201, 191, 0.35);
  color: var(--ink);
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(240, 201, 191, 0.28));
  border-top: 1px solid rgba(224, 122, 106, 0.12);
}

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

.footer-tag,
.footer-address {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

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

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

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

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(92, 83, 78, 0.1);
  font-size: 0.9rem;
  color: var(--muted);
}

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

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

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 640px;
  margin-inline: auto;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(47, 42, 39, 0.16);
  border: 1px solid rgba(224, 122, 106, 0.2);
  padding: 1.25rem 1.35rem;
  display: none;
}

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

.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

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

.cookie-actions a {
  font-weight: 800;
  margin-right: auto;
}

/* 404 */
.error-page {
  text-align: center;
  padding: 5rem 0 4rem;
}

.error-page h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--coral);
  margin-bottom: 0.3rem;
}

.inline-error {
  background: rgba(180, 71, 58, 0.1);
  color: #8f2f24;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  margin: 0.75rem 0;
}

.chip {
  display: inline-block;
  background: rgba(123, 168, 154, 0.18);
  color: var(--sage-deep);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.6rem;
}

.stack-gap > * + * {
  margin-top: 1.25rem;
}

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

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

.soft-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.cta-band {
  background: linear-gradient(125deg, rgba(224, 122, 106, 0.18), rgba(123, 168, 154, 0.22));
  border-radius: 32px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.cta-band h2 {
  max-width: 18ch;
  margin-inline: auto;
}

.cta-band p {
  max-width: 48ch;
  margin-inline: auto;
}

.list-check {
  list-style: none;
  padding: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.55rem;
}

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