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

:root {
  --bg:         #FBF7F2;
  --bg-alt:     #F5EDE3;
  --bg-dark:    #2A2218;
  --text:       #2A2218;
  --text-light: #6B5E52;
  --accent:     #C4854A;
  --accent-dark:#9E6330;
  --border:     #E4D8CD;
  --white:      #FFFFFF;
  --radius:     10px;
  --shadow:     0 4px 20px rgba(42,34,24,0.08);
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-w:      1100px;
  --section-py: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

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

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

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

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

.section-title {
  margin-bottom: 16px;
  color: var(--text);
}

.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 56px;
}

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

section { padding: var(--section-py) 0; }
section.alt { background: var(--bg-alt); }
section.dark {
  background: var(--bg-dark);
  color: var(--white);
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: none;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,133,74,.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,247,242,.95);
  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: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: .02em;
}
.logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  font-size: .9rem;
  color: var(--text-light);
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: .88rem !important;
  font-weight: 600;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; }

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--text-light);
  transition: color .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .nav-cta {
  margin-top: 8px;
  text-align: center;
  border-bottom: none;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
}

.hero {
  padding: 72px 0 0;
  overflow: hidden;
}

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

.hero-content { padding-bottom: 72px; }

.hero-badge {
  display: inline-block;
  background: rgba(196,133,74,.12);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 { margin-bottom: 20px; color: var(--text); }

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

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

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

.hero-image-wrap {
  position: relative;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  height: 520px;
}

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

.hero-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(251,247,242,.95);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-image-badge .hb-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
}

.hero-image-badge .hb-label {
  font-size: .78rem;
  color: var(--text-light);
}

.for-whom .cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.card h3 { margin-bottom: 8px; font-family: var(--font-serif); }
.card p { color: var(--text-light); font-size: .95rem; }

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

.learn-image {
  border-radius: var(--radius);
  overflow: hidden;
  height: 420px;
}

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

.outcomes { margin-top: 8px; }

.outcome-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.outcome-item:last-child { border-bottom: none; }

.outcome-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(196,133,74,.12);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  margin-top: 2px;
}

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

.format .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.format-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}

.format-card .f-icon { font-size: 2rem; margin-bottom: 12px; }
.format-card h4 { font-family: var(--font-serif); font-size: 1rem; margin-bottom: 8px; }
.format-card p { color: var(--text-light); font-size: .88rem; }

.process .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--accent);
  opacity: .25;
  line-height: 1;
  margin-bottom: 8px;
}

.step h3 { font-family: var(--font-serif); font-size: 1.05rem; margin-bottom: 8px; color: var(--white); }
.step p { font-size: .9rem; color: rgba(255,255,255,.65); }

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(42,34,24,.7));
  color: var(--white);
  padding: 20px 16px 14px;
  font-size: .88rem;
}

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

.author-photo {
  border-radius: var(--radius);
  overflow: hidden;
  height: 360px;
}

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

.author-tag {
  display: inline-block;
  background: rgba(196,133,74,.12);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.author-content h2 { margin-bottom: 16px; }

.author-bio {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.author-facts { display: flex; gap: 32px; flex-wrap: wrap; }

.author-fact .af-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 1;
}

.author-fact .af-label { font-size: .85rem; color: var(--text-light); margin-top: 2px; }

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

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 2px; }

.review-text {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.review-author { display: flex; flex-direction: column; gap: 2px; }
.review-author .ra-name { font-weight: 600; font-size: .9rem; }
.review-author .ra-detail { font-size: .82rem; color: var(--text-light); }

.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }

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

.faq-question:hover { color: var(--accent); }

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(196,133,74,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .3s;
}

.faq-chevron::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translateY(-2px);
}

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

.faq-item.open .faq-chevron::after { border-color: var(--white); }

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

.faq-answer-inner {
  padding-bottom: 20px;
  color: var(--text-light);
  font-size: .97rem;
  line-height: 1.7;
}

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

.lead-form-section {
  background: linear-gradient(135deg, #2A2218 0%, #3D2F22 100%);
  color: var(--white);
}

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

.form-left h2 { color: var(--white); margin-bottom: 16px; }
.form-left p { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 32px; }

.trust-list { display: flex; flex-direction: column; gap: 12px; }

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}

.trust-item::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6.5 11.5L3 8l1-1 2.5 2.5 6-6 1 1z'/%3E%3C/svg%3E");
}

.contact-form {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group label { font-size: .85rem; color: rgba(255,255,255,.65); font-weight: 500; }

.form-group input,
.form-group select {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-size: .97rem;
  font-family: var(--font-sans);
  transition: border-color .2s, background .2s;
  outline: none;
}

.form-group input::placeholder { color: rgba(255,255,255,.35); }

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,.12);
}

.form-group select option { background: #2A2218; }

.form-submit {
  margin-top: 4px;
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background .2s, transform .15s;
}
.form-submit:hover { background: var(--accent-dark); transform: translateY(-1px); }

.form-note { font-size: .78rem; color: rgba(255,255,255,.4); text-align: center; }

.site-footer {
  background: #221C15;
  color: rgba(255,255,255,.55);
  padding: 48px 0 32px;
}

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

.footer-brand .logo { color: var(--white); }
.footer-brand .logo span { color: var(--accent); }
.footer-brand p { margin-top: 10px; font-size: .85rem; line-height: 1.6; }

.footer-col h4 {
  color: rgba(255,255,255,.85);
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: .85rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }

.footer-legal {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-text { font-size: .78rem; line-height: 1.7; color: rgba(255,255,255,.35); }

.legal-links { display: flex; gap: 16px; flex-wrap: wrap; }

.legal-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  transition: color .2s;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.legal-links a:hover { color: var(--accent); text-decoration-color: var(--accent); }

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  z-index: 1000;
  transform: translateY(calc(100% + 40px));
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}

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

.cookie-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1.3; }
.cookie-text { flex: 1; }
.cookie-text p { font-size: .88rem; color: var(--text); line-height: 1.55; }
.cookie-text a { color: var(--accent); text-decoration: underline; }

.cookie-actions { display: flex; flex-direction: column; gap: 8px; align-items: stretch; }

.cookie-accept {
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background .2s;
  white-space: nowrap;
}
.cookie-accept:hover { background: var(--accent-dark); }

.cookie-decline {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 18px;
  font-size: .82rem;
  color: var(--text-light);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: border-color .2s;
  white-space: nowrap;
}
.cookie-decline:hover { border-color: var(--text-light); }

.legal-page { padding: 80px 0; }

.legal-page h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }

.legal-date { color: var(--text-light); font-size: .88rem; margin-bottom: 48px; }

.legal-content { max-width: 740px; }

.legal-content h2 { font-size: 1.2rem; margin: 36px 0 12px; }

.legal-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: .97rem;
  line-height: 1.75;
}

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

.legal-content ul li { color: var(--text-light); font-size: .97rem; margin-bottom: 6px; line-height: 1.6; }

.legal-content a { color: var(--accent); text-decoration: underline; }

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

.success-inner { max-width: 480px; }

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(196,133,74,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

.success-inner h1 { font-size: 1.9rem; margin-bottom: 14px; }
.success-inner p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 32px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  :root { --section-py: 56px; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { padding-bottom: 0; }
  .hero-image-wrap { height: 300px; border-radius: var(--radius); }

  .learn-inner { grid-template-columns: 1fr; }
  .learn-image { height: 280px; }

  .format .cards { grid-template-columns: repeat(2, 1fr); }
  .process .steps { grid-template-columns: repeat(2, 1fr); }

  .for-whom .cards { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

  .author-inner { grid-template-columns: 1fr; }
  .author-photo { height: 260px; }

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

  .form-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --section-py: 48px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav.open { display: flex; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 240px; }

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

  .footer-inner { grid-template-columns: 1fr; }
  .footer-legal { flex-direction: column; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .cookie-banner { flex-direction: column; left: 16px; right: 16px; bottom: 16px; }
  .cookie-actions { flex-direction: row; }

  .contact-form { padding: 24px; }
}
