@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Montserrat:wght@300;400;500;600&display=swap');

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

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8D49A;
  --gold-dark:   #9B7B2E;
  --terra:       #C2714F;
  --terra-dark:  #8E4B2E;
  --cream:       #FAF4EA;
  --cream-dark:  #F0E6D0;
  --brown:       #2C1810;
  --brown-mid:   #4A2E20;
  --white:       #FFFFFF;
  --text:        #2C1810;
  --text-muted:  #7A5C4A;
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Montserrat', 'Segoe UI', sans-serif;
  --radius:      6px;
  --transition:  0.3s ease;
  --shadow:      0 4px 24px rgba(44,24,16,0.10);
  --shadow-lg:   0 8px 40px rgba(44,24,16,0.16);
  --section-pad: 96px 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.section-title {
  text-align: center;
  margin-bottom: 16px;
  color: var(--brown);
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 56px;
  font-weight: 400;
}
.section-line {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 0;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--brown);
}
.btn-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--brown);
}

#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--brown);
  color: var(--cream-dark);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  font-size: 0.875rem;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.25);
  flex-wrap: wrap;
}
#cookie-banner p { flex: 1; min-width: 220px; }
#cookie-banner a { color: var(--gold-light); text-decoration: underline; }
#cookie-accept {
  background: var(--gold);
  color: var(--brown);
  border: none;
  padding: 10px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  font-size: 0.875rem;
  transition: var(--transition);
}
#cookie-accept:hover { background: var(--gold-dark); color: var(--white); }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
  background: rgba(250,244,234,0.97);
  box-shadow: 0 2px 20px rgba(44,24,16,0.08);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  transition: color 0.4s;
}
.site-header.scrolled .logo { color: var(--brown); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  transition: color var(--transition);
}
.site-header.scrolled .nav-links a { color: var(--brown-mid); }
.nav-links a:hover { color: var(--gold) !important; }
.nav-cta {
  background: var(--gold);
  color: var(--brown) !important;
  padding: 9px 22px;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--gold-dark); color: var(--white) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.site-header.scrolled .burger span { background: var(--brown); }

.mobile-nav {
  display: none;
  background: var(--cream);
  padding: 24px;
  border-top: 1px solid var(--cream-dark);
  box-shadow: var(--shadow);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--brown-mid);
  border-bottom: 1px solid var(--cream-dark);
}
.mobile-nav a:last-child { border-bottom: none; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--brown);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,24,16,0.75) 0%, rgba(44,24,16,0.35) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 88px;
}
.hero-tag {
  display: inline-block;
  background: rgba(201,168,76,0.20);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.40);
  border-radius: 40px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-lead {
  color: rgba(250,244,234,0.88);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid rgba(255,255,255,0.55);
  border-bottom: 2px solid rgba(255,255,255,0.55);
  transform: rotate(45deg);
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

.benefits {
  padding: var(--section-pad);
  background: var(--white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 8px;
}
.benefit-card {
  padding: 36px 28px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}
.benefit-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.benefit-card h3 {
  color: var(--brown);
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.benefit-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
}

.for-whom {
  padding: var(--section-pad);
  background: var(--cream);
}
.for-whom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.for-whom-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}
.for-whom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.for-whom-text h2 { margin-bottom: 12px; }
.for-whom-list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.for-whom-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.for-whom-item .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.for-whom-item .check::after {
  content: '';
  display: block;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--brown);
  border-bottom: 2px solid var(--brown);
  transform: rotate(-45deg) translate(1px, -1px);
}
.for-whom-item p { color: var(--brown-mid); font-size: 0.95rem; font-weight: 400; }

.format {
  padding: var(--section-pad);
  background: var(--brown);
  color: var(--cream);
}
.format .section-title { color: var(--cream); }
.format .section-sub { color: var(--cream-dark); opacity: 0.8; }
.format-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 8px;
}
.format-step {
  padding: 40px 32px;
  background: rgba(255,255,255,0.03);
  transition: background var(--transition);
}
.format-step:hover { background: rgba(201,168,76,0.10); }
.step-num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 600;
  color: rgba(201,168,76,0.30);
  line-height: 1;
  margin-bottom: 16px;
}
.format-step h3 { color: var(--gold-light); font-size: 1.1rem; margin-bottom: 10px; }
.format-step p { color: rgba(240,230,208,0.75); font-size: 0.875rem; font-weight: 300; line-height: 1.65; }

.program {
  padding: var(--section-pad);
  background: var(--white);
}
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.program-module {
  padding: 32px 28px;
  border-radius: 12px;
  border: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.program-module:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.program-module::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--terra));
}
.module-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.program-module h3 { color: var(--brown); margin-bottom: 12px; font-size: 1.1rem; }
.program-module p { color: var(--text-muted); font-size: 0.875rem; font-weight: 300; line-height: 1.65; }

.about {
  padding: var(--section-pad);
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-image img { width: 100%; display: block; }
.about-image-badge {
  position: absolute;
  bottom: 20px;
  right: -16px;
  background: var(--gold);
  color: var(--brown);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}
.about-text .brand-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-features { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.about-feature {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--brown-mid);
}

.faq {
  padding: var(--section-pad);
  background: var(--white);
}
.faq-list { max-width: 720px; margin: 8px auto 0; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--brown);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform var(--transition);
  margin-top: -4px;
}
.faq-item.open .faq-arrow { transform: rotate(-135deg); margin-top: 4px; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 22px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 400px; }

.lead-form {
  padding: var(--section-pad);
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.lead-form::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.lead-form::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(194,113,79,0.10) 0%, transparent 70%);
  border-radius: 50%;
}
.lead-form-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.lead-form h2 { margin-bottom: 12px; }
.lead-form-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 48px;
}
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  text-align: left;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--brown-mid);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 28px;
}
.form-agree input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-agree label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
}
.form-agree label a { color: var(--gold-dark); text-decoration: underline; }
.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 16px;
  font-weight: 300;
}

.site-footer {
  background: var(--brown);
  color: rgba(240,230,208,0.75);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-footer {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.85rem; font-weight: 300; line-height: 1.65; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(240,230,208,0.65);
  font-weight: 300;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-legal {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-legal-info {
  font-size: 0.775rem;
  color: rgba(240,230,208,0.45);
  line-height: 1.65;
}
.footer-copy {
  font-size: 0.775rem;
  color: rgba(240,230,208,0.4);
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }

.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  text-align: center;
}
.success-card {
  max-width: 520px;
  padding: 56px 40px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  margin: 24px;
}
.success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--gold), var(--terra));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.success-icon::after {
  content: '';
  display: block;
  width: 26px;
  height: 16px;
  border-left: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(-45deg) translate(2px, -2px);
}
.success-card h1 { font-size: 2rem; margin-bottom: 16px; }
.success-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 36px;
}

.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
  background: var(--cream);
}
.legal-page .container { max-width: 780px; }
.legal-header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.legal-header h1 { font-size: 2rem; color: var(--brown); margin-bottom: 8px; }
.legal-header p { font-size: 0.875rem; color: var(--text-muted); }
.legal-body h2 {
  font-size: 1.25rem;
  color: var(--brown);
  margin: 36px 0 14px;
}
.legal-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 12px;
}
.legal-body ul { padding-left: 24px; list-style: disc; }
.legal-body ul li {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 6px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 36px;
  transition: gap var(--transition);
}
.legal-back:hover { gap: 12px; }
.legal-back::before { content: '←'; font-size: 1rem; }

.legal-header-static {
  background: rgba(250,244,234,0.97);
  box-shadow: 0 2px 20px rgba(44,24,16,0.08);
  padding: 0;
}
.legal-header-static .logo { color: var(--brown); }

@media (max-width: 900px) {
  .for-whom-grid { grid-template-columns: 1fr; }
  .for-whom-image { aspect-ratio: 16/9; max-height: 360px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-badge { right: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --section-pad: 64px 0; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-card { padding: 28px 20px; }
  .success-card { padding: 40px 24px; }
}
