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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: #FBF5EE;
  color: #3D2B1F;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

h1, h2, h3, h4, h5 {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.25;
  color: #3D2B1F;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  color: #5C3D2E;
  line-height: 1.75;
}

:root {
  --primary: #C97B5A;
  --primary-dark: #A85F40;
  --primary-light: #F0D9C8;
  --bg: #FBF5EE;
  --bg-alt: #F4EBE0;
  --text: #3D2B1F;
  --text-muted: #8C6B5A;
  --border: #E2C9B5;
  --white: #FFFFFF;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(61, 43, 31, 0.08);
  --shadow-hover: 0 8px 36px rgba(61, 43, 31, 0.14);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 245, 238, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--text);
}

.nav-cta {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.hero {
  padding: 80px 0 60px;
  overflow: hidden;
}

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

.hero-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hero-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero-form-title {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.hero-form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.hero-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}

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

.form-group label {
  display: block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.form-group input::placeholder {
  color: #B09080;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.form-consent input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.form-consent span {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.btn-primary {
  display: block;
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 123, 90, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

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

.section-label {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.who-for {
  background: var(--bg-alt);
}

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

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

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

.who-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.who-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
}

.who-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.format-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.format-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.format-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.format-item h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
}

.format-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.format-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
}

.program {
  background: var(--bg-alt);
}

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

.module-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary);
}

.module-number {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.module-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
}

.module-topics {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.module-topics li {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.module-topics li::before {
  content: '—';
  color: var(--primary);
  flex-shrink: 0;
  font-weight: 700;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.outcome-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
}

.outcome-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
}

.outcome-item p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.outcomes-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
}

.gallery-bg {
  background: var(--bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.gallery-main {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-main:hover img {
  transform: scale(1.02);
}

.gallery-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-side-item {
  border-radius: 16px;
  overflow: hidden;
  flex: 1;
}

.gallery-side-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.gallery-side-item:hover img {
  transform: scale(1.02);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.3s, background 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 18px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.lead-form-section {
  background: var(--bg-alt);
}

.lead-form-inner {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.lead-form-inner h2 {
  margin-bottom: 10px;
}

.lead-form-inner .section-desc {
  margin-bottom: 32px;
}

.lead-form-inner .form-group label {
  text-align: left;
}

.form-note {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.site-footer {
  background: #2A1A10;
  color: #C8A890;
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: #F0D9C8;
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  color: #9A7A68;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.footer-links a {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  color: #9A7A68;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #F0D9C8;
}

.footer-divider {
  border: none;
  border-top: 1px solid #4A2E1E;
  margin-bottom: 24px;
}

.footer-legal {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  color: #7A5840;
  line-height: 1.7;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background: #2A1A10;
  color: #C8A890;
  border-radius: 12px;
  padding: 16px 20px;
  max-width: 560px;
  width: calc(100% - 48px);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.cookie-text {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
  flex: 1;
  color: #9A7A68;
}

.cookie-text a {
  color: var(--primary-light);
  text-decoration: underline;
}

.cookie-accept {
  flex-shrink: 0;
  background: var(--primary);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 6px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s;
  white-space: nowrap;
}

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

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

.success-card {
  background: var(--white);
  border-radius: 20px;
  padding: 56px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

.success-card h1 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.success-card p {
  margin-bottom: 32px;
  color: var(--text-muted);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.btn-back {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 8px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}

.btn-back:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.88rem;
  color: var(--primary);
  margin-bottom: 40px;
  transition: gap 0.2s;
}

.legal-back:hover {
  gap: 12px;
}

.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.legal-page .legal-updated {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
}

.legal-section p, .legal-section li {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-section ul {
  padding-left: 0;
}

.legal-section ul li {
  display: flex;
  gap: 8px;
}

.legal-section ul li::before {
  content: '—';
  color: var(--primary);
  flex-shrink: 0;
}

.legal-company-box {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  margin-top: 40px;
}

.legal-company-box p {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

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

.form-error {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.78rem;
  color: #C95A5A;
  margin-top: 4px;
  display: none;
}

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

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }

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

  .hero-img {
    order: -1;
  }

  .format-grid,
  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .format-img,
  .outcomes-img {
    order: -1;
  }

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

  .gallery-side {
    flex-direction: row;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .lead-form-inner {
    padding: 32px 24px;
  }

  .success-card {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.45rem; }

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

  .program-modules {
    grid-template-columns: 1fr;
  }
}
