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

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

:root {
  --bg: #FDFBF5;
  --card: #F7F1E6;
  --foreground: #38322D;
  --muted-fg: #6B6360;
  --border: #E3D9CB;
  --primary: #C49088;
  --primary-fg: #FDFBF5;
  --secondary: #96A289;
  --secondary-fg: #FDFBF5;
  --muted: #EDE5D8;
  --destructive: #D94F4F;
  --radius: 0.75rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --shadow-sm: 0 1px 3px rgba(56, 50, 45, 0.08);
  --shadow: 0 4px 16px rgba(56, 50, 45, 0.10);
  --shadow-lg: 0 8px 32px rgba(56, 50, 45, 0.13);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--bg);
  color: var(--foreground);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(253, 251, 245, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.header__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--foreground);
  transition: color 0.2s;
}

.header__logo:hover {
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  transition: transform 0.15s, opacity 0.15s, background-color 0.2s;
  text-align: center;
  text-decoration: none;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background-color: var(--primary);
  color: var(--primary-fg);
  padding: 0.75rem 1.75rem;
  border-radius: 2rem;
  font-size: 0.95rem;
}

.btn--primary:hover {
  opacity: 0.9;
}

.btn--primary-lg {
  background-color: var(--primary);
  color: var(--primary-fg);
  padding: 1rem 2.25rem;
  border-radius: 0.875rem;
  font-size: 1.1rem;
  font-family: 'Cormorant Garamond', serif;
  box-shadow: var(--shadow-sm);
}

.btn--primary-lg:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.btn--outline {
  background-color: transparent;
  color: var(--foreground);
  border: 1.5px solid var(--border);
  padding: 0.7rem 1.75rem;
  border-radius: 0.875rem;
  font-size: 1rem;
}

.btn--outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn--full {
  width: 100%;
  padding: 0.875rem;
  font-size: 1.05rem;
  border-radius: 0.875rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
}

.section {
  padding: 5rem 0;
}

.section--card {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.section__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

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

.hero {
  padding: 4rem 0 6rem;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  background-color: rgba(196, 144, 136, 0.15);
  color: var(--foreground);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

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

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(56, 50, 45, 0.8);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  font-weight: 300;
}

.hero__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  position: relative;
}

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

.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.problem-card {
  background-color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(227, 217, 203, 0.5);
}

.problem-card__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.problem-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.problem-card p {
  font-size: 0.9rem;
  color: rgba(56, 50, 45, 0.7);
  line-height: 1.7;
}

.outcomes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.outcomes__image-wrap {
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  max-width: 440px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

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

.outcomes__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.outcome-item {
  display: flex;
  gap: 1rem;
}

.outcome-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.outcome-item h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  font-family: 'Nunito', sans-serif;
}

.outcome-item p {
  font-size: 0.9rem;
  color: rgba(56, 50, 45, 0.7);
  line-height: 1.65;
}

.process__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.process__steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.process-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.process-step__num {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background-color: var(--primary);
  color: var(--primary-fg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.process-step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.9rem;
  color: rgba(56, 50, 45, 0.7);
  line-height: 1.7;
}

.process__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  max-width: 480px;
  margin: 0 auto;
}

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

.instructor__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.instructor__text p {
  color: rgba(56, 50, 45, 0.8);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}

.instructor__signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--primary);
  margin-top: 0.5rem;
}

.instructor__image-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

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

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testimonial-card {
  background-color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.testimonial-card p {
  font-style: italic;
  color: rgba(56, 50, 45, 0.8);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.testimonial-card__name {
  font-weight: 500;
  font-size: 0.9rem;
}

.faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.faq__list {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
}

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

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--foreground);
  font-weight: 500;
  transition: color 0.2s;
}

.faq-item__trigger:hover {
  color: var(--primary);
}

.faq-item__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  border-radius: 2px;
}

.faq-item__icon::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}

.faq-item.open .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

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

.faq-item.open .faq-item__body {
  max-height: 400px;
}

.faq-item__content {
  padding: 0 0 1.25rem;
  color: rgba(56, 50, 45, 0.7);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
}

.form-section {
  padding: 5rem 0;
  background-color: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.form-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-section__subtitle {
  color: rgba(56, 50, 45, 0.7);
  font-size: 1rem;
  margin-top: 0.75rem;
  font-weight: 300;
}

.form-wrap {
  background-color: var(--bg);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(227, 217, 203, 0.4);
  max-width: 520px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: rgba(56, 50, 45, 0.8);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--bg);
  color: var(--foreground);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196, 144, 136, 0.15);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--destructive);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group__error {
  display: none;
  color: var(--destructive);
  font-size: 0.82rem;
  margin-top: 0.35rem;
}

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

.form-consent {
  font-size: 0.78rem;
  color: rgba(56, 50, 45, 0.55);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.5;
}

.form-consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-consent a:hover {
  color: var(--primary);
}

footer {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  margin-top: auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer__brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer__tagline {
  color: var(--muted-fg);
  font-size: 0.85rem;
  margin-top: 0.25rem;
  font-weight: 500;
}

.footer__legal {
  margin-top: 0.75rem;
}

.footer__legal p {
  font-size: 0.82rem;
  color: var(--muted-fg);
  line-height: 1.8;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--muted-fg);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--primary);
}

.footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(227, 217, 203, 0.5);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(107, 99, 96, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 200;
  pointer-events: none;
}

.cookie-banner__inner {
  max-width: 780px;
  margin: 0 auto;
  background-color: var(--bg);
  border: 1px solid rgba(227, 217, 203, 0.8);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  pointer-events: auto;
}

.cookie-banner p {
  font-size: 0.88rem;
  color: rgba(56, 50, 45, 0.8);
  flex: 1;
  min-width: 200px;
  line-height: 1.55;
}

.cookie-banner a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner a:hover {
  color: var(--primary);
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn--sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.88rem;
  border-radius: var(--radius);
}

.btn--ghost {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--foreground);
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

.btn--ghost:hover {
  border-color: var(--foreground);
}

.cookie-banner--hidden {
  display: none;
}

.page-legal {
  padding: 4rem 0 6rem;
}

.legal-card {
  background-color: var(--card);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(227, 217, 203, 0.5);
}

.legal-card h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 2rem;
}

.legal-body {
  color: rgba(56, 50, 45, 0.8);
  font-weight: 300;
  line-height: 1.8;
}

.legal-body p {
  margin-bottom: 1rem;
}

.legal-body h2 {
  font-size: 1.15rem;
  color: var(--foreground);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-body ul li {
  margin-bottom: 0.4rem;
}

.legal-body strong {
  font-weight: 600;
  color: var(--foreground);
}

.success-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  flex: 1;
}

.success-card {
  background-color: var(--card);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(227, 217, 203, 0.5);
  text-align: center;
  max-width: 440px;
  width: 100%;
}

.success-icon {
  width: 72px;
  height: 72px;
  background-color: rgba(196, 144, 136, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
}

.success-icon svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
  stroke: var(--primary);
}

.success-card h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.success-card p {
  color: rgba(56, 50, 45, 0.8);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 300;
}

@media (min-width: 640px) {
  .problem__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .footer__links {
    align-items: flex-end;
    text-align: right;
  }
  .legal-card {
    padding: 3rem 3.5rem;
  }
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .hero__image-wrap {
    aspect-ratio: auto;
    height: 580px;
  }
  .outcomes__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .outcomes__image-wrap {
    margin: 0;
  }
  .process__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .process__image-wrap {
    margin: 0;
  }
  .instructor__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}
