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

:root {
  --bg: #FAF8F3;
  --bg-card: #F4EFE6;
  --fg: #2A1A10;
  --fg-muted: #7A6555;
  --fg-faint: #B4A090;
  --border: #E0D4C4;
  --primary: #6B3F28;
  --primary-hover: #8B5030;
  --primary-fg: #FAF8F3;
  --accent: #B07640;
  --accent-hover: #C88A50;
  --accent-fg: #FAF8F3;
  --secondary-bg: #F0E8DA;
  --dark-bg: #2A1A10;
  --dark-fg: #FAF8F3;
  --shadow: 0 2px 8px rgba(42,26,16,0.08);
  --shadow-md: 0 4px 16px rgba(42,26,16,0.12);
  --radius: 4px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}

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

.btn-accent {
  background: var(--accent);
  color: var(--accent-fg);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}

.btn-outline:hover {
  background: var(--secondary-bg);
}

.btn-outline-light {
  background: transparent;
  color: var(--dark-fg);
  border-color: rgba(250,248,243,0.3);
}

.btn-outline-light:hover {
  background: rgba(250,248,243,0.1);
}

.btn-sm {
  font-size: 13px;
  padding: 8px 18px;
}

.btn-lg {
  font-size: 17px;
  padding: 16px 36px;
}

.btn-full {
  width: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
  padding: 20px 0;
}

header.scrolled {
  background: rgba(250,248,243,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--border);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--primary);
  color: var(--primary-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  transition: background 0.2s;
}

.nav-logo:hover .nav-logo-icon {
  background: var(--accent);
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.nav-logo:hover .nav-logo-text {
  color: var(--primary);
}

nav.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color 0.2s;
  text-decoration: none;
}

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

.mobile-menu-btn {
  display: none;
  padding: 8px;
  color: var(--fg);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  flex-direction: column;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
  padding: 8px;
  color: var(--fg);
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
}

.mobile-menu-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 32px 24px;
}

.mobile-nav-link {
  font-size: 20px;
  font-weight: 500;
  color: var(--fg);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  padding: 0;
}

.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250,248,243,0.95) 40%, rgba(250,248,243,0.7) 70%, rgba(250,248,243,0.3) 100%);
}

.hero-bg-overlay-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 30%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(176,118,64,0.1);
  color: var(--accent);
  border: 1px solid rgba(176,118,64,0.25);
  border-radius: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

h1.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}

h1.hero-title .italic-span {
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}

.hero-desc {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.lead-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 420px;
  box-shadow: var(--shadow);
}

.lead-form-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input::placeholder {
  color: var(--fg-faint);
}

.form-group input:focus {
  border-color: var(--primary);
}

.form-error {
  font-size: 12px;
  color: #c0392b;
  margin-top: 5px;
  display: none;
}

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

.form-note {
  font-size: 12px;
  color: var(--fg-faint);
  text-align: center;
  margin-top: 12px;
}

.form-note a {
  text-decoration: underline;
  transition: color 0.2s;
}

.form-note a:hover {
  color: var(--fg);
}

section {
  padding: 80px 0;
}

@media (min-width: 768px) {
  section {
    padding: 110px 0;
  }
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.img-rounded {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.outcomes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 32px;
}

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

.outcome-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--secondary-bg);
  color: var(--primary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}

.outcome-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px;
}

.outcome-desc {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

.bg-secondary {
  background: var(--secondary-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

@media (min-width: 768px) {
  .three-col {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.card-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card-icon-inner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.dot-light { background: rgba(176,118,64,0.2); }
.dot-mid { background: rgba(176,118,64,0.5); }
.dot-full { background: var(--accent); }

.card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--primary-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 0 0 4px var(--bg);
}

.step h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.65;
}

.format-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.format-col-top {
  padding-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.format-col-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.format-images img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.format-quote {
  background: var(--secondary-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.format-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--fg);
  line-height: 1.6;
}

.instructor-section {
  background: var(--dark-bg);
  color: var(--dark-fg);
}

.instructor-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .instructor-inner {
    grid-template-columns: 2fr 3fr;
    gap: 64px;
  }
}

.instructor-img {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(250,248,243,0.15);
  position: relative;
}

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

.instructor-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,26,16,0.2);
  mix-blend-mode: multiply;
}

.instructor-label {
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 12px;
}

.instructor-name {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.1;
}

.instructor-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.instructor-text p {
  font-size: 17px;
  color: rgba(250,248,243,0.82);
  line-height: 1.75;
}

.testimonials-section {
  background: rgba(240,232,218,0.4);
}

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

.max-w-2xl {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.mb-16 {
  margin-bottom: 64px;
}

.stars {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--fg);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-name {
  font-weight: 600;
  color: var(--fg);
}

.testimonial-role {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 2px;
}

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

.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.4;
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--fg-muted);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-answer p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.75;
}

.cta-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.cta-inner .section-title {
  margin-bottom: 14px;
}

.cta-inner .section-lead {
  margin-bottom: 36px;
  font-size: 16px;
}

.cta-form {
  text-align: left;
}

footer {
  background: var(--dark-bg);
  color: var(--dark-fg);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark-fg);
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--dark-fg);
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.footer-desc {
  color: rgba(250,248,243,0.65);
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark-fg);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: rgba(250,248,243,0.65);
  font-size: 14px;
  transition: color 0.2s;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-legal-nav a {
  color: rgba(250,248,243,0.5);
  font-size: 13px;
}

.footer-legal-nav a:hover {
  color: var(--dark-fg);
}

.footer-bottom {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(250,248,243,0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-company {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-company p {
  font-size: 11px;
  color: rgba(250,248,243,0.45);
}

.footer-copy {
  font-size: 11px;
  color: rgba(250,248,243,0.45);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  z-index: 500;
  background: var(--dark-bg);
  color: var(--dark-fg);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
  opacity: 0;
}

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

.cookie-banner p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(250,248,243,0.88);
}

.cookie-banner a {
  text-decoration: underline;
  transition: color 0.2s;
}

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

.cookie-banner-btns {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

@media (min-width: 600px) {
  .cookie-banner {
    left: auto;
    max-width: 400px;
  }
}

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

.page-content {
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 720px;
  margin: 0 auto;
}

.prose h1 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.prose .date {
  font-size: 13px;
  color: var(--fg-faint);
  margin-bottom: 40px;
}

.prose p {
  font-size: 16px;
  color: var(--fg);
  line-height: 1.8;
  margin-bottom: 20px;
}

.prose h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--fg);
}

.prose ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.prose ul li {
  font-size: 16px;
  color: var(--fg);
  line-height: 1.8;
  margin-bottom: 6px;
}

.prose a {
  color: var(--primary);
  text-decoration: underline;
}

.prose a:hover {
  color: var(--accent);
}

.prose strong {
  font-weight: 600;
}

.prose em {
  font-style: italic;
  color: var(--fg-muted);
}

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

.success-card {
  max-width: 480px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(176,118,64,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.success-card h1 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.success-card .lead {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 28px 0;
}

.success-card .hint {
  font-size: 14px;
  color: var(--fg-faint);
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .desktop-nav {
    display: none !important;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 120px 0 80px;
    min-height: unset;
  }

  h1.hero-title {
    font-size: 38px;
  }

  .cta-inner {
    padding: 36px 24px;
  }

  .two-col .order-first {
    order: -1;
  }

  .format-images {
    display: none;
  }
}
