:root {
  --c-bg: #FAF7F2;
  --c-bg-warm: #F3EDE3;
  --c-bg-dark: #1C1915;
  --c-primary: #5C2E1A;
  --c-primary-hover: #4A2414;
  --c-gold: #C4883A;
  --c-gold-light: #F5E9D5;
  --c-sage: #5A8E7E;
  --c-sage-light: #EAF2EF;
  --c-text: #1C1915;
  --c-text-mid: #5A5046;
  --c-text-muted: #8A7D6E;
  --c-border: #E3DAD0;
  --c-white: #FFFFFF;
  --c-error: #B03020;
  --ff-serif: 'Georgia', 'Times New Roman', serif;
  --ff-sans: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;
  --sh-sm: 0 1px 6px rgba(28,25,21,0.07);
  --sh-md: 0 4px 20px rgba(28,25,21,0.10);
  --sh-lg: 0 8px 40px rgba(28,25,21,0.14);
  --w-max: 1100px;
  --gap-section: 104px;
}

*, *::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(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--c-primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-primary-hover); text-decoration: underline; }

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

h1, h2, h3, h4 { font-family: var(--ff-serif); line-height: 1.18; color: var(--c-text); }

h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.65rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

p { color: var(--c-text-mid); }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border: 2px solid transparent;
  border-radius: var(--r-sm);
  font-family: var(--ff-sans);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}

.btn-primary { background: var(--c-primary); color: var(--c-white); }
.btn-primary:hover {
  background: var(--c-primary-hover);
  color: var(--c-white);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(92,46,26,.30);
}

.btn-ghost { background: transparent; border-color: var(--c-primary); color: var(--c-primary); }
.btn-ghost:hover { background: var(--c-primary); color: var(--c-white); text-decoration: none; }

.btn-gold { background: var(--c-gold); color: var(--c-white); }
.btn-gold:hover {
  background: #ae7830;
  color: var(--c-white);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(196,136,58,.30);
}

.btn-full { width: 100%; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
}

.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }

.logo { font-family: var(--ff-serif); font-size: 1.35rem; font-weight: 700; color: var(--c-primary); letter-spacing: -.02em; }
.logo span { color: var(--c-gold); }
.logo:hover { text-decoration: none; }

.nav-list { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-list a { font-size: .88rem; font-weight: 500; color: var(--c-text-mid); }
.nav-list a:hover { color: var(--c-primary); text-decoration: none; }

.nav-act { padding: 9px 20px; font-size: .88rem; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; transition: all .3s; }

.hero {
  padding: 72px 0 80px;
  background: linear-gradient(160deg, #F3EDE3 0%, var(--c-bg) 55%);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -40px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(196,136,58,.09) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid { display: grid; grid-template-columns: 1fr 480px; gap: 56px; align-items: center; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-gold-light);
  border: 1px solid rgba(196,136,58,.25);
  border-radius: 40px;
  padding: 5px 14px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--c-primary); }

.hero-sub { font-size: 1.05rem; line-height: 1.72; color: var(--c-text-mid); max-width: 500px; margin-bottom: 36px; }

.hero-proof { display: flex; gap: 32px; flex-wrap: wrap; }

.hero-proof-item { display: flex; flex-direction: column; }
.hero-proof-item strong { font-family: var(--ff-serif); font-size: 1.5rem; color: var(--c-primary); }
.hero-proof-item span { font-size: .78rem; color: var(--c-text-muted); margin-top: 1px; }

.hero-form-box {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 36px 32px;
  box-shadow: var(--sh-lg);
  position: relative;
  z-index: 1;
}

.hero-form-box h2 { font-size: 1.35rem; margin-bottom: 6px; }
.hero-form-box .form-note { font-size: .84rem; color: var(--c-text-muted); margin-bottom: 26px; }

.field { margin-bottom: 16px; }

.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--c-text); margin-bottom: 7px; }

.field input,
.field select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  font-family: var(--ff-sans);
  font-size: .93rem;
  color: var(--c-text);
  background: var(--c-bg);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
  appearance: none;
}

.field input:focus,
.field select:focus {
  border-color: var(--c-sage);
  box-shadow: 0 0 0 3px rgba(90,142,126,.13);
  background: var(--c-white);
}

.field input.err { border-color: var(--c-error); }

.field-err { font-size: .78rem; color: var(--c-error); margin-top: 4px; display: none; }
.field.has-err .field-err { display: block; }

.consent-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 4px; margin-bottom: 20px; }
.consent-row input[type="checkbox"] { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; accent-color: var(--c-sage); cursor: pointer; }
.consent-row label { font-size: .78rem; color: var(--c-text-muted); line-height: 1.5; cursor: pointer; }
.consent-row a { color: var(--c-sage); }

.form-privacy { text-align: center; font-size: .74rem; color: var(--c-text-muted); margin-top: 12px; }

.makes { padding: var(--gap-section) 0; }
.makes-head { max-width: 620px; margin-bottom: 52px; }
.makes-head p { font-size: .97rem; line-height: 1.7; margin-top: 14px; }

.makes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.makes-img { border-radius: var(--r-lg); overflow: hidden; position: relative; box-shadow: var(--sh-md); }
.makes-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.makes-img.tall { aspect-ratio: 3/4; }
.makes-img.wide { aspect-ratio: 4/3; }

.makes-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(28,25,21,.65) 0%, transparent 100%);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .02em;
}

.makes-right { display: flex; flex-direction: column; gap: 24px; }

.program { padding: var(--gap-section) 0; background: var(--c-primary); }
.program-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.program-head { position: sticky; top: 96px; }
.program-head .eyebrow { color: rgba(255,255,255,.55); }
.program-head h2 { color: var(--c-white); margin-bottom: 20px; }
.program-head p { color: rgba(255,255,255,.65); font-size: .97rem; line-height: 1.7; margin-bottom: 32px; }

.program-modules { display: flex; flex-direction: column; gap: 2px; }

.module { border-top: 1px solid rgba(255,255,255,.12); padding: 28px 0; }
.module:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.module-num { font-size: .74rem; font-weight: 700; letter-spacing: .12em; color: var(--c-gold); text-transform: uppercase; margin-bottom: 10px; }
.module h3 { color: var(--c-white); font-size: 1.08rem; margin-bottom: 10px; }
.module p { color: rgba(255,255,255,.62); font-size: .9rem; line-height: 1.65; }

.audience { padding: var(--gap-section) 0; }
.audience-inner { display: grid; grid-template-columns: 440px 1fr; gap: 72px; align-items: center; }
.audience-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); aspect-ratio: 4/3; }
.audience-img img { width: 100%; height: 100%; object-fit: cover; }
.audience-content p { margin-top: 14px; margin-bottom: 36px; font-size: .97rem; line-height: 1.72; }

.who-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.who-list li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; background: var(--c-bg-warm); border-radius: var(--r-md); }
.who-icon { flex-shrink: 0; width: 36px; height: 36px; background: var(--c-white); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-sm); font-size: 1rem; }
.who-list strong { display: block; font-size: .93rem; margin-bottom: 2px; color: var(--c-text); }
.who-list p { font-size: .84rem; color: var(--c-text-muted); }

.format { padding: var(--gap-section) 0; background: var(--c-bg-warm); }
.format-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.format-features { display: flex; flex-direction: column; gap: 30px; }

.ff { display: flex; gap: 18px; align-items: flex-start; }
.ff-dot { flex-shrink: 0; width: 10px; height: 10px; border-radius: 50%; background: var(--c-gold); margin-top: 7px; }
.ff h3 { font-size: 1rem; margin-bottom: 6px; }
.ff p { font-size: .88rem; line-height: 1.65; }

.format-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); aspect-ratio: 4/3; }
.format-img img { width: 100%; height: 100%; object-fit: cover; }

.process { padding: var(--gap-section) 0; }
.process-head { max-width: 560px; margin-bottom: 60px; }
.process-head p { margin-top: 14px; font-size: .97rem; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before { content: ''; position: absolute; top: 22px; left: 22px; right: 22px; height: 1px; background: var(--c-border); }

.step { padding: 0 16px; position: relative; }
.step-n {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--c-primary);
  background: var(--c-bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-serif);
  font-size: 1rem; font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.step h3 { font-size: .97rem; margin-bottom: 8px; }
.step p { font-size: .85rem; line-height: 1.6; }

.faq { padding: var(--gap-section) 0; background: var(--c-sage-light); }
.faq-head { text-align: center; max-width: 540px; margin: 0 auto 48px; }
.faq-head p { margin-top: 12px; font-size: .97rem; }
.faq-items { max-width: 720px; margin: 0 auto; }

.qi { border-bottom: 1px solid #C9DDD8; background: transparent; }
.qi:first-child { border-top: 1px solid #C9DDD8; }

.qi-q {
  width: 100%;
  background: none; border: none;
  padding: 20px 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer;
  font-family: var(--ff-sans);
  font-size: .97rem; font-weight: 600;
  color: var(--c-text); text-align: left;
  transition: color .2s;
}
.qi-q:hover { color: var(--c-primary); }

.qi-mark {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-sage);
  font-size: 1rem; font-weight: 400; line-height: 1;
  transition: all .25s;
}

.qi.open .qi-mark { background: var(--c-sage); border-color: var(--c-sage); color: var(--c-white); transform: rotate(45deg); }

.qi-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.qi-a-inner { padding: 0 4px 20px; font-size: .92rem; color: var(--c-text-mid); line-height: 1.72; }
.qi.open .qi-a { max-height: 280px; }

.cta-strip { padding: var(--gap-section) 0; background: var(--c-bg-dark); position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; top: -80px; left: -80px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(92,46,26,.35) 0%, transparent 70%); pointer-events: none; }
.cta-strip-inner { position: relative; z-index: 1; text-align: center; max-width: 600px; margin: 0 auto; }
.cta-strip-inner .eyebrow { color: rgba(255,255,255,.45); }
.cta-strip-inner h2 { color: var(--c-white); margin-bottom: 18px; }
.cta-strip-inner p { color: rgba(255,255,255,.65); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }

.site-footer { background: var(--c-bg-dark); border-top: 1px solid rgba(255,255,255,.07); padding: 52px 0 32px; }

.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
.footer-brand .logo { display: inline-block; margin-bottom: 14px; color: rgba(255,255,255,.85); }
.footer-brand p { font-size: .86rem; color: rgba(255,255,255,.45); line-height: 1.7; max-width: 280px; }

.footer-col h4 { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .86rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col a:hover { color: rgba(255,255,255,.88); text-decoration: none; }

.footer-line { border-top: 1px solid rgba(255,255,255,.08); padding-top: 26px; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-legal { font-size: .76rem; color: rgba(255,255,255,.3); line-height: 1.75; }
.footer-copy { font-size: .76rem; color: rgba(255,255,255,.3); flex-shrink: 0; }

.cookie-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: rgba(28,25,21,.97); backdrop-filter: blur(8px); border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; transform: translateY(0); transition: transform .35s ease; }
.cookie-bar.hidden { transform: translateY(110%); }

.cookie-bar-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-bar p { flex: 1; font-size: .84rem; color: rgba(255,255,255,.65); line-height: 1.55; min-width: 220px; }
.cookie-bar a { color: rgba(255,255,255,.85); text-decoration: underline; }

.cookie-acts { display: flex; gap: 10px; flex-shrink: 0; }
.ck-yes { padding: 9px 20px; background: var(--c-sage); color: var(--c-white); border: none; border-radius: var(--r-sm); font-size: .84rem; font-weight: 700; cursor: pointer; transition: background .2s; }
.ck-yes:hover { background: #4a7a6c; }
.ck-no { padding: 9px 14px; background: transparent; color: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.2); border-radius: var(--r-sm); font-size: .84rem; cursor: pointer; transition: all .2s; }
.ck-no:hover { border-color: rgba(255,255,255,.5); color: rgba(255,255,255,.75); }

.legal-page { padding: 80px 0; min-height: 80vh; }
.legal-page h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 10px; }
.legal-date { font-size: .83rem; color: var(--c-text-muted); margin-bottom: 52px; }
.legal-body h2 { font-size: 1.12rem; margin: 38px 0 12px; }
.legal-body p { font-size: .93rem; line-height: 1.78; margin-bottom: 12px; }
.legal-body ul { padding-left: 20px; margin-bottom: 12px; }
.legal-body li { font-size: .93rem; line-height: 1.78; color: var(--c-text-mid); margin-bottom: 5px; }

.success-pg { min-height: 82vh; display: flex; align-items: center; justify-content: center; padding: 80px 24px; text-align: center; }
.success-inner { max-width: 480px; }
.success-check { width: 72px; height: 72px; background: var(--c-sage-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 28px; }
.success-check svg { width: 34px; height: 34px; stroke: var(--c-sage); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.success-inner h1 { font-size: clamp(1.6rem, 3vw, 2rem); margin-bottom: 14px; }
.success-inner p { font-size: .97rem; line-height: 1.72; margin-bottom: 32px; }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  :root { --gap-section: 80px; }
  .hero-grid { grid-template-columns: 1fr; max-width: 600px; }
  .hero-form-box { order: -1; }
  .makes-grid { grid-template-columns: 1fr; max-width: 520px; }
  .makes-img.tall { aspect-ratio: 16/9; }
  .program-inner { grid-template-columns: 1fr; gap: 48px; }
  .program-head { position: static; }
  .audience-inner { grid-template-columns: 1fr; gap: 40px; }
  .audience-img { max-height: 280px; }
  .format-inner { grid-template-columns: 1fr; gap: 40px; }
  .format-img { order: -1; max-height: 280px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --gap-section: 60px; }
  .nav-list { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--c-bg); flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 48px; gap: 24px; z-index: 99; }
  .nav-list.open { display: flex; }
  .nav-list a { font-size: 1.05rem; }
  .nav-act-wrap { display: none; }
  .burger { display: flex; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-line { flex-direction: column; gap: 12px; }
  .cookie-bar-inner { flex-direction: column; align-items: flex-start; }
  .cookie-acts { width: 100%; }
  .ck-yes { flex: 1; text-align: center; }
}

@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .hero-proof { gap: 20px; }
  .btn-lg { width: 100%; }
}
