/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAF6F0;
  --cream-dark: #F2EBE0;
  --terracotta: #C4643C;
  --terracotta-dark: #A8512C;
  --sage: #7A9B6E;
  --sage-light: #EBF0E7;
  --brown: #5C3D2E;
  --brown-light: #8B6B55;
  --text: #2E1F14;
  --text-muted: #7A6355;
  --border: #DDD0C3;
  --white: #FFFFFF;

  --font-heading: Georgia, 'Times New Roman', serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;

  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 2px 16px rgba(92, 61, 46, 0.10);
  --shadow-md: 0 4px 32px rgba(92, 61, 46, 0.14);
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; }
a:hover { color: var(--terracotta-dark); }

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

/* === HEADER === */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: normal;
  color: var(--brown);
  letter-spacing: 0.02em;
}
.logo span { color: var(--terracotta); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }

.btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
  line-height: 1.3;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn-primary:hover { background: var(--terracotta-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
}
.btn-outline:hover { background: var(--terracotta); color: var(--white); }

.btn-large {
  padding: 15px 36px;
  font-size: 17px;
  border-radius: var(--radius-sm);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s;
}

/* === HERO === */
.hero {
  padding: 72px 0 60px;
  background: var(--cream);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-content {}
.hero-tag {
  display: inline-block;
  background: var(--sage-light);
  color: var(--sage);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.2;
  color: var(--brown);
  margin-bottom: 20px;
  font-weight: normal;
}
.hero h1 em {
  font-style: normal;
  color: var(--terracotta);
}
.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 460px;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-note {
  font-size: 13px;
  color: var(--text-muted);
}
.hero-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === SECTION COMMON === */
section { padding: 72px 0; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--brown);
  font-weight: normal;
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 48px;
}

/* === FOR WHOM === */
.for-whom {
  background: var(--cream-dark);
}
.for-whom .section-header { margin-bottom: 48px; }
.whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.whom-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.whom-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.whom-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
}
.whom-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === OUTCOMES === */
.outcomes {}
.outcomes .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.outcomes-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}
.outcomes-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.outcomes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.outcomes-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.outcome-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.outcome-check svg {
  width: 14px;
  height: 14px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.outcomes-list li p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}

/* === FORMAT === */
.format { background: var(--cream-dark); }
.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.format-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--border);
}
.format-num {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--terracotta);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
  font-weight: normal;
}
.format-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
}
.format-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === PROCESS === */
.process {}
.process .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.process-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--cream-dark);
}
.process-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}
.step-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
}
.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === LEAD FORM === */
.lead-form-section {
  background: var(--brown);
  padding: 80px 0;
}
.lead-form-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.form-promo h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--white);
  font-weight: normal;
  line-height: 1.25;
  margin-bottom: 16px;
}
.form-promo p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 1.6;
}
.form-promo ul {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-promo ul li {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  padding-left: 20px;
  position: relative;
}
.form-promo ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--brown);
  font-weight: normal;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}
.form-consent {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}
.form-consent a {
  color: var(--terracotta);
}
.contact-form .btn {
  width: 100%;
  text-align: center;
}

/* === FAQ === */
.faq { background: var(--cream-dark); }
.faq .section-header { margin-bottom: 40px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 760px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--brown);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
}
.faq-question .faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s;
}
.faq-question .faq-arrow svg {
  width: 10px;
  height: 10px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: stroke 0.2s;
}
.faq-item.open .faq-question .faq-arrow {
  transform: rotate(180deg);
  background: var(--terracotta);
}
.faq-item.open .faq-question .faq-arrow svg { stroke: var(--white); }
.faq-answer {
  display: none;
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* === FOOTER === */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,0.7);
  padding: 52px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.6; max-width: 260px; }
.footer-legal-info { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 14px; line-height: 1.7; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }

/* === SUCCESS PAGE === */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--cream);
}
.success-box {
  text-align: center;
  max-width: 480px;
}
.success-icon {
  width: 80px;
  height: 80px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.success-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.success-box h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--brown);
  font-weight: normal;
  margin-bottom: 14px;
}
.success-box p { color: var(--text-muted); font-size: 16px; margin-bottom: 32px; line-height: 1.6; }

/* === LEGAL PAGES === */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--brown);
  font-weight: normal;
  margin-bottom: 8px;
}
.legal-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  margin: 32px 0 10px;
}
.legal-page p { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; }
.legal-page ul { padding-left: 20px; margin-bottom: 14px; }
.legal-page ul li { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 6px; }
.legal-back { margin-top: 40px; }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brown);
  color: var(--white);
  padding: 18px 24px;
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}
.cookie-banner.visible { display: block; }
.cookie-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  min-width: 220px;
}
.cookie-text a { color: var(--cream); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-accept {
  background: var(--terracotta);
  color: var(--white);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--terracotta-dark); }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* === CTA STRIP === */
.cta-strip {
  background: var(--sage-light);
  padding: 56px 0;
  text-align: center;
}
.cta-strip h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 34px);
  color: var(--brown);
  font-weight: normal;
  margin-bottom: 12px;
}
.cta-strip p { color: var(--text-muted); font-size: 16px; margin-bottom: 28px; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 14px;
    box-shadow: var(--shadow);
  }
  .hamburger { display: flex; }
  .site-header .container { position: relative; }
  .site-header { padding: 12px 0; }
  .header-cta-btn { display: none; }
}

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

  .hero .container { grid-template-columns: 1fr; gap: 36px; }
  .hero-image-wrap { order: -1; }
  .hero h1 { font-size: 28px; }
  .hero-desc { font-size: 16px; }

  .outcomes .container { grid-template-columns: 1fr; gap: 36px; }
  .outcomes-image-wrap { order: -1; }

  .process .container { grid-template-columns: 1fr; gap: 36px; }
  .process-image-wrap { order: -1; }

  .lead-form-section .container { grid-template-columns: 1fr; gap: 36px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .format-grid { grid-template-columns: 1fr 1fr; }
  .whom-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 500px) {
  .whom-grid { grid-template-columns: 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }
  .btn-large { font-size: 15px; padding: 13px 28px; }
}
