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

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

:root {
  --bg:         #FAF8F4;
  --bg-card:    #F3EDE4;
  --bg-dark:    #1E2D22;
  --primary:    #2B4535;
  --primary-lt: #3D6149;
  --accent:     #B25C35;
  --accent-lt:  #C97A55;
  --text:       #1A1A18;
  --text-muted: #6B6459;
  --border:     #DDD6CC;
  --white:      #FFFFFF;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius:    8px;
  --radius-lg: 16px;

  --max-w: 1160px;
  --section-v: 96px;
  --section-v-sm: 56px;

  --transition: 220ms ease;
}

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

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

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

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); font-weight: 500; }

p { color: var(--text-muted); font-size: 1.05rem; }

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

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

.section {
  padding: var(--section-v) 0;
}

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

.section--dark h2,
.section--dark h3,
.section--dark p,
.section--dark .section-label {
  color: inherit;
}

.section--dark p {
  color: rgba(255,255,255,0.7);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform var(--transition);
  border: none;
  outline: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(43,69,53,0.35);
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  padding: 14px 30px;
}

.btn--primary:hover {
  background: var(--primary-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(43,69,53,0.22);
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
  padding: 14px 30px;
}

.btn--accent:hover {
  background: var(--accent-lt);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(178,92,53,0.25);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  padding: 13px 28px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.nav__logo {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.04em;
}

.nav__logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
}

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

.nav__links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav__links a:hover {
  color: var(--primary);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 24px;
  border-top: 1px solid var(--border);
  gap: 4px;
  background: var(--bg);
}

.mobile-nav a {
  padding: 11px 0;
  font-size: 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color var(--transition);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary); }

.mobile-nav .btn {
  margin-top: 16px;
  justify-content: center;
}

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

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

.hero__text {
  max-width: 560px;
}

.hero__title {
  margin-bottom: 24px;
  font-weight: 300;
  color: var(--text);
}

.hero__title strong {
  font-weight: 600;
  color: var(--primary);
}

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 36px;
}

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

.hero__note {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero__note::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--border);
}

.hero__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43,69,53,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.problem {
  padding: var(--section-v) 0;
}

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

.problem__heading h2 {
  max-width: 640px;
  margin: 0 auto 16px;
}

.problem__heading p {
  max-width: 520px;
  margin: 0 auto;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.problem-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  opacity: 0.6;
}

.problem-card__icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.problem-card h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.problem-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.approach__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.approach__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 520px;
}

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

.approach__text h2 {
  margin-bottom: 24px;
}

.approach__text p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.approach__text p:last-of-type {
  margin-bottom: 32px;
}

.steps {
  padding: var(--section-v) 0;
}

.steps__heading {
  text-align: center;
  margin-bottom: 64px;
}

.steps__heading h2 { margin-bottom: 12px; }

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.steps__grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16.6%;
  right: 16.6%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-weight: 300;
}

.step h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.step p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}

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

.forwhom__heading h2 { margin-bottom: 12px; }

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

.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.who-card:hover {
  box-shadow: 0 12px 36px rgba(43,69,53,0.1);
  transform: translateY(-3px);
}

.who-card__marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 20px;
}

.who-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.who-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.results {
  padding: var(--section-v) 0;
}

.results__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

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

.results__content h2 {
  margin-bottom: 32px;
}

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

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

.result-item__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(43,69,53,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.result-item__check svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.result-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
}

.faq {
  padding: var(--section-v) 0;
}

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

.faq__heading h2 { margin-bottom: 12px; }

.faq__list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item__q {
  width: 100%;
  background: var(--bg-card);
  border: none;
  text-align: left;
  padding: 22px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background var(--transition);
}

.faq-item__q:hover {
  background: #EDE7DE;
}

.faq-item__q[aria-expanded="true"] {
  background: var(--primary);
  color: var(--white);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  transition: transform var(--transition);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}

.faq-item__icon::before {
  width: 14px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 2px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-item__q[aria-expanded="true"] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__a {
  display: none;
  padding: 20px 24px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

.faq-item__a.open {
  display: block;
}

.faq-item__a p {
  font-size: 0.95rem;
  line-height: 1.75;
}

.form-section {
  padding: var(--section-v) 0;
}

.form-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-section__intro h2 {
  margin-bottom: 20px;
}

.form-section__intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.form-section__cues {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-cue::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.lead-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group label .req {
  color: var(--accent);
  margin-left: 2px;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(43,69,53,0.12);
  background: var(--white);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6459' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #A89F95;
}

.lead-form .btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
  margin-top: 8px;
}

.form-legal {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
}

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

.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.65);
  padding: 56px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
  align-items: start;
}

.footer__brand .nav__logo {
  color: var(--white);
  margin-bottom: 14px;
  display: inline-block;
}

.footer__brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__company {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--bg-dark);
  color: rgba(255,255,255,0.85);
  padding: 20px 24px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  max-width: 640px;
}

.cookie-banner p a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background var(--transition), opacity var(--transition);
}

.cookie-btn--accept {
  background: var(--primary);
  color: var(--white);
}

.cookie-btn--accept:hover { background: var(--primary-lt); }

.cookie-btn--decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn--decline:hover { background: rgba(255,255,255,0.08); }

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

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

.success-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(43,69,53,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.success-card__icon svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
}

.success-card h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.success-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

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

.legal-page__header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.legal-page__header h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.legal-page__header p {
  font-size: 0.9rem;
}

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

.legal-content h2 {
  font-size: 1.3rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin: 36px 0 14px;
  color: var(--text);
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 14px;
  color: var(--text-muted);
}

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

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

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

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  :root {
    --section-v: 64px;
  }

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

  .hero__image {
    order: -1;
    max-height: 380px;
  }

  .hero__text { max-width: 100%; }

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

  .approach__image {
    aspect-ratio: 16/9;
    max-height: none;
    order: -1;
  }

  .steps__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps__grid::before { display: none; }

  .step { text-align: left; display: flex; align-items: flex-start; gap: 20px; }
  .step__num { margin: 0; flex-shrink: 0; width: 52px; height: 52px; font-size: 1.4rem; }

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

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

  .results__image { max-height: 340px; }

  .form-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .footer__links {
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  :root { --section-v: var(--section-v-sm); }

  .nav__links, .nav__cta { display: none; }
  .burger { display: flex; }
  .mobile-nav.open { display: flex; }

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

  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }

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

  .hero { padding-top: 40px; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .problem__grid { grid-template-columns: 1fr; }
}