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

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

:root {
  --clay:    #C4733B;
  --clay-d:  #A35C28;
  --clay-l:  #E9916A;
  --cream:   #FBF7F4;
  --sand:    #F0E6DA;
  --linen:   #E8D9CB;
  --bark:    #3D2B1F;
  --bark-m:  #6B4A35;
  --bark-s:  #9C7A62;
  --white:   #FFFFFF;
  --shadow:  rgba(61,43,31,.08);
  --radius:  16px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--bark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--bark);
}

a { color: var(--clay); text-decoration: none; transition: color .2s; }
a:hover { color: var(--clay-d); }

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

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

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,247,244,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--linen);
  padding: 14px 0;
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--bark); letter-spacing: -.02em;
}
.nav__logo span { color: var(--clay); }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: .9375rem; font-weight: 600;
  cursor: pointer; border: none; outline: none;
  transition: transform .18s, box-shadow .18s, background .18s;
  text-decoration: none;
}
.btn--primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(196,115,59,.3);
}
.btn--primary:hover {
  background: var(--clay-d);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196,115,59,.4);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--clay);
  border: 2px solid var(--clay);
}
.btn--outline:hover {
  background: var(--clay);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--sm { padding: 10px 22px; font-size: .875rem; }

.hero {
  padding: 80px 0 0;
  background: linear-gradient(160deg, var(--cream) 55%, var(--sand) 100%);
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero__label {
  display: inline-block;
  background: var(--sand);
  border: 1px solid var(--linen);
  color: var(--clay);
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 20px;
}
.hero__title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700; margin-bottom: 20px;
}
.hero__title em { color: var(--clay); font-style: italic; }
.hero__text {
  font-size: 1.0625rem; color: var(--bark-m);
  margin-bottom: 36px; max-width: 460px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__note {
  font-size: .8125rem; color: var(--bark-s); margin-top: 16px;
}
.hero__img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(61,43,31,.15);
  transform: rotate(1.5deg);
  transition: transform .4s;
}
.hero__img:hover { transform: rotate(0deg); }
.hero__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.strip {
  background: var(--bark);
  color: var(--cream);
  padding: 28px 0;
  margin-top: -1px;
}
.strip__inner {
  display: flex; gap: 40px;
  justify-content: center; flex-wrap: wrap;
  text-align: center;
}
.strip__item { font-size: .9375rem; font-weight: 500; }
.strip__item span { color: var(--clay-l); font-weight: 700; }

.section { padding: 96px 0; }
.section--alt { background: var(--sand); }
.section__label {
  display: inline-block;
  color: var(--clay); font-size: .8125rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}
.section__sub {
  font-size: 1.0625rem; color: var(--bark-m);
  max-width: 580px;
  margin-bottom: 52px;
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.audience__card {
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}
.audience__card:hover {
  box-shadow: 0 8px 32px var(--shadow);
  transform: translateY(-3px);
}
.audience__icon { font-size: 2rem; margin-bottom: 14px; }
.audience__title { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 8px; }
.audience__text { font-size: .9375rem; color: var(--bark-m); }

.format__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.format__item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--linen);
}
.format__num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: var(--clay);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
}
.format__body h4 { font-size: 1rem; margin-bottom: 5px; }
.format__body p { font-size: .9rem; color: var(--bark-m); }

.learn__two {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.learn__list {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
}
.learn__list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: .9875rem;
}
.learn__list li::before {
  content: '';
  flex-shrink: 0;
  width: 22px; height: 22px;
  background: var(--clay);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
  margin-top: 2px;
}
.learn__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 40px var(--shadow);
}
.learn__img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

.examples__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px var(--shadow);
  margin-bottom: 40px;
}
.examples__img img { width: 100%; aspect-ratio: 16/7; object-fit: cover; }
.examples__caption {
  text-align: center; font-size: .9375rem;
  color: var(--bark-m); font-style: italic;
}

.materials__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.materials__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 48px var(--shadow);
}
.materials__img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.materials__list {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px;
}
.materials__list li {
  display: flex; gap: 12px; align-items: center;
  font-size: .9875rem;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 10px;
  border: 1px solid var(--linen);
}
.materials__list li span:first-child { font-size: 1.25rem; }

.instructor__inner {
  display: grid; grid-template-columns: 340px 1fr; gap: 64px; align-items: center;
}
.instructor__photo {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 20px 56px var(--shadow);
  position: relative;
}
.instructor__photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.instructor__badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: .875rem; color: var(--bark-m);
  border: 1px solid var(--linen);
}
.instructor__badge strong { color: var(--clay); }
.instructor__name {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 6px;
}
.instructor__role {
  font-size: .9375rem; color: var(--clay); font-weight: 600;
  margin-bottom: 20px;
}
.instructor__bio {
  font-size: 1rem; color: var(--bark-m); margin-bottom: 28px;
  max-width: 520px;
}
.instructor__facts {
  display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 32px;
}
.instructor__fact { text-align: center; }
.instructor__fact-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--clay);
}
.instructor__fact-label { font-size: .8rem; color: var(--bark-s); }

.testimonials__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute; top: 16px; left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 4rem; color: var(--sand); line-height: 1;
}
.testimonial__text {
  font-size: .9625rem; color: var(--bark-m);
  margin-bottom: 18px; position: relative; z-index: 1;
  font-style: italic; margin-top: 20px;
}
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700; color: var(--clay);
  flex-shrink: 0;
}
.testimonial__name { font-weight: 600; font-size: .9rem; }
.testimonial__city { font-size: .8rem; color: var(--bark-s); }

.faq__list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--linen);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 1rem; font-weight: 500;
  gap: 16px;
  user-select: none;
  transition: background .2s;
}
.faq__question:hover { background: var(--cream); }
.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--sand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s, background .2s;
  font-size: 1.1rem; color: var(--clay);
}
.faq__item.open .faq__icon { transform: rotate(45deg); background: var(--clay); color: var(--white); }
.faq__answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  padding: 0 24px;
  font-size: .9625rem; color: var(--bark-m);
}
.faq__item.open .faq__answer { max-height: 400px; padding: 0 24px 20px; }

.form-section {
  background: linear-gradient(135deg, var(--bark) 0%, #5a2e1a 100%);
  padding: 96px 0;
  color: var(--cream);
}
.form-section .section__label { color: var(--clay-l); }
.form-section .section__title { color: var(--white); }
.form-section .section__sub { color: rgba(251,247,244,.7); }
.form-wrap {
  max-width: 560px;
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
}
.form__row { margin-bottom: 18px; }
.form__label {
  display: block;
  font-size: .875rem; font-weight: 600;
  color: var(--bark); margin-bottom: 7px;
}
.form__label .req { color: var(--clay); }
.form__input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--linen);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: .9625rem;
  color: var(--bark);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form__input:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(196,115,59,.15);
}
.form__input::placeholder { color: var(--bark-s); }
.form__submit { width: 100%; padding: 16px; font-size: 1rem; }
.form__consent {
  margin-top: 14px;
  font-size: .8rem; color: var(--bark-s); line-height: 1.5; text-align: center;
}
.form__consent a { color: var(--clay); }
.form__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.form__copy { padding-top: 16px; }
.form__copy-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; color: var(--white);
  margin-bottom: 16px;
}
.form__promises { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.form__promises li {
  display: flex; gap: 10px; align-items: center;
  font-size: .9375rem; color: rgba(251,247,244,.85);
}
.form__promises li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--clay);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}

.footer {
  background: var(--bark);
  color: rgba(251,247,244,.6);
  padding: 56px 0 32px;
  font-size: .875rem;
}
.footer__top {
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--cream); margin-bottom: 10px;
}
.footer__logo span { color: var(--clay-l); }
.footer__tagline { font-size: .9rem; max-width: 280px; }
.footer__nav { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }
.footer__nav a { color: rgba(251,247,244,.6); transition: color .2s; }
.footer__nav a:hover { color: var(--clay-l); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 12px;
}
.footer__company { line-height: 1.7; }

.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 520px;
  background: var(--bark);
  color: var(--cream);
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  z-index: 9999;
  display: none;
  font-size: .9rem;
  line-height: 1.55;
}
.cookie-banner.visible { display: flex; flex-direction: column; gap: 14px; animation: slideUp .3s ease; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.cookie-banner__text a { color: var(--clay-l); }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner__btn {
  padding: 10px 22px; border-radius: 100px;
  font-size: .875rem; font-weight: 600; cursor: pointer;
  border: none; font-family: 'Inter', sans-serif;
  transition: opacity .2s;
}
.cookie-banner__btn:hover { opacity: .85; }
.cookie-banner__btn--accept { background: var(--clay); color: var(--white); }
.cookie-banner__btn--decline { background: transparent; color: rgba(251,247,244,.7); border: 1px solid rgba(255,255,255,.2); }

.legal-header {
  background: linear-gradient(160deg, var(--sand) 0%, var(--cream) 100%);
  padding: 80px 0 56px;
}
.legal-header__back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--clay); font-size: .9rem; font-weight: 500;
  margin-bottom: 20px;
}
.legal-header h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 10px; }
.legal-header__meta { font-size: .9rem; color: var(--bark-s); }
.legal-content { padding: 64px 0 96px; }
.legal-content h2 {
  font-size: 1.375rem; margin: 36px 0 14px;
  padding-top: 36px;
  border-top: 1px solid var(--linen);
}
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content p { font-size: .9875rem; color: var(--bark-m); margin-bottom: 14px; }
.legal-content ul { margin: 10px 0 16px 20px; display: flex; flex-direction: column; gap: 6px; }
.legal-content li { font-size: .9875rem; color: var(--bark-m); }
.legal-details {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 24px;
  margin: 20px 0;
  font-size: .9375rem;
}
.legal-details strong { color: var(--bark); }

.success-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--cream) 0%, var(--sand) 100%);
  padding: 40px 24px;
  text-align: center;
}
.success-card {
  max-width: 520px;
  background: var(--white);
  border-radius: 24px;
  padding: 60px 48px;
  box-shadow: 0 16px 56px var(--shadow);
}
.success-card__icon { font-size: 4rem; margin-bottom: 20px; }
.success-card h1 { font-size: 2rem; margin-bottom: 14px; }
.success-card p { font-size: 1rem; color: var(--bark-m); margin-bottom: 32px; }

@media (max-width: 900px) {
  .hero__inner,
  .learn__two,
  .materials__inner,
  .instructor__inner,
  .form__inner { grid-template-columns: 1fr; }
  .hero__img { transform: none; order: -1; }
  .instructor__inner { grid-template-columns: 1fr; }
  .instructor__photo { max-width: 300px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__nav { align-items: flex-start; }
  .form-wrap { padding: 36px 24px; }
}
@media (max-width: 620px) {
  .section { padding: 64px 0; }
  .nav__logo { font-size: 1.25rem; }
  .strip__inner { gap: 20px; }
  .form__inner { padding: 0; }
  .footer__bottom { flex-direction: column; }
  .btn { padding: 13px 24px; }
}
