:root {
  --bg:         #F8F5F0;
  --surface:    #EDE8DF;
  --surface-2:  #E3DCD1;
  --accent:     #7B4F2E;
  --accent-h:   #6A4226;
  --gold:       #B8892A;
  --text:       #231E15;
  --text-muted: #7D6E59;
  --border:     #D5CCBB;
  --white:      #FFFFFF;
  --shadow-sm:  0 1px 4px rgba(35, 30, 21, .07);
  --shadow-md:  0 4px 16px rgba(35, 30, 21, .10);
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.22s ease;
  --max-w:      1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.25;
  color: var(--text);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.75; }

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

.section {
  padding: 72px 0;
}

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: .97rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(123, 79, 46, .30);
}
.btn-primary:hover {
  background: var(--accent-h);
  box-shadow: 0 4px 16px rgba(123, 79, 46, .40);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 240, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}

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

.header-cta { font-size: .88rem; padding: 10px 22px; }

.hero {
  padding: 80px 0 64px;
  overflow: hidden;
}

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

.hero-content {}

.hero-eyebrow {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 { margin-bottom: 20px; }

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-note {
  font-size: .82rem;
  color: var(--text-muted);
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}

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

.hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-badge-icon { font-size: 1.3rem; }

.hero-badge-text {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}

.hero-badge-text span {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
}

.for-whom { background: var(--surface); }

.for-whom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.for-whom-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.for-whom-icon {
  width: 44px;
  height: 44px;
  background: var(--surface-2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.for-whom-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.for-whom-card p {
  font-size: .9rem;
  line-height: 1.6;
}

.format { background: var(--bg); }

.format-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.format-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.format-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.format-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  margin-top: 2px;
}

.format-item h4 { margin-bottom: 4px; }
.format-item p { font-size: .9rem; }

.format-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}

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

.program { background: var(--surface); }

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

.program-module {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.program-module::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  border-radius: 3px 0 0 3px;
}

.module-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.program-module h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.program-module ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.program-module li {
  font-size: .88rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.program-module li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.materials { background: var(--bg); }

.materials-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.materials-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}

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

.materials-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: .88rem;
  color: var(--text-muted);
  margin-top: 28px;
  line-height: 1.6;
}

.materials-note strong { color: var(--text); }

.materials-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.material-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.material-row-icon { font-size: 1.2rem; }

.material-row-text {
  font-size: .9rem;
  color: var(--text);
  font-weight: 500;
}

.outcomes { background: var(--surface); }

.outcomes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 36px;
}

.outcome-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.outcome-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.outcome-check svg {
  width: 12px;
  height: 12px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.outcome-item p {
  font-size: .95rem;
  color: var(--text);
}

.outcomes-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-md);
}

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

.faq { background: var(--bg); }

.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: .97rem;
  font-weight: 600;
  color: var(--text);
  font-family: inherit;
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--surface); }

.faq-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.faq-arrow svg {
  width: 10px;
  height: 10px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  transition: stroke var(--transition);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: var(--accent);
  border-color: var(--accent);
}

.faq-item.open .faq-arrow svg { stroke: white; }

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

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.lead-form {
  background: var(--accent);
  color: var(--white);
}

.lead-form .section-label { color: rgba(255,255,255,.65); }
.lead-form h2 { color: var(--white); }
.lead-form .section-sub { color: rgba(255,255,255,.75); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  max-width: 560px;
}

.lead-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

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

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(123, 79, 46, .12);
}

.form-group input.error { border-color: #e05252; }
.form-error {
  font-size: .78rem;
  color: #e05252;
  margin-top: 4px;
  display: none;
}
.form-group input.error + .form-error { display: block; }

.form-consent {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.5;
}

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

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
}

.site-footer {
  background: #1C1710;
  color: rgba(255,255,255,.55);
  padding: 52px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo { color: rgba(255,255,255,.9); font-size: 1.3rem; }
.footer-brand .logo span { color: #C49A3C; }

.footer-tagline {
  font-size: .84rem;
  margin-top: 10px;
  line-height: 1.6;
}

.footer-company {
  font-size: .78rem;
  margin-top: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,.35);
}

.footer-heading {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}

.footer-links a:hover { color: rgba(255,255,255,.9); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: .78rem;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #1C1710;
  color: rgba(255,255,255,.85);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.25);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  flex-wrap: wrap;
}

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

.cookie-text {
  font-size: .84rem;
  line-height: 1.55;
  flex: 1;
  min-width: 240px;
}

.cookie-text a {
  color: #C49A3C;
  text-decoration: underline;
}

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

.cookie-accept {
  background: var(--accent);
  color: white;
  border: none;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition);
}
.cookie-accept:hover { background: var(--accent-h); }

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.18);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: .85rem;
  cursor: pointer;
  font-family: inherit;
  transition: color var(--transition);
}
.cookie-decline:hover { color: rgba(255,255,255,.9); }

.page-hero {
  background: var(--surface);
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 8px; }
.page-hero p { font-size: .95rem; }

.page-content {
  padding: 60px 0 80px;
  max-width: 720px;
}

.page-content h2 {
  font-size: 1.25rem;
  margin: 36px 0 10px;
}

.page-content h2:first-child { margin-top: 0; }

.page-content p {
  font-size: .93rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.page-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.page-content ul li {
  font-size: .93rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: var(--accent);
  margin-top: 40px;
}

.back-link:hover { text-decoration: underline; }

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

.success-card {
  max-width: 520px;
}

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

.success-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-card h1 { margin-bottom: 12px; font-size: clamp(1.8rem, 4vw, 2.4rem); }
.success-card p  { font-size: 1.02rem; margin-bottom: 32px; }

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .hero-inner,
  .format-inner,
  .materials-inner,
  .outcomes-inner,
  .lead-form-inner { grid-template-columns: 1fr; }

  .hero-image-wrap { aspect-ratio: 16 / 9; order: -1; }
  .format-image-wrap { display: none; }
  .outcomes-image-wrap { order: -1; aspect-ratio: 16 / 9; }
  .for-whom-grid { grid-template-columns: 1fr; }
  .program-grid  { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 28px 24px; }
}

@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .hero { padding: 48px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .lead-form-inner { gap: 0; }
  .form-card { border-radius: var(--radius); }
}