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

:root {
  --cognac:    #7A4A28;
  --amber:     #C8873F;
  --honey:     #D9A85C;
  --cream:     #F5EDE0;
  --parchment: #FBF7F2;
  --espresso:  #2C1810;
  --warm-grey: #8A7060;
  --border:    #E2D0BC;

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', 'Segoe UI', Arial, sans-serif;

  --max-w: 1100px;
  --section-pad: 80px 20px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--parchment);
  color: var(--espresso);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--cognac); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--warm-grey);
  max-width: 600px;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--cognac);
  color: #fff;
}
.btn-primary:hover {
  background: #63361B;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(122,74,40,0.28);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cognac);
  border: 1.5px solid var(--cognac);
}
.btn-outline:hover {
  background: var(--cream);
  text-decoration: none;
}

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

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--espresso);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.logo span { color: var(--amber); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--espresso);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--amber); }

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

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

.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  padding: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 20px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.18;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--cognac);
}

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

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--warm-grey);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-note::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: var(--border);
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
}

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

.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 30%);
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 2;
  background: rgba(251,247,242,0.95);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 0.8rem;
  line-height: 1.4;
}
.hero-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--cognac);
}

.learn {
  padding: var(--section-pad);
  background: var(--parchment);
}

.learn-header {
  text-align: center;
  margin-bottom: 56px;
}

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

.learn-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.learn-card:hover {
  box-shadow: 0 8px 32px rgba(122,74,40,0.1);
  transform: translateY(-3px);
}

.learn-card-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 16px;
}

.learn-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 10px;
  line-height: 1.3;
}

.learn-card p {
  font-size: 0.9rem;
  color: var(--warm-grey);
  line-height: 1.7;
}

.forwhom {
  padding: var(--section-pad);
  background: var(--cream);
}

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

.forwhom-image {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.forwhom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.forwhom-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--espresso);
  line-height: 1.6;
}

.forwhom-list li::before {
  content: '–';
  color: var(--amber);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.format {
  padding: var(--section-pad);
  background: var(--parchment);
}

.format-header {
  text-align: center;
  margin-bottom: 56px;
}

.format-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.format-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: var(--border);
}

.format-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cognac);
  position: relative;
  z-index: 1;
}

.format-step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 8px;
}

.format-step p {
  font-size: 0.85rem;
  color: var(--warm-grey);
  line-height: 1.65;
}

.results {
  padding: var(--section-pad);
  background: var(--espresso);
}

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

.results .section-label { color: var(--honey); }
.results .section-title { color: var(--cream); }

.results-image {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.results-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.results-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(245,237,224,0.85);
  line-height: 1.6;
}

.results-list li::before {
  content: '✓';
  color: var(--honey);
  font-weight: 700;
  flex-shrink: 0;
}

.about {
  padding: var(--section-pad);
  background: var(--cream);
}

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

.about-image {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-details {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--warm-grey);
}
.about-detail strong {
  color: var(--espresso);
  font-weight: 600;
  min-width: 130px;
}

.testimonials {
  padding: var(--section-pad);
  background: var(--parchment);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}

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

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 24px;
}

.testimonial-stars {
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--espresso);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cognac);
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--espresso);
}
.testimonial-city {
  font-size: 0.78rem;
  color: var(--warm-grey);
}

.materials {
  padding: var(--section-pad);
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.materials-image {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1/1;
  max-width: 420px;
}
.materials-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.materials-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.materials-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--espresso);
  line-height: 1.6;
}

.materials-list li::before {
  content: '·';
  color: var(--amber);
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq {
  padding: var(--section-pad);
  background: var(--cream);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

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

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--espresso);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.5;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--warm-grey);
  line-height: 1.75;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.25s;
  padding-bottom: 0;
}

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

.lead-form-section {
  padding: var(--section-pad);
  background: var(--parchment);
}

.lead-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.lead-form-wrap .section-title { margin-bottom: 8px; }
.lead-form-wrap .section-subtitle {
  max-width: 100%;
  margin: 0 auto 40px;
  text-align: center;
}

.lead-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 36px;
  text-align: left;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--espresso);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--espresso);
  background: var(--parchment);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--amber);
  background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-grey);
  opacity: 0.7;
}

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  margin-top: 8px;
}

.form-legal {
  font-size: 0.75rem;
  color: var(--warm-grey);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.form-legal a { color: var(--warm-grey); text-decoration: underline; }

.site-footer {
  background: var(--espresso);
  color: rgba(245,237,224,0.7);
  padding: 56px 20px 32px;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--cream);
  display: inline-block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(245,237,224,0.65);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--honey); text-decoration: none; }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  border-top: 1px solid rgba(245,237,224,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(245,237,224,0.45);
  line-height: 1.8;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 0.75rem;
  color: rgba(245,237,224,0.45);
  text-decoration: underline;
  transition: color 0.15s;
}
.footer-legal-links a:hover { color: var(--honey); }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--espresso);
  border-top: 2px solid var(--amber);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 0.35s ease;
}

.cookie-banner.hidden {
  transform: translateY(110%);
}

.cookie-banner-text {
  font-size: 0.85rem;
  color: rgba(245,237,224,0.85);
  line-height: 1.55;
  flex: 1;
  min-width: 200px;
}
.cookie-banner-text a {
  color: var(--honey);
  text-decoration: underline;
}

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

.cookie-accept {
  padding: 10px 24px;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--cognac); }

.cookie-decline {
  padding: 10px 20px;
  background: transparent;
  color: rgba(245,237,224,0.6);
  border: 1px solid rgba(245,237,224,0.25);
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.cookie-decline:hover {
  border-color: rgba(245,237,224,0.5);
  color: rgba(245,237,224,0.85);
}

.page-hero {
  background: var(--cream);
  padding: 64px 20px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero p {
  font-size: 1rem;
  color: var(--warm-grey);
}

.legal-body {
  padding: 60px 20px 80px;
  max-width: 820px;
  margin: 0 auto;
}

.legal-body h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--espresso);
  margin: 36px 0 12px;
}
.legal-body h2:first-child { margin-top: 0; }

.legal-body p, .legal-body li {
  font-size: 0.92rem;
  color: var(--warm-grey);
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-body ul { padding-left: 20px; margin-bottom: 16px; }
.legal-body li { list-style: disc; }

.legal-body strong { color: var(--espresso); }

.success-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
}

.success-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 14px;
}

.success-text {
  font-size: 1rem;
  color: var(--warm-grey);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-image-wrap {
    height: 300px;
    order: -1;
  }
  .hero-image-wrap::after {
    background: linear-gradient(to bottom, var(--cream) 0%, transparent 30%);
  }
  .hero-content {
    padding: 40px 20px 60px;
  }

  .learn-grid { grid-template-columns: 1fr; }
  .forwhom-inner,
  .results-inner,
  .about-inner,
  .materials-inner { grid-template-columns: 1fr; }

  .format-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .format-steps::before { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .nav-links { display: none; }
  .header-cta { display: none; }
  .burger { display: flex; }
}

@media (max-width: 600px) {
  :root { --section-pad: 56px 20px; }

  .hero-title { font-size: 2rem; }
  .hero-content { padding: 36px 20px 52px; }

  .format-steps { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }

  .lead-form { padding: 28px 20px; }

  .cookie-banner { flex-direction: column; align-items: flex-start; }
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--parchment);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--espresso);
  text-decoration: none;
  transition: color 0.15s;
}
.mobile-menu a:hover { color: var(--amber); }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--espresso);
  cursor: pointer;
  line-height: 1;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
