:root {
  --bg-main: #dbd0bc;
  --bg-soft: #f3e6e1;
  --card-bg: #ffffff;
  --card-border-color: #b89061;
  --footer-bg: #f9f1ed;

  --text-main: #3a2f2b;
  --text-main-h2: #262220;
  --text-muted: #7a6a66;
  --text-white: #f0ede6;
  --text-completed: #de2214;

  --accent: #c28f7a;
  --accent-active: #f0b49c;

  --radius-xl: 35px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

    /* Typography */
    --font-base: 1rem;
    --font-small: 0.875rem;
    --font-lead: 1.125rem;
    --font-h1: clamp(1.75rem, 5vw, 2.5rem);
    --font-h2: clamp(1.4rem, 4vw, 1.75rem);


    /* Line heights */
    --lh-body: 1.7;
    --lh-heading: 1.3;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
}

* {
  box-sizing: border-box;
}

main {
  padding-bottom: var(--space-xl);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  font-size: var(--font-base);
  line-height: var(--lh-body);
}


img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-md);
}



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

hr {
  border: none;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--card-border-color),
    transparent
  );
  opacity: 0.9;
  margin: var(--space-lg);
}


h1 {
  font-size: var(--font-h1);
  line-height: var(--lh-heading);
  margin-bottom: 4rem;
  font-weight: 400;
}

h2 {
  font-size: var(--font-h2);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-md);
  font-weight: 400;
}

.lead {
  text-align: center;
  font-size: var(--font-lead);
  margin-bottom: var(--space-md);
  color: var(--text-main-h2);
  }

  .lead-course-description {
    font-size: var(--font-lead);
    margin-bottom: var(--space-md);
    color: var(--text-main-h2);
  }

section {
  padding: var(--space-md) 0;
  margin: 0;
}

/* Audience */
.audience {
  background: var(--bg-main);
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;   /* 1 column → vertical stack */
  gap: var(--space-sm);
}

.course-detail p,
.course-detail ul {
  font-size: var(--font-lead);
  line-height: var(--lh-body);
  color: var(--text-main-h2);
  margin-bottom: var(--space-md);
}




.card,
.quote-card {
  background: var(--card-bg);
  color: var(--text-muted);
  padding: var(--space-md);
  border-radius: var(--radius-xl);
  border: 1px solid var(--card-border-color);
  text-align: center;

}


/* Split layout */
.split-layout {
  display: grid;
  gap: var(--space-lg);
}

.how-it-works-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  margin-bottom: var(--space-xs);
  padding-left: 1.5rem;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
}


.quote-card {
  background: var(--card-bg);
  padding: var(--space-md);
  border-radius: var(--radius-md);
}

/* FAQ + Contact */
.two-col {
  display: grid;
  gap: var(--space-lg);
}

details {
    margin-bottom: var(--space-sm);
    padding: var(--space-sm) 0;
}

summary {
    font-size: 1rem;
    line-height: 1.5;
  cursor: pointer;
  font-weight: 600;
}

.contact-button {
    text-align: center;
    margin-top: var(--space-xl);
  }

.about-section {
  padding-top: var(--space-lg);
}

.container > hr {
  margin-bottom: var(--space-xs);
}

 .courses h2 {
    text-align: center;
 }

 .about .image {
   display: flex;
   justify-content: center;
   align-items: center;
 }

 .image-thanks {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 80%;
   margin: 0 auto;
 }

 .image-frame-thanks {
   margin: var(--space-lg) 0;
   border-radius: 32px;
   border: 1px solid var(--card-border-color);
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }

 .about .image-frame {
   border-radius: 32px;
   border: 1px solid var(--card-border-color);
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }

.about .image-frame img {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  border-radius: 24px;
}

.about .split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.workshop-complete-description{
    font-size: var(--font-lead);
    margin-bottom: var(--space-md);
    color: var(--text-completed);
    text-align: center;
}

@media (max-width: 767px) {
  .about .split-layout {
    display: flex;
    flex-direction: column-reverse;
    gap: var(--space-lg);
  }
}

details::details-content {
  opacity: 0;
  transition:
    opacity 400ms,
    content-visibility 200ms allow-discrete;
}

details[open]::details-content {
  opacity: 1;
}

/* Responsive */
@media (min-width: 768px) {
  .hero-layout,
  .two-col {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .courses h2 {
      text-align: left;
   }

  .split-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .card {
    padding: var(--space-md);
  }

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

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

  .lead {
    font-size: var(--font-lead);
    margin-bottom: var(--space-md);
    color: var(--text-main-h2);
  }

  section {
    padding: var(--space-xl) 0;
    margin: 0;
  }

  .image-thanks {
    justify-content: flex-start;
    margin-left: 0;
    margin-right: auto;
    width: 40%;
  }
 }