/* ====== TOKENS ====== */
:root {
  --bg:            #f5f8f5;
  --surface:       #ffffff;
  --surface-2:     #edf5ee;
  --text:          #192a1f;
  --muted:         #4a6352;
  --accent:        #2d6a4f;
  --accent-h:      #1e5038;
  --accent-light:  #40916c;
  --leaf:          #95d5b2;
  --leaf-light:    #d8f3e5;
  --border:        #d4e6d9;
  --shadow-sm:     0 2px 8px rgba(26,46,31,.06);
  --shadow-md:     0 8px 32px rgba(26,46,31,.10);
  --shadow-lg:     0 20px 60px rgba(26,46,31,.12);
  --radius:        14px;
  --radius-lg:     20px;
}

/* ====== RESET ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}
img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-h); }
ul, ol { list-style: none; }
h1, h2, h3 {
  font-family: 'Literata', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

/* ====== LAYOUT ====== */
.wrap { width: min(960px, 92vw); margin-inline: auto; }

/* ====== HEADER ====== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,248,245,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; gap: 1rem;
  padding-block: .75rem;
}
.logo { display: flex; flex-direction: column; text-decoration: none; flex-shrink: 0; }
.logo-name {
  font-family: 'Literata', Georgia, serif;
  font-size: 1.05rem; font-weight: 600; color: var(--text);
}
.logo-sub { font-size: .75rem; color: var(--muted); }
.nav { display: flex; flex-wrap: wrap; gap: .35rem 1.1rem; flex: 1; justify-content: center; }
.nav a { font-size: .9rem; font-weight: 600; color: var(--muted); }
.nav a:hover { color: var(--accent); }

/* ====== BUTTONS ====== */
.btn {
  display: inline-block;
  padding: .7rem 1.4rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: .95rem;
  border-radius: var(--radius);
  transition: transform .15s, background .15s, box-shadow .15s;
  cursor: pointer;
}
.btn-primary { color: #fff; background: var(--accent); }
.btn-primary:hover { color: #fff; background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(45,106,79,.3); }
.btn-outline { color: var(--accent); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--leaf-light); }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }

/* ====== HERO ====== */
.hero {
  padding-block: 3.5rem 2.5rem;
  background: linear-gradient(145deg, #fff 0%, #edf5ee 60%, #d8f3e5 100%);
  border-bottom: 1px solid var(--border);
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
}
.badge {
  display: inline-block;
  padding: .3rem .9rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--accent); background: var(--leaf-light); border-radius: 999px;
  margin-bottom: 1rem;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .75rem; }
.hero-desc { font-size: 1.1rem; color: var(--muted); max-width: 36em; margin-bottom: 1.5rem; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: .6rem;
  margin-bottom: 1.75rem;
}
.hero-badges li {
  display: flex; flex-direction: column; align-items: center;
  padding: .55rem .9rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  min-width: 80px; text-align: center;
}
.hero-badges .badge-num { font-size: 1rem; font-weight: 800; color: var(--accent); }
.hero-badges span:last-child { font-size: .72rem; color: var(--muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Hero side card */
.hero-card-side {
  display: flex; flex-direction: column; gap: 1rem;
  width: 220px; flex-shrink: 0;
}
.hero-photo-placeholder {
  background: var(--leaf-light);
  border: 2px dashed var(--leaf);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}
.hero-photo-placeholder svg { width: 80px; height: 80px; margin-inline: auto; margin-bottom: .5rem; }
.photo-hint { font-size: .8rem; color: var(--muted); }
.hero-card-facts {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex; flex-direction: column; gap: .6rem;
  box-shadow: var(--shadow-sm);
}
.fact { display: flex; flex-direction: column; font-size: .88rem; }
.fact strong { color: var(--text); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .03em; }
.fact span { color: var(--muted); }

/* ====== SECTIONS ====== */
.section { padding-block: 3rem; }
.section:nth-child(odd) { background: var(--bg); }
.section:nth-child(even) { background: var(--surface); }
.section h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin-bottom: 1.25rem; }
.section-lead { color: var(--muted); margin-bottom: 2rem; max-width: 42em; }

/* ====== ABOUT ====== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; }
.about-text p:last-child { margin-bottom: 0; }
.about-achievements { background: var(--surface-2); border-radius: var(--radius-lg); padding: 1.5rem; }
.about-achievements h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.check-list { display: flex; flex-direction: column; gap: .55rem; }
.check-list li {
  position: relative; padding-left: 1.6rem; color: var(--muted); font-size: .97rem;
}
.check-list li::before {
  content: ''; position: absolute; left: 0; top: .55em;
  width: .55rem; height: .55rem;
  background: var(--accent-light); border-radius: 50%;
}

/* ====== SERVICES ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.service-card--accent { border-color: var(--accent-light); background: linear-gradient(145deg, #fff, var(--leaf-light)); }
.svc-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.15rem; margin-bottom: .75rem; }
.service-card > p { color: var(--muted); font-size: .97rem; margin-bottom: 1rem; }
.svc-list { display: flex; flex-direction: column; gap: .35rem; }
.svc-list li { font-size: .88rem; color: var(--accent); font-weight: 700; }
.svc-list li::before { content: '✓ '; }

/* ====== FOR WHOM ====== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 1rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .95rem; }

/* ====== HOW ====== */
.steps { display: flex; flex-direction: column; gap: 1.25rem; counter-reset: steps; }
.step {
  display: flex; gap: 1.25rem; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
}
.step-num {
  flex-shrink: 0;
  width: 2.2rem; height: 2.2rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff;
  border-radius: 50%; font-weight: 800; font-size: 1rem;
}
.step strong { display: block; margin-bottom: .25rem; }
.step p { color: var(--muted); font-size: .97rem; margin: 0; }

/* ====== FAQ ====== */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem 1.5rem;
}
.faq-item dt { font-weight: 700; margin-bottom: .4rem; }
.faq-item dd { color: var(--muted); }

/* ====== CONTACT ====== */
.contact-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow-md);
  max-width: 560px;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.5rem; margin-top: .15rem; }
.contact-item strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: .2rem; }
.contact-item a { font-size: 1.15rem; font-weight: 700; color: var(--accent); }
.contact-item a:hover { color: var(--accent-h); }
.contact-note { font-size: .9rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: 1rem; }

/* ====== FOOTER ====== */
.site-footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding-block: 1.75rem;
  font-size: .9rem; color: var(--muted);
}
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; }
.footer-contacts a { color: var(--muted); }
.footer-contacts a:hover { color: var(--accent); }

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-card-side { width: 100%; flex-direction: row; }
  .hero-photo-placeholder { flex: 0 0 120px; }
  .about-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .header-inner { justify-content: space-between; }
  .footer-inner { flex-direction: column; gap: .25rem; }
}
@media (max-width: 480px) {
  .hero { padding-block: 2rem 1.5rem; }
  .hero-card-side { flex-direction: column; }
  .section { padding-block: 2rem; }
  .contact-box { padding: 1.25rem; }
}
