:root {
  --bg: #fff7f2;
  --bg-soft: #f8ebe3;
  --bg-mint: #e8f2ed;
  --surface: #ffffff;
  --ink: #3a322e;
  --ink-soft: #6f635c;
  --ink-faint: #9a8c84;
  --coral: #e39b8c;
  --coral-deep: #c97868;
  --peach: #f3c9b8;
  --blush: #f6ddd4;
  --sage: #9fbfb0;
  --sage-deep: #6f9484;
  --cream: #fff1ea;
  --line: rgba(58, 50, 46, 0.1);
  --shadow: 0 12px 32px rgba(90, 60, 48, 0.08);
  --shadow-soft: 0 6px 18px rgba(90, 60, 48, 0.06);
  --radius: 22px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
  --space: clamp(1rem, 2vw, 1.5rem);
  --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(circle at 12% 8%, rgba(243, 201, 184, 0.55), transparent 42%),
    radial-gradient(circle at 88% 4%, rgba(159, 191, 176, 0.35), transparent 38%),
    linear-gradient(180deg, var(--bg) 0%, #fff9f5 48%, var(--bg-soft) 100%);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
}

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

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);
  line-height: 1.2;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

ul, ol {
  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);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  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: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 247, 242, 0.82);
  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.7rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.05rem;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff8f5 0 22%, transparent 23%),
    radial-gradient(circle at 50% 50%, var(--sage) 0 48%, transparent 49%),
    var(--coral);
  box-shadow: var(--shadow-soft);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

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

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after { top: 6px; }

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

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

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

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

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

main {
  display: block;
}

.hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
}

.hero-home {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
}

.hero-home .container {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
}

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

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

.hero-lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 34ch;
  margin-bottom: 1.6rem;
}

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

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

@keyframes softZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

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

.rise {
  animation: riseIn 0.8s ease both;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 750;
  font-size: 0.98rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-pill);
  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-deep), var(--coral));
  color: #fff;
  box-shadow: var(--shadow-soft);
}

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  color: var(--ink);
  background: #fff;
}

.section {
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.45);
  border-block: 1px solid var(--line);
}

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

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

.section-head p {
  color: var(--ink-soft);
  margin: 0;
}

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

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

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

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

.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;
  margin-bottom: 0.4rem;
}

.card-body p {
  color: var(--ink-soft);
  margin-bottom: 0.9rem;
  font-size: 0.98rem;
}

.pill {
  display: inline-block;
  background: var(--bg-mint);
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.7rem;
}

.soft-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(246, 221, 212, 0.55));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}

.proof-item {
  text-align: center;
  padding: 1.2rem 0.8rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

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

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

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

.benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.benefit-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach), var(--blush));
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

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

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

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

.split-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.quote-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1.2fr 0.8fr;
}

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

.quote p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.45;
}

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

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

.page-hero {
  padding: clamp(2.2rem, 5vw, 3.8rem) 0 1.5rem;
}

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

.page-hero p {
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.breadcrumbs {
  font-size: 0.88rem;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: var(--ink-soft);
  text-decoration: none;
}

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

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

.price-card.featured {
  background: linear-gradient(165deg, #fff, var(--blush));
  border-color: rgba(227, 155, 140, 0.45);
  transform: translateY(-8px);
}

.price-card h2 {
  font-size: 1.45rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  margin: 0.4rem 0 0.8rem;
}

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

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

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

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

.form-row label {
  font-weight: 750;
  font-size: 0.92rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  font: inherit;
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  width: 100%;
}

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

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(227, 155, 140, 0.55);
  outline-offset: 1px;
}

.field-error {
  color: #b44a3c;
  font-size: 0.86rem;
  min-height: 1.1em;
}

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

.form-status.is-success {
  display: block;
  background: var(--bg-mint);
  color: var(--sage-deep);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
}

.info-block p {
  margin-bottom: 0.5rem;
}

.legal {
  max-width: 48rem;
}

.legal h2 {
  margin-top: 1.8rem;
  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 var(--line);
  padding: 0.75rem;
  text-align: left;
  vertical-align: top;
}

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

.module-list {
  display: grid;
  gap: 0.8rem;
}

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

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

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

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

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

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

.instructor {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.2rem;
  align-items: center;
}

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

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

.case-study {
  display: grid;
  gap: 1rem;
}

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

.site-footer {
  margin-top: 3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(248, 235, 227, 0.95));
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.5rem;
}

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

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

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

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

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

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

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

.footer-links a:hover,
.footer-bottom a:hover,
.footer-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 640px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.3rem;
  display: none;
}

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

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

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

.inline-error {
  margin: 1rem auto;
  width: min(100% - 2rem, var(--max));
  background: #fde8e4;
  color: #9a3d32;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
}

.not-found {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1rem;
}

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

.prose {
  max-width: 42rem;
}

.prose img {
  border-radius: var(--radius);
  margin: 1.4rem 0;
  box-shadow: var(--shadow-soft);
}

.meta {
  color: var(--ink-faint);
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
}

@media (max-width: 960px) {
  .hero-home .container,
  .split,
  .quote-grid,
  .contact-grid,
  .footer-grid,
  .pricing-grid,
  .card-grid,
  .proof-strip,
  .benefit-list {
    grid-template-columns: 1fr;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-h) + 0.4rem);
    left: 1rem;
    right: 1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.8rem;
    display: none;
  }

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

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

  .nav-list a {
    display: block;
    padding: 0.7rem 0.8rem;
    border-radius: var(--radius-sm);
  }

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

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

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