*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #FAF6F0;
  --cream-dark: #F0E9DF;
  --terracotta: #C4724A;
  --terracotta-dark: #A85E38;
  --clay-dark: #3D2C24;
  --clay-mid: #6B4C3B;
  --text: #4A3728;
  --text-muted: #8C7B72;
  --sage: #7A9B78;
  --sage-light: #E8F0E7;
  --white: #FFFFFF;
  --border: rgba(74, 55, 40, 0.12);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(61, 44, 36, 0.08);
  --shadow: 0 4px 20px rgba(61, 44, 36, 0.12);
  --shadow-lg: 0 8px 40px rgba(61, 44, 36, 0.16);

  --container: 1100px;
  --section-gap: 96px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--clay-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--terracotta-dark); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--section-gap) 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196, 114, 74, 0.35);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 114, 74, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}
.btn-outline:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clay-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--terracotta); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--terracotta); }

.header-cta { display: flex; align-items: center; }

.hero {
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-label {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  margin-bottom: 20px;
}

.hero-title .accent { color: var(--terracotta); }

.hero-desc {
  font-size: 1.1rem;
  color: var(--clay-mid);
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.hero-img-wrap {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-badge-text strong {
  display: block;
  font-weight: 600;
  color: var(--clay-dark);
  font-size: 0.92rem;
}

.hero-badge-text span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 { margin-bottom: 16px; }

.section-header p {
  color: var(--clay-mid);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

.for-whom {
  background: var(--white);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.audience-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.audience-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.audience-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--clay-dark);
}

.audience-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.outcome-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--terracotta);
}

.outcome-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--terracotta);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}

.outcome-item h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.outcome-item p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.55;
}

.format {
  background: var(--clay-dark);
  color: var(--cream);
}

.format h2, .format h3, .format h4 {
  color: var(--cream);
}

.format .section-label {
  color: #D4936E;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.format-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background 0.2s;
}

.format-card:hover {
  background: rgba(255, 255, 255, 0.11);
}

.format-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.format-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--cream);
}

.format-card p {
  color: rgba(250, 246, 240, 0.65);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.program {
  background: var(--cream-dark);
}

.program-list {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.program-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
  cursor: default;
}

.program-item:hover { transform: translateX(4px); }

.program-step {
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.program-text h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.program-text p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.showcase-img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.showcase-text .section-label { text-align: left; }
.showcase-text h2 { margin-bottom: 20px; }
.showcase-text p { color: var(--clay-mid); line-height: 1.75; }

.showcase-list {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}

.showcase-list li::before {
  content: "✓";
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.author {
  background: var(--white);
}

.author-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}

.author-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 4px solid var(--cream-dark);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--cream-dark);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.author-name {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.author-role {
  color: var(--terracotta);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.author-bio {
  color: var(--clay-mid);
  line-height: 1.75;
}

.author-facts {
  display: flex;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fact strong {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--terracotta);
}

.fact span {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 100px;
  line-height: 1.4;
}

.faq {
  background: var(--cream-dark);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--clay-dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--terracotta); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--terracotta);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-a p {
  color: var(--clay-mid);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

.lead-form-section {
  background: linear-gradient(150deg, var(--terracotta) 0%, #A85E38 100%);
  color: var(--white);
}

.lead-form-section h2 {
  color: var(--white);
}

.lead-form-section .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.lead-form-section .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

.form-wrap {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clay-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196, 114, 74, 0.15);
  background: var(--white);
}

.form-group input.error {
  border-color: #e05252;
}

.form-error-msg {
  font-size: 0.8rem;
  color: #e05252;
  margin-top: 4px;
  display: none;
}

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

.form-submit-row {
  margin-top: 4px;
}

.form-submit-row .btn {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px;
}

.form-consent {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

.form-consent a {
  color: var(--text-muted);
  text-decoration: underline;
}

.site-footer {
  background: var(--clay-dark);
  color: rgba(250, 246, 240, 0.75);
  padding: 56px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
}

.footer-brand .logo {
  color: var(--cream);
  font-size: 1.3rem;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.6;
  max-width: 340px;
  color: rgba(250, 246, 240, 0.6);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: rgba(250, 246, 240, 0.65);
  font-size: 0.87rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(250, 246, 240, 0.5);
}

.footer-legal p { margin-bottom: 2px; }

.footer-legal a {
  color: rgba(250, 246, 240, 0.55);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.footer-legal a:hover {
  color: rgba(250, 246, 240, 0.85);
  text-decoration-color: currentColor;
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(250, 246, 240, 0.5);
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.footer-links a:hover {
  color: rgba(250, 246, 240, 0.85);
  text-decoration-color: currentColor;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: min(680px, calc(100vw - 32px));
  background: var(--clay-dark);
  color: rgba(250, 246, 240, 0.9);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-lg);
  opacity: 1;
  transition: opacity 0.4s, transform 0.4s;
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  pointer-events: none;
}

.cookie-text {
  font-size: 0.87rem;
  line-height: 1.55;
  flex: 1;
}

.cookie-text a {
  color: #D4936E;
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--terracotta);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 20px;
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.cookie-accept:hover { background: var(--terracotta-dark); }

.cookie-decline {
  background: transparent;
  color: rgba(250, 246, 240, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  padding: 9px 16px;
  font-size: 0.87rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}

.cookie-decline:hover {
  color: rgba(250, 246, 240, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
}

.legal-page {
  min-height: 100vh;
  padding: 80px 0;
}

.legal-page h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  margin-bottom: 8px;
}

.legal-date {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 48px;
  display: block;
}

.legal-body {
  max-width: 720px;
}

.legal-body h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--clay-dark);
}

.legal-body h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--clay-dark);
}

.legal-body p {
  color: var(--clay-mid);
  line-height: 1.75;
}

.legal-body ul {
  color: var(--clay-mid);
  line-height: 1.75;
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-body ul li { margin-bottom: 6px; }

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
}

.success-card {
  max-width: 500px;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 24px;
}

.success-card h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--clay-dark);
}

.success-card p {
  color: var(--clay-mid);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--clay-dark);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

@media (max-width: 900px) {
  :root { --section-gap: 72px; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-img-wrap { order: -1; }

  .hero-badge {
    bottom: -12px;
    left: 12px;
  }

  .showcase-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .author-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .author-avatar {
    margin: 0 auto;
  }

  .author-facts {
    justify-content: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  :root { --section-gap: 60px; }

  .header-nav {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 16px;
  }

  .header-nav.open { display: flex; }

  .header-nav a {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .hamburger { display: flex; }

  .header-cta { display: none; }

  .hero-cta { flex-direction: column; align-items: flex-start; }

  .hero-badge { display: none; }

  .form-wrap { padding: 28px 20px; }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .cookie-btns { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }

  .footer-links { flex-direction: column; gap: 8px; }
}