@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=PT+Sans:ital,wght@0,400;0,700;1,400&display=swap');

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

:root {
  --cream: #FAF6F1;
  --sand: #F0E8DA;
  --sand-dark: #E5D8C6;
  --brown-dark: #2C1A0E;
  --brown-mid: #6B3A2A;
  --amber: #B86830;
  --amber-hover: #965220;
  --amber-light: #F5E6D3;
  --text: #3D2318;
  --text-mid: #5C3A28;
  --text-light: #8C6B58;
  --border: #DDD0BE;
  --white: #FFFFFF;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 4px rgba(44,26,14,0.08);
  --shadow-md: 0 4px 16px rgba(44,26,14,0.12);
  --shadow-lg: 0 8px 32px rgba(44,26,14,0.16);
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'PT Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1100px;
}

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

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

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

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

a:hover {
  color: var(--amber-hover);
}

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

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

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown-dark);
  letter-spacing: 0.02em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--amber);
}

.nav-cta {
  background: var(--amber);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--amber-hover);
  color: var(--white) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.hero {
  background: var(--brown-dark);
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('./images/hero.jpg');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.38;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(44,26,14,0.85) 0%, rgba(44,26,14,0.5) 60%, rgba(44,26,14,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 80px 0;
}

.hero-label {
  display: inline-block;
  background: rgba(184, 104, 48, 0.25);
  border: 1px solid rgba(184,104,48,0.5);
  color: #F5C89A;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

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

.btn-primary {
  background: var(--amber);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--amber-hover);
  transform: translateY(-1px);
  color: var(--white);
}

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

.btn-outline {
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.08);
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--sand);
}

.section-dark {
  background: var(--brown-dark);
  color: var(--white);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--brown-dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

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

.section-intro {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.75;
}

.section-dark .section-intro {
  color: rgba(255,255,255,0.7);
}

.section-header {
  margin-bottom: 52px;
}

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

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

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--amber);
  fill: none;
}

.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

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

.audience-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
}

.audience-bullet {
  width: 10px;
  height: 10px;
  min-width: 10px;
  background: var(--amber);
  border-radius: 50%;
  margin-top: 6px;
}

.audience-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.audience-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

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

.module-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
}

.module-number {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sand-dark);
  line-height: 1;
  min-width: 32px;
}

.module-card h3 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 6px;
}

.module-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

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

.process-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.process-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.process-step-num {
  width: 30px;
  height: 30px;
  min-width: 30px;
  background: var(--amber);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.process-list li div h4 {
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 4px;
}

.process-list li div p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.6;
}

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

.materials-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  order: 2;
}

.materials-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.materials-text {
  order: 1;
}

.materials-note {
  background: var(--amber-light);
  border-left: 3px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-top: 24px;
}

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

.format-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.format-card svg {
  width: 32px;
  height: 32px;
  stroke: var(--amber);
  fill: none;
  margin: 0 auto 14px;
  display: block;
}

.format-card h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 6px;
}

.format-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

.result-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 440px;
}

.result-image-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.form-section {
  background: linear-gradient(135deg, var(--brown-dark) 0%, #4A2415 100%);
}

.form-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.form-wrap h2 {
  color: var(--white) !important;
}

.form-wrap .section-intro {
  color: rgba(255,255,255,0.7) !important;
  margin-bottom: 36px;
}

.lead-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(4px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(184,104,48,0.7);
  background: rgba(255,255,255,0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 6px;
}

.form-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

.form-legal a {
  color: rgba(255,255,255,0.55);
}

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

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

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

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

.faq-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--amber);
  border-radius: 2px;
}

.faq-icon {
  position: relative;
}

.faq-icon::before {
  width: 8px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 8px;
  transition: transform 0.25s, opacity 0.25s;
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.75;
  border-top: 1px solid var(--border);
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-strip {
  background: var(--amber);
  padding: 48px 0;
  text-align: center;
}

.cta-strip h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-strip p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  font-size: 0.97rem;
}

.btn-white {
  background: var(--white);
  color: var(--amber);
  padding: 13px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.97rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-white:hover {
  background: var(--cream);
  color: var(--amber-hover);
  transform: translateY(-1px);
}

.site-footer {
  background: #1A0E07;
  color: rgba(255,255,255,0.55);
  padding: 52px 0 28px;
}

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

.footer-brand .logo {
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
  display: block;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: rgba(255,255,255,0.85);
}

.footer-col p {
  font-size: 0.87rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
}

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

.footer-legal-info {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.8;
}

.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: right;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #2C1A0E;
  border-top: 1px solid rgba(184,104,48,0.3);
  padding: 16px 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.cookie-text a {
  color: rgba(184,104,48,0.9);
  text-decoration: underline;
}

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

.btn-cookie-accept {
  background: var(--amber);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 0.87rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cookie-accept:hover {
  background: var(--amber-hover);
}

.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 0.87rem;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cookie-decline:hover {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
}

.legal-hero {
  background: var(--sand);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
}

.legal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 8px;
}

.legal-hero .updated {
  font-size: 0.85rem;
  color: var(--text-light);
}

.legal-body {
  padding: 52px 0;
  max-width: 780px;
}

.legal-body h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin: 32px 0 12px;
}

.legal-body h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin: 24px 0 8px;
}

.legal-body p {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-body ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-body ul li {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 6px;
}

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

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

.success-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--amber);
  fill: none;
}

.success-page h1 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 12px;
}

.success-page p {
  color: var(--text-light);
  max-width: 440px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 14px;
    box-shadow: var(--shadow-md);
  }

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

  .nav-cta {
    align-self: flex-start;
  }

  .menu-toggle {
    display: flex;
  }

  .section {
    padding: 56px 0;
  }

  .process-split,
  .materials-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .materials-image {
    order: 1;
  }

  .materials-text {
    order: 2;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copyright {
    text-align: left;
  }

  .lead-form {
    padding: 24px 20px;
  }

  .hero-content {
    padding: 60px 0;
  }

  .cookie-inner {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
  }

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

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

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