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

:root {
  --clay:        #B87355;
  --clay-hover:  #9E5F42;
  --clay-light:  #F0DDD1;
  --clay-pale:   #FAF4EF;
  --dark:        #1E1A17;
  --dark-mid:    #3A322D;
  --body:        #4A3F38;
  --muted:       #8C7B6E;
  --border:      #E8DDD5;
  --bg:          #FAFAF7;
  --bg-alt:      #F5EFE8;
  --white:       #FFFFFF;

  --serif:  'Georgia', 'Times New Roman', serif;
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --r:    6px;
  --r-lg: 14px;
  --sh:   0 2px 16px rgba(30,26,23,.07);
  --sh-md:0 6px 32px rgba(30,26,23,.12);

  --max: 1120px;
  --pad: 24px;
}

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--clay); text-decoration: none; transition: color .2s; }
a:hover { color: var(--clay-hover); }

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clay);
  padding: 5px 14px;
  background: var(--clay-light);
  border-radius: 100px;
  margin-bottom: 18px;
}

.sec-head { margin-bottom: 48px; }
.sec-head h2 { font-size: clamp(1.6rem,3.5vw,2.2rem); margin-bottom: 14px; }
.sec-head p  { color: var(--muted); max-width: 520px; font-size: .97rem; }
.sec-head.center { text-align: center; }
.sec-head.center p { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 500;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
  line-height: 1;
}

.btn-clay {
  background: var(--clay);
  color: #fff;
  box-shadow: 0 3px 14px rgba(184,115,85,.35);
}
.btn-clay:hover {
  background: var(--clay-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(184,115,85,.45);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--clay);
  color: var(--clay);
}
.btn-outline:hover { background: var(--clay); color: #fff; }


/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,247,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--dark);
  font-style: italic;
  letter-spacing: -.02em;
}
.logo span { color: var(--clay); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a { font-size: .9rem; color: var(--body); }
.nav-links a:hover { color: var(--clay); }


/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .25s;
}

.mob-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 24px var(--pad) 32px;
  z-index: 99;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--sh-md);
}
.mob-nav.open { display: flex; }
.mob-nav a {
  font-size: .97rem;
  color: var(--body);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mob-nav a:last-child { border: none; margin-top: 10px; }


/* ─── HERO ─── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 64px);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad))) 72px max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  padding-right: 60px;
}

.hero-left h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero-left h1 em { font-style: italic; color: var(--clay); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
}

.hero-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-form input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-size: .93rem;
  font-family: var(--sans);
  background: var(--white);
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
}
.hero-form input:focus { border-color: var(--clay); }
.hero-form input::placeholder { color: var(--muted); }

.hero-form .btn-clay {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

.hero-trust {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-trust::before { content: '🔒'; font-size: .8rem; }

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-radius: var(--r-lg);
  padding: 16px 22px;
  box-shadow: var(--sh-md);
}
.hero-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--dark);
  line-height: 1;
}
.hero-badge span {
  font-size: .78rem;
  color: var(--muted);
  margin-top: 3px;
  display: block;
}


/* ─── PAIN ─── */
.sec-pain { background: var(--bg-alt); padding: 88px 0; }

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.pain-intro h2 { font-size: clamp(1.5rem,3vw,2rem); margin-bottom: 16px; }
.pain-intro p { color: var(--muted); font-size: .95rem; }

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: border-color .2s, box-shadow .2s;
}
.pain-item:hover { border-color: var(--clay-light); box-shadow: var(--sh); }

.pain-emoji { font-size: 1.3rem; flex-shrink: 0; line-height: 1.4; }

.pain-item strong {
  display: block;
  font-size: .93rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}
.pain-item span { font-size: .84rem; color: var(--muted); }


/* ─── PROGRAM ─── */
.sec-program { padding: 88px 0; }

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

.module {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.module:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }

.module-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--clay-light);
  line-height: 1;
  margin-bottom: 14px;
}
.module h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--dark);
}
.module p { font-size: .86rem; color: var(--muted); line-height: 1.65; }


/* ─── HOW ─── */
.sec-how {
  background: var(--dark);
  padding: 88px 0;
}
.sec-how .tag { background: rgba(184,115,85,.2); color: #D9A88A; }
.sec-how h2 { color: #fff; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 8px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: rgba(184,115,85,.3);
}

.step { text-align: center; }

.step-dot {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--clay);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.step h3 { color: #fff; font-size: 1rem; font-family: var(--sans); font-weight: 600; margin-bottom: 10px; }
.step p  { color: rgba(255,255,255,.55); font-size: .86rem; line-height: 1.65; }


/* ─── GALLERY ─── */
.sec-gallery { background: var(--bg-alt); padding: 88px 0; }

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

.gallery-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh);
  transition: transform .2s, box-shadow .2s;
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.gallery-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.gallery-cap {
  padding: 16px 18px;
}
.gallery-cap strong {
  display: block;
  font-size: .93rem;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 3px;
}
.gallery-cap span { font-size: .8rem; color: var(--muted); }


/* ─── BENEFITS ─── */
.sec-benefits { padding: 88px 0; }

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.benefit {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 24px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color .2s;
}
.benefit:hover { border-color: var(--clay-light); }

.benefit-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--clay-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.benefit h3 {
  font-size: .97rem;
  font-family: var(--sans);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.benefit p { font-size: .86rem; color: var(--muted); line-height: 1.65; }


/* ─── FAQ ─── */
.sec-faq { background: var(--bg-alt); padding: 88px 0; }

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .93rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: background .2s;
}
.faq-q:hover { background: var(--clay-pale); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--clay);
  transition: transform .25s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(180deg); background: var(--clay); color: #fff; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }
.faq-a p { font-size: .88rem; color: var(--muted); line-height: 1.75; }


/* ─── LEAD ─── */
.sec-lead {
  background: linear-gradient(140deg, #2A2320 0%, #3D2E28 100%);
  padding: 96px 0;
  text-align: center;
}

.sec-lead .tag { background: rgba(184,115,85,.25); color: #D9A88A; }
.sec-lead h2 { color: #fff; font-size: clamp(1.6rem,3.5vw,2.3rem); margin-bottom: 14px; }
.sec-lead > .wrap > p { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 48px; }

.lead-box {
  max-width: 480px;
  margin: 0 auto;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  text-align: left;
}

.lead-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.lead-fields input,
.lead-fields select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--r);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-family: var(--sans);
  font-size: .93rem;
  outline: none;
  transition: border-color .2s;
}
.lead-fields input::placeholder { color: rgba(255,255,255,.45); }
.lead-fields input:focus, .lead-fields select:focus { border-color: var(--clay); }
.lead-fields select { appearance: none; cursor: pointer; }
.lead-fields select option { background: #2A2320; color: #fff; }

.lead-btn {
  width: 100%;
  padding: 15px;
  background: var(--clay);
  color: #fff;
  border: none;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 18px rgba(184,115,85,.4);
}
.lead-btn:hover { background: var(--clay-hover); transform: translateY(-1px); }

.lead-note {
  margin-top: 14px;
  font-size: .76rem;
  color: rgba(255,255,255,.38);
  line-height: 1.55;
  text-align: center;
}
.lead-note a { color: rgba(255,255,255,.55); text-decoration: underline; }


/* ─── FOOTER ─── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.55);
  padding: 60px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}

.footer-brand .logo {
  display: block;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  font-family: var(--sans);
  margin-bottom: 16px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .84rem;
  color: rgba(255,255,255,.45);
  transition: color .2s;
}
.footer-links a:hover { color: #D9A88A; }

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal {
  font-size: .77rem;
  color: rgba(255,255,255,.28);
  line-height: 1.8;
}
.footer-legal a { color: rgba(255,255,255,.35); }
.footer-copy { font-size: .77rem; color: rgba(255,255,255,.28); white-space: nowrap; }


/* ─── COOKIE ─── */
.cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--dark-mid);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s ease;
}
.cookie.visible { transform: translateY(0); }
.cookie p { font-size: .84rem; color: rgba(255,255,255,.65); flex: 1; min-width: 200px; }
.cookie a { color: #D9A88A; }

.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }

.cbtn {
  padding: 9px 20px;
  border-radius: var(--r);
  font-size: .84rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
  transition: all .2s;
}
.cbtn-accept { background: var(--clay); color: #fff; }
.cbtn-accept:hover { background: var(--clay-hover); }
.cbtn-decline { background: rgba(255,255,255,.1); color: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.15); }
.cbtn-decline:hover { background: rgba(255,255,255,.15); }


/* ─── LEGAL PAGES ─── */
.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px var(--pad) 100px;
}
.legal-wrap h1 { font-size: 1.9rem; margin-bottom: 6px; }
.legal-wrap .upd { font-size: .82rem; color: var(--muted); margin-bottom: 42px; }
.legal-wrap h2 { font-size: 1.1rem; font-family: var(--sans); font-weight: 600; margin: 34px 0 10px; color: var(--dark); }
.legal-wrap p, .legal-wrap li { font-size: .91rem; color: var(--body); line-height: 1.8; }
.legal-wrap ul, .legal-wrap ol { padding-left: 22px; margin: 10px 0; }
.legal-wrap li { margin-bottom: 6px; }


/* ─── SUCCESS ─── */
.success-wrap {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px var(--pad);
}
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #D6EDD6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 28px;
}
.success-wrap h1 { margin-bottom: 14px; }
.success-wrap p { color: var(--muted); font-size: 1rem; max-width: 400px; margin-bottom: 32px; }


/* ─── ANIMATIONS ─── */
.fade { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.fade.in { opacity: 1; transform: none; }


/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 56px var(--pad); }
  .hero-right { height: 420px; }
  .modules { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links, .nav > .btn-clay { display: none; }
  .hamburger { display: flex; }

  .pain-grid { grid-template-columns: 1fr; gap: 36px; }
  .modules { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .steps::before { display: none; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .lead-box { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .cookie { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 500px) {
  .gallery { grid-template-columns: 1fr; }
  .hero-form-row { grid-template-columns: 1fr; }
}
