:root {
  --espresso: #2C1810;
  --terracotta: #B85C38;
  --sienna: #8B3A1E;
  --cream: #F5EDE4;
  --warm-white: #FBF7F4;
  --sand: #E8D5C4;
  --text-dark: #1C1410;
  --text-medium: #4A3D35;
  --text-light: #897A72;
  --divider: #DDD0C5;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --max-width: 1140px;
  --section-padding: 96px 24px;
  --radius: 4px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--espresso);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 400; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 400; }
h3 { font-size: 1.25rem; font-weight: 400; }

p { color: var(--text-medium); }

.label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
}

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

section {
  padding: var(--section-padding);
}

.btn-primary {
  display: inline-block;
  background: var(--espresso);
  color: #fff;
  padding: 16px 40px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

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

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

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--espresso);
  padding: 14px 36px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--espresso);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
  background: var(--espresso);
  color: #fff;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 247, 244, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--divider);
  transition: box-shadow 0.2s;
}

.nav.scrolled {
  box-shadow: 0 2px 16px rgba(44, 24, 16, 0.08);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  color: var(--espresso);
  letter-spacing: 0.04em;
}

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

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-medium);
  transition: color 0.15s;
}

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

.nav-cta {
  font-size: 0.875rem;
}

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

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--espresso);
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  background: var(--warm-white);
  z-index: 99;
  padding: 40px 24px;
  flex-direction: column;
  gap: 32px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--espresso);
}

.hero {
  padding: 0;
  background: var(--cream);
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}

.hero-content {
  padding-bottom: 80px;
}

.hero-content .label {
  display: block;
  margin-bottom: 24px;
}

.hero-content h1 {
  margin-bottom: 24px;
}

.hero-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 40px;
  max-width: 460px;
}

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

.hero-note {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.hero-image-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-image-wrap img {
  width: 100%;
  max-width: 560px;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.insight {
  background: var(--warm-white);
}

.insight-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.insight-header .label {
  display: block;
  margin-bottom: 20px;
}

.insight-header h2 {
  margin-bottom: 24px;
}

.insight-header p {
  font-size: 1.0625rem;
  line-height: 1.8;
}

.insight-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 16px;
}

.insight-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
  align-items: start;
}

.insight-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--sand);
  line-height: 1;
  padding-top: 2px;
}

.insight-item h3 {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 6px;
}

.insight-item p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.outcomes {
  background: var(--espresso);
  color: #fff;
}

.outcomes h2 {
  color: var(--cream);
  text-align: center;
  margin-bottom: 16px;
}

.outcomes-subtitle {
  text-align: center;
  color: rgba(245, 237, 228, 0.65);
  font-size: 1.0625rem;
  margin-bottom: 64px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.outcome-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 32px;
  transition: background 0.2s;
}

.outcome-card:hover {
  background: rgba(255, 255, 255, 0.09);
}

.outcome-icon {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.outcome-card h3 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--cream);
  margin-bottom: 12px;
  font-weight: 400;
}

.outcome-card p {
  font-size: 0.875rem;
  color: rgba(245, 237, 228, 0.6);
  line-height: 1.7;
}

.how {
  background: var(--cream);
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-header .label {
  display: block;
  margin-bottom: 16px;
}

.how-header h2 {
  margin-bottom: 16px;
}

.how-header p {
  font-size: 1.0625rem;
  max-width: 480px;
  margin: 0 auto;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.how-step {
  position: relative;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 20px;
}

.how-step h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 10px;
}

.how-step p {
  font-size: 0.875rem;
  line-height: 1.7;
}

.for-whom {
  background: var(--warm-white);
}

.for-whom-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.for-whom-left .label {
  display: block;
  margin-bottom: 20px;
}

.for-whom-left h2 {
  margin-bottom: 24px;
}

.for-whom-left img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-top: 40px;
}

.for-whom-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.whom-card {
  background: var(--cream);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
}

.whom-card h3 {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 10px;
}

.whom-card p {
  font-size: 0.875rem;
  line-height: 1.65;
}

.form-section {
  background: var(--cream);
  text-align: center;
}

.form-section .label {
  display: block;
  margin-bottom: 16px;
}

.form-section h2 {
  margin-bottom: 16px;
}

.form-section > .container > p {
  font-size: 1.0625rem;
  max-width: 480px;
  margin: 0 auto 48px;
}

.lead-form {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-medium);
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius);
  background: var(--warm-white);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--espresso);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-light);
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  padding: 18px;
  font-size: 1rem;
}

.form-consent {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 14px;
  text-align: center;
  line-height: 1.5;
}

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

.faq {
  background: var(--warm-white);
}

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

.faq-header .label {
  display: block;
  margin-bottom: 16px;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--divider);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--espresso);
  transition: color 0.15s;
}

.faq-question:hover {
  color: var(--terracotta);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  color: var(--espresso);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--espresso);
  color: #fff;
}

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

.faq-answer-inner {
  padding-bottom: 24px;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-medium);
}

footer {
  background: var(--espresso);
  color: rgba(245, 237, 228, 0.55);
  padding: 60px 24px 40px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245, 237, 228, 0.12);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

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

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-size: 0.8125rem;
  color: rgba(245, 237, 228, 0.55);
  transition: color 0.15s;
}

.footer-nav a:hover {
  color: var(--cream);
}

.footer-bottom {
  font-size: 0.75rem;
  line-height: 1.8;
}

.footer-bottom p {
  color: rgba(245, 237, 228, 0.4);
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--espresso);
  color: var(--cream);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(44, 24, 16, 0.35);
  max-width: 680px;
  width: calc(100% - 48px);
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 1;
  transition: opacity 0.3s, transform 0.3s;
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  pointer-events: none;
}

.cookie-text {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(245, 237, 228, 0.75);
  flex: 1;
}

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

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--terracotta);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

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

.cookie-close {
  background: transparent;
  color: rgba(245, 237, 228, 0.55);
  border: 1px solid rgba(245, 237, 228, 0.2);
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.cookie-close:hover {
  color: var(--cream);
  border-color: rgba(245, 237, 228, 0.4);
}

.legal-hero {
  background: var(--cream);
  padding: 80px 24px 64px;
}

.legal-hero .container {
  max-width: 760px;
}

.legal-hero .label {
  display: block;
  margin-bottom: 20px;
}

.legal-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.legal-body {
  padding: 64px 24px 96px;
}

.legal-body .container {
  max-width: 760px;
}

.legal-body h2 {
  font-size: 1.25rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--espresso);
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-body ul {
  margin: 0 0 16px 20px;
}

.legal-body li {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 6px;
}

.success-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  background: var(--cream);
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 28px;
  color: #fff;
}

.success-page h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.success-page p {
  font-size: 1.0625rem;
  max-width: 420px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-image-wrap {
    justify-content: center;
  }

  .hero-image-wrap img {
    max-width: 100%;
    height: 360px;
  }

  .insight-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .how-steps {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .for-whom-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .for-whom-left img {
    display: none;
  }

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

@media (max-width: 640px) {
  :root {
    --section-padding: 64px 24px;
  }

  section {
    padding: 64px 24px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .how-steps {
    grid-template-columns: 1fr;
  }

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

  .footer-nav {
    flex-direction: column;
    gap: 16px;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    bottom: 16px;
  }

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