:root {
  --bg: #FAF7F2;
  --bg-alt: #F2EDE5;
  --green: #2C4A2E;
  --green-light: #3A6B3E;
  --terra: #C4603E;
  --sand: #D4B896;
  --sand-light: #EDE4D4;
  --text: #2A2418;
  --text-muted: #7A6A5A;
  --white: #FFFFFF;
  --radius: 4px;
  --radius-lg: 12px;
  --shadow: 0 2px 16px rgba(42, 36, 24, 0.08);
  --shadow-lg: 0 8px 40px rgba(42, 36, 24, 0.12);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1120px;
  --section-pad: 80px 20px;
}

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

html { scroll-behavior: smooth; }

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

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

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

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

/* ─── TYPOGRAPHY ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p { color: var(--text-muted); line-height: 1.75; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}
.btn-primary:hover { background: #B05535; border-color: #B05535; box-shadow: 0 4px 20px rgba(196, 96, 62, 0.35); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover { background: var(--green); color: var(--white); }

.btn-lg { padding: 17px 36px; font-size: 1rem; }

/* ─── HEADER ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand-light);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.01em;
}
.logo span { color: var(--terra); }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green);
  transition: all 0.3s;
  border-radius: 2px;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 32px 20px;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--sand-light);
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  padding: 72px 20px 80px;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 540px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sand-light);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero h1 { margin-bottom: 20px; color: var(--text); }
.hero .hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 16px;
}
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--sand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* ─── SECTION BASE ────────────────────────────────── */
.section { padding: var(--section-pad); }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--green); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-dark .section-label { color: var(--sand); }

.section-header { margin-bottom: 52px; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 1.05rem; max-width: 580px; }
.section-header.centered p { margin: 0 auto; }

/* ─── FOR WHOM ────────────────────────────────────── */
.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.for-whom-card {
  background: var(--white);
  border: 1px solid var(--sand-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s;
}
.for-whom-card:hover { box-shadow: var(--shadow); }
.for-whom-icon {
  width: 48px;
  height: 48px;
  background: var(--sand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.for-whom-card h3 { font-size: 1rem; margin-bottom: 8px; }
.for-whom-card p { font-size: 0.9rem; }

/* ─── OUTCOMES ────────────────────────────────────── */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.outcome-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.outcome-num {
  min-width: 36px;
  height: 36px;
  background: var(--sand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green);
  margin-top: 2px;
}
.outcome-item h3 { font-size: 0.95rem; margin-bottom: 4px; color: var(--text); }
.outcome-item p { font-size: 0.88rem; }

/* ─── PROCESS / FORMAT ────────────────────────────── */
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.process-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.process-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.process-steps { display: flex; flex-direction: column; gap: 28px; }
.process-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.step-icon {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.step-text h3 { font-size: 1rem; margin-bottom: 4px; color: var(--white); }
.step-text p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

/* ─── MATERIALS ───────────────────────────────────── */
.materials-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.materials-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  order: -1;
}
.materials-img img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.materials-list { display: flex; flex-direction: column; gap: 16px; }
.material-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--sand-light);
}
.material-check {
  min-width: 24px;
  height: 24px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.material-item h4 { font-size: 0.95rem; color: var(--text); margin-bottom: 2px; }
.material-item p { font-size: 0.85rem; }

/* ─── INSTRUCTOR ──────────────────────────────────── */
.instructor-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}
.instructor-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.instructor-photo img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}
.instructor-content h2 { margin-bottom: 6px; }
.instructor-role {
  color: var(--terra);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.instructor-bio { margin-bottom: 28px; }
.instructor-bio p { font-size: 1rem; margin-bottom: 12px; }
.instructor-facts { display: flex; flex-wrap: wrap; gap: 12px; }
.fact-tag {
  padding: 7px 14px;
  background: var(--sand-light);
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green);
}

/* ─── GALLERY ─────────────────────────────────────── */
.gallery-section { padding: var(--section-pad); }
.gallery-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
}
.gallery-image img {
  width: 100%;
  object-fit: cover;
  max-height: 440px;
}

/* ─── FAQ ─────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--sand-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text);
  transition: background 0.2s;
}
.faq-q:hover { background: var(--bg-alt); }
.faq-icon {
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--green);
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ─── LEAD FORM ───────────────────────────────────── */
.lead-form-section {
  padding: var(--section-pad);
  background: var(--green);
}
.lead-form-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.lead-form-inner h2 { color: var(--white); margin-bottom: 12px; }
.lead-form-inner .sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.lead-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--sand-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-consent {
  margin: 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  margin-top: 2px;
  min-width: 16px;
  height: 16px;
  accent-color: var(--green);
}
.form-consent a { color: var(--green); text-decoration: underline; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; font-size: 1rem; padding: 16px; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ─── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: #1E3320;
  color: rgba(255,255,255,0.7);
  padding: 48px 20px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 12px; display: block; font-size: 1.3rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.65; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal { font-size: 0.8rem; line-height: 1.7; }
.footer-copy { font-size: 0.8rem; text-align: right; }

/* ─── COOKIE BANNER ───────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #1E3320;
  color: rgba(255,255,255,0.85);
  padding: 16px 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text { font-size: 0.88rem; line-height: 1.6; }
.cookie-text a { color: var(--sand); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  transition: opacity 0.2s;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-accept { background: var(--terra); color: var(--white); }
.cookie-reject { background: rgba(255,255,255,0.12); color: var(--white); }

/* ─── CTA BAND ────────────────────────────────────── */
.cta-band {
  background: var(--sand-light);
  padding: 52px 20px;
  text-align: center;
}
.cta-band h2 { margin-bottom: 12px; color: var(--text); }
.cta-band p { font-size: 1.05rem; margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ─── SUCCESS PAGE ────────────────────────────────── */
.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 80px;
  height: 80px;
  background: var(--sand-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 28px;
}
.success-page h1 { margin-bottom: 16px; }
.success-page p { max-width: 440px; font-size: 1.05rem; margin-bottom: 32px; }

/* ─── LEGAL PAGES ─────────────────────────────────── */
.legal-page { padding: 80px 20px; }
.legal-page h1 { margin-bottom: 8px; }
.legal-page .updated { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 48px; }
.legal-content { max-width: 780px; }
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal-content p { font-size: 0.96rem; margin-bottom: 16px; }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content ul li { font-size: 0.96rem; color: var(--text-muted); margin-bottom: 8px; line-height: 1.65; }
.legal-content a { color: var(--green); text-decoration: underline; }

.legal-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.legal-breadcrumb a { color: var(--green); }
.legal-breadcrumb span { color: var(--sand); }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-badge { display: none; }
  .hero-content { max-width: 100%; }

  .process-layout,
  .materials-layout { grid-template-columns: 1fr; gap: 40px; }
  .materials-img { order: 0; }

  .instructor-layout { grid-template-columns: 1fr; gap: 40px; }
  .instructor-photo { max-width: 320px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .nav-links { display: none; }
  .header-cta .btn-outline { display: none; }
  .burger { display: flex; }
}

@media (max-width: 600px) {
  :root { --section-pad: 56px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .footer-copy { text-align: left; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .for-whom-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .lead-form { padding: 24px 20px; }
}
