/* /founder-modern — Стиль 2: editorial / трендовый
   Палитра: фон #fafaf7 (warm off-white), текст #0a0a0a, accent #d63b1f (коралл)
   Шрифты: Playfair Display (serif, H1/H2), Inter (sans, body)
   Асимметричный layout, много воздуха, документальный стиль
   Без ИИ-штампов (правила 0.7.88, 0.7.91, 0.7.123, 0.7.124)
*/

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  background: #fafaf7;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #0a0a0a;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.2s ease;
}

a:hover {
  color: #d63b1f;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

.section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.1;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

/* ---------------- HERO ---------------- */

.hero {
  padding: 140px 0 110px;
  border-bottom: 1px solid #0a0a0a;
}

.hero__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
}

.hero__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #0a0a0a;
}

.hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: #2a2a2a;
  max-width: 380px;
}

/* ---------------- REVIEWS ---------------- */

.reviews {
  padding: 100px 0;
  border-bottom: 1px solid #e0e0dc;
}

.reviews__placeholder {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: #8a8a85;
  padding: 32px 0;
  border-top: 1px solid #0a0a0a;
  border-bottom: 1px solid #0a0a0a;
}

/* ---------------- PROCESS ---------------- */

.process {
  padding: 100px 0;
  border-bottom: 1px solid #e0e0dc;
}

.process__list {
  list-style: none;
  counter-reset: step;
}

.process__step {
  counter-increment: step;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid #0a0a0a;
  align-items: start;
}

.process__step:last-child {
  border-bottom: 1px solid #0a0a0a;
}

.process__step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #d63b1f;
  padding-top: 8px;
}

.process__step h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 12px;
  line-height: 1.2;
  color: #0a0a0a;
  letter-spacing: -0.01em;
}

.process__step p {
  font-size: 16px;
  line-height: 1.7;
  color: #2a2a2a;
  font-weight: 400;
}

/* ---------------- PRODUCTS ---------------- */

.products {
  padding: 100px 0;
  border-bottom: 1px solid #e0e0dc;
}

.products__list {
  list-style: none;
}

.product {
  padding: 32px 0;
  border-top: 1px solid #e0e0dc;
}

.product:last-child {
  border-bottom: 1px solid #0a0a0a;
}

.product h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 8px;
  line-height: 1.3;
  color: #0a0a0a;
}

.product p {
  font-size: 16px;
  line-height: 1.7;
  color: #2a2a2a;
}

/* ---------------- SPEAKING ---------------- */

.speaking {
  padding: 100px 0;
  border-bottom: 1px solid #e0e0dc;
}

.speaking__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}

.speaking__item {
  padding: 28px 0;
  border-top: 1px solid #e0e0dc;
}

.speaking__item:nth-last-child(-n+2) {
  border-bottom: 1px solid #e0e0dc;
}

.speaking__item h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 8px;
  line-height: 1.3;
  color: #0a0a0a;
}

.speaking__item p {
  font-size: 15px;
  line-height: 1.6;
  color: #2a2a2a;
}

/* ---------------- FINAL CTA ---------------- */

.final-cta {
  padding: 130px 0;
  background: #0a0a0a;
  color: #fafaf7;
}

.final-cta__container {
  max-width: 820px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
}

.final-cta__text {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.4;
  color: #fafaf7;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

/* ---------------- CTA BUTTON ---------------- */

.cta {
  display: inline-block;
  padding: 16px 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  border: none;
}

.cta--primary {
  background: #d63b1f;
  color: #fafaf7;
  border-bottom: none;
}

.cta--primary:hover {
  background: #fafaf7;
  color: #0a0a0a;
}

/* ---------------- FOOTER ---------------- */

.site-footer {
  padding: 48px 0;
  background: #0a0a0a;
  color: #fafaf7;
}

.site-footer .container {
  border-top: 1px solid #2a2a2a;
  padding-top: 24px;
}

.site-footer p {
  font-size: 14px;
  color: #8a8a85;
}

.site-footer a {
  color: #fafaf7;
  border-bottom: 1px solid #2a2a2a;
}

.site-footer a:hover {
  color: #d63b1f;
}

/* ---------------- MOBILE ---------------- */

@media (max-width: 720px) {
  .container,
  .hero__container,
  .final-cta__container {
    padding: 0 24px;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }

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

  .hero__name {
    font-size: clamp(44px, 14vw, 72px);
  }

  .section__title {
    margin-bottom: 36px;
  }

  .process,
  .products,
  .speaking,
  .reviews {
    padding: 64px 0;
  }

  .final-cta {
    padding: 80px 0;
  }

  .final-cta__container {
    padding-left: 24px;
  }

  .process__step {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }

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