:root {
  --bg: #fff4f0;
  --bg-soft: #ffe9e2;
  --surface: #ffffff;
  --ink: #3a2a2c;
  --muted: #7a6468;
  --line: rgba(58, 42, 44, 0.1);
  --coral: #e8957a;
  --coral-deep: #d47866;
  --peach: #f5c6a5;
  --mint: #9fd0bf;
  --mint-deep: #6fa894;
  --blush: #f7d6d2;
  --shadow: 0 12px 32px rgba(90, 55, 50, 0.08);
  --shadow-soft: 0 6px 18px rgba(90, 55, 50, 0.06);
  --radius: 22px;
  --radius-sm: 14px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", "Segoe UI", 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(circle at 12% 8%, #ffe0d6 0%, transparent 42%),
    radial-gradient(circle at 88% 0%, #dff3ea 0%, transparent 38%),
    linear-gradient(180deg, var(--bg) 0%, #fff8f5 55%, var(--bg-soft) 100%);
  min-height: 100vh;
  line-height: 1.65;
}

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

a {
  color: var(--coral-deep);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

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

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

p {
  margin: 0 0 1em;
}

ul {
  margin: 0 0 1em;
  padding-left: 1.2em;
}

.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-main {
  padding-top: calc(var(--header-h) + 1.5rem);
  padding-bottom: 4rem;
}

.inline-error {
  background: #ffe1e1;
  color: #7a2e2e;
  padding: 0.75rem 1rem;
  margin: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid #f0b4b4;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255, 244, 240, 0.88);
  border-bottom: 1px solid var(--line);
}

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

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 35%, var(--coral) 0 38%, transparent 39%),
    radial-gradient(circle at 70% 35%, var(--mint) 0 38%, transparent 39%),
    radial-gradient(circle at 50% 72%, var(--peach) 0 36%, transparent 37%),
    #fce8e6;
  box-shadow: var(--shadow-soft);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.logo-text em {
  font-style: italic;
  color: var(--coral-deep);
  font-weight: 500;
}

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

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

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

.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);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--surface);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  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;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  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), #f0a790);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

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

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-mint {
  background: var(--mint);
  color: #1f4338;
}

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

/* Cards */
.card {
  background: var(--surface);
  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;
}

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

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

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--blush);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.section {
  padding: 3.2rem 0;
}

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

.section-title {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.section-lead {
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.05rem;
}

.eyebrow {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-bottom: 0.6rem;
}

/* Home hero — editorial asymmetric */
.hero-editorial {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: end;
  padding: 1rem 0 2.5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.hero-brand span {
  display: block;
  font-style: italic;
  color: var(--coral-deep);
  font-weight: 500;
  font-size: 0.72em;
}

.hero-statement {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  max-width: 28rem;
  margin-bottom: 1.4rem;
}

.hero-visual {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 360px;
  background: var(--blush);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  animation: drift 14s ease-in-out infinite alternate;
}

.hero-float {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 1rem 1.15rem;
  max-width: 220px;
  box-shadow: var(--shadow-soft);
  animation: rise 0.9s ease both;
}

.hero-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  margin-bottom: 0.15rem;
}

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

.proof-item {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  text-align: center;
}

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

.spotlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.75rem;
  align-items: center;
  background: var(--surface);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.spotlight img {
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.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.72);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--peach), var(--blush));
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.quote-board {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1.3fr 1fr;
}

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

.quote blockquote {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.quote.tall {
  background: linear-gradient(160deg, #fff, #fff1ec);
}

.quote .attr {
  color: var(--muted);
  font-size: 0.92rem;
}

.cta-band {
  background: linear-gradient(120deg, #f7c9ba, #cfeadf 55%, #f5d9c8);
  border-radius: 28px;
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  animation: softPulse 6s ease-in-out infinite;
}

.cta-band h2 {
  margin: 0 0 0.35rem;
}

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

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

.page-hero p {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.media-hero {
  border-radius: 28px;
  overflow: hidden;
  margin: 1rem 0 2rem;
  box-shadow: var(--shadow);
  max-height: 360px;
}

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

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

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

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

.price-card.featured {
  background: linear-gradient(180deg, #fff8f5, #ffe8e0);
  border-color: rgba(232, 149, 122, 0.45);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin-bottom: 0.25rem;
}

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

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

.price-card ul {
  flex: 1;
  margin-bottom: 1.25rem;
}

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

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

.review-card.wide {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.2rem;
  align-items: start;
}

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

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

.case-study {
  background: linear-gradient(145deg, #fff, #eaf7f1);
  border-radius: 28px;
  padding: 1.8rem;
  box-shadow: var(--shadow);
  margin-top: 1.5rem;
}

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

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

.module h4 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.faq details {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 0.95rem 1.1rem;
  margin-bottom: 0.7rem;
  border: 1px solid var(--line);
}

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

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

.instructor img {
  width: 140px;
  height: 140px;
  border-radius: 24px;
  object-fit: cover;
}

/* Forms */
.form-panel {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 1rem;
}

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

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  background: #fffaf8;
  color: var(--ink);
}

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

.field [aria-invalid="true"] {
  border-color: #d66;
  background: #fff5f5;
}

.field-error {
  color: #a33;
  font-size: 0.88rem;
  min-height: 1.1em;
  margin-top: 0.25rem;
}

.form-status {
  margin-top: 0.85rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #2f6b55;
}

.form-status.is-error {
  color: #a33;
}

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

.legal {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow-soft);
  max-width: 820px;
}

.legal h2 {
  margin-top: 1.6rem;
  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.65rem 0.7rem;
  text-align: left;
  vertical-align: top;
}

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

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

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

/* Footer */
.site-footer {
  background: #3a2a2c;
  color: #f8ebe7;
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}

.site-footer a {
  color: #f5c6a5;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 1.5rem;
}

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

.footer-tag,
.footer-contact {
  color: rgba(248, 235, 231, 0.8);
  font-size: 0.95rem;
}

.footer-heading {
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
  color: #fff;
}

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

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  color: rgba(248, 235, 231, 0.65);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  max-width: 720px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem;
  animation: rise 0.45s ease both;
}

.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

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

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

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

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

@keyframes softPulse {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.08);
  }
}

@media (max-width: 900px) {
  .hero-editorial,
  .spotlight,
  .quote-board,
  .two-col,
  .pricing-grid,
  .footer-grid,
  .review-card.wide,
  .instructor {
    grid-template-columns: 1fr;
  }

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

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

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(255, 248, 245, 0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

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

  .site-nav a {
    padding: 0.7rem 0.5rem;
  }

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

  .header-inner {
    position: relative;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
