:root {
  --red: #E1332C;
  --red-dark: #B31F1A;
  --green: #123524;
  --green-light: #1F5C3E;
  --gold: #F0B429;
  --cream: #FFF6E9;
  --ink: #17140F;
  --white: #FFFFFF;
  --radius: 18px;
  --shadow: 0 12px 30px rgba(17, 20, 15, 0.18);
  --font: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 0 var(--red-dark);
}
.btn--primary:hover { transform: translateY(-2px); }
.btn--primary:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--red-dark); }
.btn--outline {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}
.btn--outline:hover { background: var(--green); color: var(--white); }
.btn--lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transform: rotate(-6deg);
  box-shadow: 3px 3px 0 var(--ink);
}
.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav a:not(.btn) { font-weight: 600; }
.nav a:not(.btn):hover { color: var(--red); }
.nav-cta { margin-left: 0.5rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 4rem 0 3rem;
  background: var(--green);
  color: var(--white);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(240,180,41,0.25), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(225,51,44,0.35), transparent 50%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: clamp(2.3rem, 4.5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.hero-title span { color: var(--gold); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 1.8rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.hero-note { font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.hero-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 5px solid var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--red);
  color: var(--white);
  padding: 1rem 1.2rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.35;
  border: 3px solid var(--ink);
  transform: rotate(-4deg);
  box-shadow: var(--shadow);
}

/* ---------- Stats ---------- */
.stats-strip {
  background: var(--gold);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 1.6rem 0;
}
.stat-item { border-right: 2px dashed rgba(23,20,15,0.25); }
.stat-item:last-child { border-right: none; }
.stat-value { font-size: 2.1rem; font-weight: 800; color: var(--red-dark); }
.stat-label { font-size: 0.85rem; font-weight: 600; }

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--green {
  background: var(--green);
  color: var(--white);
}
.section-label {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 2.6rem;
  max-width: 640px;
}
.section-title--light { color: var(--white); }

/* ---------- Audience ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.audience-card {
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.15s ease;
}
.audience-card:hover { transform: translate(-3px, -3px); }
.audience-icon { font-size: 2rem; display: block; margin-bottom: 0.8rem; }
.audience-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.audience-card p { font-size: 0.92rem; color: #40392e; }

/* ---------- Program ---------- */
.program-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.program-item {
  display: flex;
  gap: 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 1.4rem;
}
.program-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  min-width: 46px;
}
.program-item h3 { font-size: 1.05rem; margin-bottom: 0.35rem; color: var(--white); }
.program-item p { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.2rem;
  height: 520px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--ink);
}
.gallery-item--main { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Steps ---------- */
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step-item { text-align: center; }
.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 3px solid var(--ink);
}
.step-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.step-item p { font-size: 0.9rem; color: #40392e; }

/* ---------- Materials ---------- */
.materials-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.materials-image {
  border-radius: 24px;
  overflow: hidden;
  border: 5px solid var(--ink);
  box-shadow: var(--shadow);
}
.material-item {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 2px dashed rgba(23,20,15,0.2);
}
.material-item:last-child { border-bottom: none; }
.material-icon {
  font-size: 1.5rem;
  min-width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.material-text h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.material-text p { font-size: 0.9rem; color: #40392e; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 3px solid var(--ink);
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-icon {
  font-size: 1.3rem;
  color: var(--red);
  transition: transform 0.2s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 1.5rem;
  font-size: 0.94rem;
  color: #40392e;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 1.5rem 1.3rem; }

/* ---------- Form ---------- */
.form-section { background: var(--red); color: var(--white); }
.form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.form-copy p { color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
.form-promise-item {
  padding: 0.6rem 0;
  font-weight: 600;
  border-top: 2px dashed rgba(255,255,255,0.35);
}
.form-promise-item:first-child { border-top: none; }

.lead-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 2.2rem;
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 var(--green);
}
.lead-form h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.form-subtitle { font-size: 0.9rem; color: #40392e; margin-bottom: 1.4rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.4rem; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #d8cdb8;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  background: var(--cream);
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { min-height: 90px; resize: vertical; }
.form-submit { width: 100%; margin-top: 0.4rem; }
.form-legal { font-size: 0.78rem; color: #6b6152; margin-top: 1rem; text-align: center; }
.form-legal a { color: var(--red-dark); font-weight: 600; }
.form-status { font-size: 0.85rem; text-align: center; margin-top: 0.75rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.75); padding: 3.5rem 0 1.5rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand .logo { color: var(--white); margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.9rem; }
.footer-brand a { color: var(--gold); font-weight: 600; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.8rem;
}

/* ---------- Legal pages ---------- */
.legal-page { max-width: 760px; margin: 0 auto; padding: 4rem 24px; }
.legal-page h1 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.legal-date { color: #6b6152; margin-bottom: 2rem; font-size: 0.9rem; }
.legal-page h2 { font-size: 1.2rem; font-weight: 700; margin: 2rem 0 0.8rem; }
.legal-page p, .legal-page li { margin-bottom: 0.8rem; color: #2e2a22; }
.legal-page ul { padding-left: 1.4rem; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--white);
  border-radius: 16px;
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow);
  transform: translateY(150%);
  transition: transform 0.35s ease;
  z-index: 200;
  border: 3px solid var(--gold);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text p { font-size: 0.9rem; margin-bottom: 0.9rem; }
.cookie-text a { color: var(--gold); font-weight: 600; }
.cookie-actions { display: flex; gap: 0.8rem; }
.cookie-actions button {
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
}
.btn-cookie-accept { background: var(--red); color: var(--white); }
.btn-cookie-decline { background: transparent; color: rgba(255,255,255,0.7); border: 2px solid rgba(255,255,255,0.3) !important; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .program-wrap { grid-template-columns: 1fr; }
  .steps-wrap { grid-template-columns: repeat(2, 1fr); }
  .materials-layout { grid-template-columns: 1fr; }
  .form-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .gallery-grid { height: auto; grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-item--main { grid-row: auto; aspect-ratio: 4/3; }
  .gallery-item:not(.gallery-item--main) { aspect-ratio: 4/3; }
}

@media (max-width: 720px) {
  .nav { position: fixed; top: 74px; left: 0; right: 0; background: var(--cream); flex-direction: column; align-items: flex-start; padding: 1.5rem 24px; border-bottom: 3px solid var(--ink); transform: translateY(-130%); transition: transform 0.25s ease; gap: 1rem; }
  .nav.nav-open { transform: translateY(0); }
  .hamburger { display: flex; }
  .audience-grid { grid-template-columns: 1fr; }
  .steps-wrap { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-item:nth-child(2) { border-right: none; }
}
