:root {
  --ink: #10161c;
  --ink-soft: #3a4652;
  --mute: #6b7885;
  --paper: #f3f1eb;
  --line: rgba(16, 22, 28, 0.12);
  --mint: #1f8f72;
  --mint-deep: #146b56;
  --max: 1120px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Figtree", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #d9ebe3 0%, transparent 55%),
    radial-gradient(900px 500px at 100% 0%, #e8dfd0 0%, transparent 50%),
    linear-gradient(180deg, #eef2ef 0%, var(--paper) 35%, #ebe6dc 100%);
  line-height: 1.55;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
main { flex: 1; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(243, 241, 235, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo {
  font-family: "Fraunces", serif;
  font-weight: 650;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.logo span { color: var(--mint-deep); }
.nav__links {
  display: flex; gap: 1.35rem; list-style: none;
  font-size: 0.95rem; font-weight: 500; color: var(--ink-soft);
}
.nav__links a { transition: color .2s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__cta {
  display: inline-flex; align-items: center;
  background: var(--ink); color: #f5f2eb;
  padding: 0.7rem 1.15rem; border-radius: 999px;
  font-weight: 600; font-size: 0.9rem;
  transition: transform .25s var(--ease), background .2s;
}
.nav__cta:hover { background: var(--mint-deep); transform: translateY(-1px); }
.nav__burger {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  border-radius: 10px; background: transparent; cursor: pointer;
  place-items: center;
}
.nav__burger span {
  display: block; width: 18px; height: 2px; background: var(--ink);
  position: relative;
}
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }

.page-hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
}
.page-hero__brand {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 1rem;
}
.page-hero__brand em { font-style: italic; font-weight: 500; color: var(--mint-deep); }
.page-hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 550;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 18ch;
  margin-bottom: 0.85rem;
}
.page-hero p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 48ch;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  min-height: calc(100svh - 72px);
}
.hero__copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
  width: min(100%, calc(var(--max) * 0.55 + (100vw - var(--max)) / 2));
  margin-left: max(1.25rem, calc((100vw - var(--max)) / 2));
  animation: rise .9s var(--ease) both;
}
.hero__brand {
  font-family: "Fraunces", serif;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 1.4rem;
}
.hero__brand em { font-style: italic; font-weight: 500; color: var(--mint-deep); }
.hero h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 550;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 16ch;
  margin-bottom: 1rem;
}
.hero__lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 36ch;
  margin-bottom: 1.8rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__visual {
  position: relative;
  min-height: 70svh;
  overflow: hidden;
  animation: fade .9s var(--ease) .15s both;
}
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}
.hero__visual::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(238, 242, 239, 0.55) 0%, transparent 28%),
    linear-gradient(0deg, rgba(16, 22, 28, 0.18), transparent 35%);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.95rem 1.35rem; border-radius: 999px;
  font-weight: 650; font-size: 0.98rem;
  border: 0; cursor: pointer;
  transition: transform .25s var(--ease), background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--mint); color: #f7fffb; }
.btn--primary:hover { background: var(--mint-deep); }
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--light { background: #f7f3eb; color: var(--ink); }
.btn--light:hover { background: #fff; }

section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section__eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--mint-deep);
  margin-bottom: 0.85rem;
}
.section__title {
  font-family: "Fraunces", serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 650; letter-spacing: -0.03em; line-height: 1.1;
  max-width: 16ch;
  margin-bottom: 0.9rem;
}
.section__text {
  color: var(--ink-soft); max-width: 52ch; font-size: 1.05rem;
}

.trust { padding: 1.5rem 0 0; border-top: 1px solid var(--line); }
.trust__label { font-size: 0.8rem; color: var(--mute); margin-bottom: 1rem; font-weight: 500; }
.trust__row {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2.4rem;
  font-family: "Fraunces", serif;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 550; color: var(--ink); opacity: 0.78;
}

.teasers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin-top: 2rem;
}
.teaser {
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.4);
  transition: transform .25s var(--ease), border-color .2s, background .2s;
}
.teaser:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 143, 114, 0.4);
  background: rgba(255,255,255,0.7);
}
.teaser h3 {
  font-family: "Fraunces", serif;
  font-size: 1.35rem; font-weight: 600;
  margin-bottom: 0.45rem; letter-spacing: -0.02em;
}
.teaser p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1rem; }
.teaser .more { font-weight: 650; color: var(--mint-deep); font-size: 0.92rem; }

.about {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}
.about__stat {
  margin-top: 2rem;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem;
}
.about__stat strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 650; letter-spacing: -0.03em;
  color: var(--mint-deep);
}
.about__stat span { color: var(--mute); font-size: 0.92rem; }

.reasons { display: grid; gap: 0; margin-top: 2.5rem; border-top: 1px solid var(--line); }
.reason {
  display: grid; grid-template-columns: 4rem 1fr; gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.reason__n {
  font-family: "Fraunces", serif; font-size: 1.5rem; color: var(--mint); font-weight: 550;
}
.reason h3 { font-size: 1.15rem; margin-bottom: 0.35rem; font-weight: 650; }
.reason p { color: var(--ink-soft); max-width: 48ch; }

.jobs { display: grid; gap: 0.75rem; margin-top: 2.2rem; }
.job {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center;
  padding: 1.2rem 1.3rem;
  background: rgba(255,255,255,0.45);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: border-color .2s, transform .25s var(--ease), background .2s;
}
.job:hover {
  border-color: rgba(31, 143, 114, 0.45);
  background: rgba(255,255,255,0.72);
  transform: translateY(-2px);
}
.job h3 { font-size: 1.1rem; font-weight: 650; margin-bottom: 0.2rem; }
.job p { color: var(--mute); font-size: 0.92rem; }
.job__pay {
  font-family: "Fraunces", serif; font-weight: 650; font-size: 1.2rem;
  white-space: nowrap; color: var(--ink);
}
.job__go { grid-column: 1 / -1; display: flex; justify-content: flex-end; }
.job__go .btn { padding: 0.65rem 1.05rem; font-size: 0.88rem; }

.benefits {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin-top: 2.2rem;
}
.benefit h3 {
  font-family: "Fraunces", serif; font-size: 1.25rem; font-weight: 600;
  margin-bottom: 0.45rem; letter-spacing: -0.02em;
}
.benefit p { color: var(--ink-soft); font-size: 0.95rem; }

.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin-top: 2.2rem; counter-reset: step;
}
.step {
  padding: 1.4rem 1.2rem 1.5rem;
  border-top: 2px solid var(--ink);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: "Fraunces", serif;
  font-size: 0.95rem; color: var(--mint-deep);
  margin-bottom: 1.2rem; font-weight: 600;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.4rem; font-weight: 650; }
.step p { color: var(--ink-soft); font-size: 0.93rem; }

.reviews {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2rem;
}
.review {
  padding: 1.5rem 1.4rem 1.35rem;
  background: rgba(16, 22, 28, 0.035);
  border-radius: 22px;
}
.review blockquote {
  font-family: "Fraunces", serif;
  font-size: 1.08rem; font-weight: 500; line-height: 1.45;
  letter-spacing: -0.015em; margin-bottom: 1.1rem;
}
.review cite {
  display: block; font-style: normal; font-size: 0.9rem; color: var(--mute); font-weight: 500;
}

.faq { margin-top: 1.8rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 1.15rem 0; }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  font-weight: 650; font-size: 1.05rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: "Fraunces", serif; font-size: 1.4rem; color: var(--mint);
}
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); margin-top: 0.75rem; max-width: 60ch; }

.cta {
  background: var(--ink);
  color: #f4f0e8;
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 3.2rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.cta .section__eyebrow { color: #8fd9c2; }
.cta .section__title { color: #f7f3eb; max-width: 12ch; }
.cta .section__text { color: rgba(244, 240, 232, 0.72); }
.cta__contacts { margin-top: 1.5rem; display: grid; gap: 0.45rem; }
.cta__contacts a {
  font-family: "Fraunces", serif; font-size: 1.35rem; font-weight: 550;
  color: #f7f3eb; transition: color .2s;
}
.cta__contacts a:hover { color: #8fd9c2; }

.contact-icons {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  margin-top: 1.35rem;
}
.contact-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #f4f0e8;
  transition: transform .25s var(--ease), background .2s, border-color .2s, color .2s;
}
.contact-icon svg { width: 22px; height: 22px; fill: currentColor; }
.contact-icon:hover { transform: translateY(-2px); }
.contact-icon--tg:hover { color: #7ab8ff; border-color: rgba(122,184,255,.5); background: rgba(122,184,255,.12); }
.contact-icon--mail:hover { color: #f0d9a8; border-color: rgba(240,217,168,.5); background: rgba(240,217,168,.12); }
.contact-icon--max:hover { color: #9fd4ff; border-color: rgba(159,212,255,.5); background: rgba(159,212,255,.12); }

.form { display: grid; gap: 0.75rem; }
.form label { display: grid; gap: 0.35rem; font-size: 0.86rem; color: rgba(244,240,232,0.7); }
.form input, .form select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color .2s, background .2s;
}
.form input:focus, .form select:focus {
  border-color: rgba(143, 217, 194, 0.7);
  background: rgba(255,255,255,0.1);
}
.form select option { color: #111; }
.form .btn { width: 100%; margin-top: 0.35rem; }
.form__note { font-size: 0.8rem; color: rgba(244,240,232,0.5); margin-top: 0.35rem; }
.form__ok {
  display: none; padding: 1rem 1.1rem; border-radius: 14px;
  background: rgba(31, 143, 114, 0.25); color: #c9f0e2; font-weight: 600;
}
.form.is-ok .form__ok { display: block; }
.form.is-ok .form__fields { display: none; }

.band {
  margin: clamp(2rem, 5vw, 3.5rem) 0;
  padding: 1.6rem 1.5rem;
  border-radius: 24px;
  background: rgba(16,22,28,0.04);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.band p { max-width: 42ch; color: var(--ink-soft); }

.footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.5rem;
  color: var(--mute); font-size: 0.9rem;
}
.footer strong { color: var(--ink); font-family: "Fraunces", serif; font-weight: 600; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 0.85rem 1.2rem; }
.footer__nav a:hover { color: var(--ink); }

.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}
@keyframes fade {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .reviews { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__copy {
    width: min(100% - 2.5rem, var(--max));
    margin: 0 auto; padding: 2.2rem 0 1.5rem;
  }
  .hero__visual { min-height: 48svh; order: -1; }
  .hero__visual::after {
    background: linear-gradient(180deg, transparent 40%, rgba(238,242,239,0.95));
  }
  .about, .cta, .teasers { grid-template-columns: 1fr; }
  .benefits, .steps { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .nav__burger { display: grid; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column;
    position: absolute; left: 0; right: 0; top: 72px;
    background: rgba(243,241,235,0.98); backdrop-filter: blur(12px);
    padding: 1rem 1.25rem 1.4rem; gap: 1rem;
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 640px) {
  .benefits, .steps, .job, .reviews { grid-template-columns: 1fr; }
  .job__pay { justify-self: start; }
  .nav__cta { display: none; }
  .nav.is-open .nav__cta {
    display: inline-flex; position: absolute; right: 1.25rem; top: 14px;
  }
}


.job-card {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem 1.4rem;
}
.job-card--featured { border-color: rgba(31,143,114,.35); box-shadow: 0 16px 40px rgba(16,22,28,.06); }
.job-card__tag { color: var(--mint-deep); font-weight: 650; font-size: .85rem; margin-bottom: .5rem; }
.job-card h2 { font-family: "Fraunces", serif; font-size: clamp(1.4rem, 3vw, 1.85rem); margin-bottom: .55rem; }
.job-card h3 { margin: 1.1rem 0 .45rem; font-size: 1.05rem; }
.job-card__pay { margin-bottom: .85rem; color: var(--ink-soft); }
.job-list { margin: 0; padding-left: 1.15rem; display: grid; gap: .35rem; color: var(--ink-soft); }
.job-note { margin-top: .9rem; color: var(--mute); font-size: .92rem; }
.legal-card {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem 1.25rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.footer__legal { font-size: .8rem; color: var(--mute); margin-top: .35rem; }
.yandex-box { margin-top: 1rem; }
.ya-embed { display:block; text-decoration:none; color:inherit; border-radius:16px; border:1px solid var(--line); background:rgba(255,255,255,.75); padding:10px; }
.ya-embed__bar { display:flex; justify-content:space-between; gap:12px; padding:6px 8px 10px; font-size:.92rem; }
.ya-embed__open { color: var(--mint-deep); font-weight:700; }
.ya-embed__frame { width:100%; height:min(70vh,780px); border:0; border-radius:12px; pointer-events:none; background:#f5f4f2; }
.faq details { background:rgba(255,255,255,.7); border:1px solid var(--line); border-radius:14px; padding:1rem 1.1rem; margin-bottom:.7rem; }
.faq summary { cursor:pointer; font-weight:650; }
.faq details p { margin-top:.55rem; color:var(--ink-soft); }


/* Brand: Аутсорcинг-Риэлт */
.logo {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.logo span {
  color: var(--mint-deep);
  font-style: normal;
}
.hero__brand {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}
.hero__brand em {
  font-style: italic;
  font-weight: 500;
  color: var(--mint-deep);
}
@media (max-width: 720px) {
  .logo { font-size: 0.98rem; }
}
