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

:root {
  --cream: #FAF7F4;
  --cream-dark: #EDE8E1;
  --sage: #5E7051;
  --sage-light: #8FA882;
  --sage-pale: #EBF0E8;
  --caramel: #B8825A;
  --caramel-light: #D4A47C;
  --dark: #2A2A2A;
  --medium: #5C5C5C;
  --soft: #9A9490;
  --border: #DDD6CD;
  --white: #FFFFFF;
  --shadow: 0 2px 20px rgba(42, 42, 42, 0.08);
  --shadow-md: 0 6px 40px rgba(42, 42, 42, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'Inter', system-ui, sans-serif;
}

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

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

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

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

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

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

.serif {
  font-family: var(--ff-serif);
}

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  line-height: 1.2;
  font-weight: 500;
}

.section-label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 16px;
}

.section-label--light {
  color: var(--caramel-light);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--dark);
  margin-bottom: 16px;
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-size: 17px;
  color: var(--medium);
  max-width: 560px;
  line-height: 1.7;
}

.section-subtitle--light {
  color: rgba(255,255,255,0.75);
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(250, 247, 244, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 32px;
}

.site-logo {
  font-family: var(--ff-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--medium);
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--sage);
}

.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover {
  background: #4A5C3D !important;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 20px;
}

.hero__title {
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--sage);
}

.hero__text {
  font-size: 18px;
  color: var(--medium);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--medium);
}

.hero__point-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.hero__point-icon::after {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sage);
  border-radius: 50%;
}

.lead-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.lead-form-card__title {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 8px;
  font-family: var(--ff-serif);
}

.lead-form-card__sub {
  font-size: 14px;
  color: var(--soft);
  margin-bottom: 28px;
  line-height: 1.5;
}

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--medium);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: 15px;
  color: var(--dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(94, 112, 81, 0.12);
  background: var(--white);
}

.form-input::placeholder {
  color: var(--soft);
}

.form-input.error {
  border-color: #C0392B;
}

.form-error {
  font-size: 12px;
  color: #C0392B;
  margin-top: 4px;
  display: none;
}

.form-error.visible {
  display: block;
}

.btn-primary {
  display: block;
  width: 100%;
  padding: 15px 24px;
  background: var(--sage);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--ff-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}

.btn-primary:hover {
  background: #4A5C3D;
  transform: translateY(-1px);
}

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

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

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

.emotional {
  background: var(--dark);
  color: var(--white);
  padding: 96px 0;
}

.emotional__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.emotional__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.emotional__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.emotional__content .section-label {
  color: var(--caramel-light);
}

.emotional__title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 24px;
}

.emotional__title em {
  font-style: italic;
  color: var(--sage-light);
}

.emotional__text {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

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

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

.outcome-card__num {
  font-family: var(--ff-serif);
  font-size: 42px;
  color: var(--sage-pale);
  color: #D4E4CF;
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 600;
}

.outcome-card__title {
  font-family: var(--ff-serif);
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 500;
}

.outcome-card__text {
  font-size: 14px;
  color: var(--medium);
  line-height: 1.7;
}

.modules {
  background: var(--sage);
  color: var(--white);
  padding: 96px 0;
}

.modules__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.module-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 28px 28px;
  transition: background 0.25s;
}

.module-card:hover {
  background: rgba(255,255,255,0.13);
}

.module-card__tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--caramel-light);
  margin-bottom: 10px;
}

.module-card__title {
  font-family: var(--ff-serif);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 500;
}

.module-card__desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

.audience__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 52px;
}

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

.audience-item__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.audience-item__text {
  font-size: 15px;
  color: var(--dark);
  line-height: 1.6;
}

.audience-item__text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark);
}

.format {
  background: var(--cream-dark);
}

.format__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 52px;
}

.format__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.format__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.format__steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.format-step {
  display: flex;
  gap: 20px;
}

.format-step__num {
  font-family: var(--ff-serif);
  font-size: 36px;
  color: var(--border);
  line-height: 1;
  min-width: 40px;
  font-weight: 500;
}

.format-step__content {}

.format-step__title {
  font-family: var(--ff-serif);
  font-size: 19px;
  color: var(--dark);
  margin-bottom: 6px;
  font-weight: 500;
}

.format-step__text {
  font-size: 14px;
  color: var(--medium);
  line-height: 1.7;
}

.faq__list {
  max-width: 720px;
  margin: 52px auto 0;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-serif);
  font-size: 19px;
  color: var(--dark);
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--sage);
  transition: transform 0.25s;
}

.faq-item.open .faq-icon {
  background: var(--sage);
}

.faq-item.open .faq-icon svg {
  stroke: var(--white);
  transform: rotate(45deg);
}

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

.faq-answer__inner {
  padding-bottom: 22px;
  font-size: 15px;
  color: var(--medium);
  line-height: 1.75;
}

.cta-section {
  background: var(--cream-dark);
  padding: 96px 0;
}

.cta-section__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cta-section__title {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--dark);
  margin-bottom: 16px;
}

.cta-section__sub {
  font-size: 17px;
  color: var(--medium);
  margin-bottom: 48px;
  line-height: 1.65;
}

.cta-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  text-align: left;
}

.site-footer {
  background: #1E1E1E;
  color: rgba(255,255,255,0.55);
  padding: 56px 0 36px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-brand__logo {
  font-family: var(--ff-serif);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand__logo span {
  color: var(--sage-light);
}

.footer-brand__desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col__title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-col__links a:hover {
  color: var(--white);
}

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

.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}

.footer-legal a {
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.97);
  color: rgba(255,255,255,0.8);
  padding: 20px 32px;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 1px solid rgba(255,255,255,0.1);
}

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

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}

.cookie-banner__text a {
  color: var(--sage-light);
  text-decoration: underline;
}

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

.btn-cookie-accept {
  padding: 10px 24px;
  background: var(--sage);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--ff-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cookie-accept:hover {
  background: #4A5C3D;
}

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

.success-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  max-width: 540px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-md);
}

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

.success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--sage);
}

.success-title {
  font-size: 34px;
  color: var(--dark);
  margin-bottom: 16px;
}

.success-text {
  font-size: 16px;
  color: var(--medium);
  line-height: 1.7;
  margin-bottom: 36px;
}

.btn-back {
  display: inline-block;
  padding: 13px 32px;
  background: var(--sage);
  color: var(--white);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}

.btn-back:hover {
  background: #4A5C3D;
  transform: translateY(-1px);
}

.legal-page {
  padding-top: 120px;
  padding-bottom: 96px;
}

.legal-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-header h1 {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--dark);
  margin-bottom: 12px;
}

.legal-header p {
  font-size: 14px;
  color: var(--soft);
}

.legal-content h2 {
  font-size: 22px;
  color: var(--dark);
  margin: 40px 0 14px;
}

.legal-content p {
  font-size: 15px;
  color: var(--medium);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 15px;
  color: var(--medium);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--sage);
  text-decoration: underline;
}

.legal-max {
  max-width: 740px;
}

.legal-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 244, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 64px;
  }

  .lead-form-card {
    max-width: 560px;
  }

  .outcomes__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .site-nav {
    display: none;
  }

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

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

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

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

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

  .lead-form-card,
  .cta-form {
    padding: 28px 22px;
  }

  .success-card {
    padding: 40px 24px;
  }

  .hero__title {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .site-header__inner {
    padding: 0 16px;
  }

  .hero {
    padding-top: 90px;
  }
}
