@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("assets/fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("assets/fonts/plus-jakarta-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg: #f7f5f1;
  --surface: #ffffff;
  --ink: #1e2a28;
  --muted: #6b7671;
  --accent: #2f7a6f;
  --accent-dark: #245e55;
  --accent-soft: #e5f0ed;
  --line: #e7e3db;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 40px rgba(30, 42, 40, 0.10);
  --shadow-sm: 0 8px 22px rgba(30, 42, 40, 0.07);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html { color-scheme: light; scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { line-height: 1.15; letter-spacing: -0.02em; margin: 0; }

a { color: inherit; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover { background: var(--accent-dark); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--block { width: 100%; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 245, 241, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.brand__mark {
  width: 24px;
  height: 24px;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 500;
}

.nav__links a { text-decoration: none; color: var(--muted); transition: color 0.2s ease; }
.nav__links a:hover { color: var(--ink); }

.nav__ig {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent) !important;
  font-weight: 600;
}

.hero {
  padding: clamp(56px, 10vw, 120px) 24px clamp(40px, 7vw, 80px);
}

.hero__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 8px 16px;
  border-radius: 999px;
  margin: 0 0 22px;
}

.hero__title {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.hero__lead {
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.services {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 80px) 24px;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto clamp(32px, 5vw, 52px);
}

.section-head h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-head p { color: var(--muted); margin: 0; font-size: 1.05rem; }

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.card__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; }

.contact {
  background: linear-gradient(180deg, #ffffff 0%, #f2efe9 100%);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 8vw, 90px) 24px;
}

.contact__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.contact__intro h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.contact__intro p { color: var(--muted); font-size: 1.08rem; margin: 0 0 22px; }

.contact__ig {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.contact__ig:hover { color: var(--accent-dark); }

.form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow);
}

.field { margin-bottom: 18px; }

.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 7px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fcfbf9;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field textarea { resize: vertical; }

.field--hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__status {
  margin: 16px 0 0;
  font-size: 0.95rem;
  min-height: 1.2em;
}

.grecaptcha-badge { visibility: hidden; }

.form__legal {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--color-muted, #6b7280);
}

.form__legal img { flex: none; width: 26px; height: 26px; opacity: 0.7; }

.form__legal a { color: inherit; text-decoration: underline; }

.form__status--ok { color: var(--accent-dark); }
.form__status--error { color: #b3261e; }

.footer {
  border-top: 1px solid rgba(30, 42, 40, 0.06);
  background: var(--bg);
}

.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #9aa39f;
  font-size: 0.82rem;
}

.footer__links { display: flex; gap: 18px; }
.footer__links a { text-decoration: none; color: #9aa39f; transition: color 0.2s ease; }
.footer__links a:hover { color: var(--ink); }

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 72px) 24px clamp(56px, 8vw, 96px);
}

.legal__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 7px 14px;
  border-radius: 999px;
  margin: 0 0 18px;
}

.legal__title {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.legal__updated { color: var(--muted); font-size: 0.9rem; margin: 0 0 18px; }
.legal__intro { color: var(--muted); font-size: 1.05rem; margin: 0; }

.legal__toc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  margin-top: 30px;
}

.legal__toc h2 { font-size: 1.02rem; font-weight: 800; margin: 0 0 12px; }
.legal__toc ol { margin: 0; padding-left: 20px; columns: 2; column-gap: 32px; }
.legal__toc li { margin-bottom: 6px; break-inside: avoid; }
.legal__toc a { color: var(--ink); text-decoration: none; }
.legal__toc a:hover { color: var(--accent); text-decoration: underline; }

.legal section { margin-top: 40px; scroll-margin-top: 84px; }

.legal h2 {
  font-size: clamp(1.25rem, 2.6vw, 1.5rem);
  font-weight: 800;
  margin: 0 0 14px;
}

.legal h3 { font-size: 1.05rem; font-weight: 700; margin: 22px 0 8px; }
.legal p { margin: 0 0 14px; }
.legal ul { margin: 0 0 14px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal strong { font-weight: 700; }
.legal a { color: var(--accent); text-decoration: underline; }
.legal a:hover { color: var(--accent-dark); }

.legal__box {
  background: var(--accent-soft);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 22px 0;
}
.legal__box p:last-child { margin-bottom: 0; }

@media (max-width: 560px) {
  .legal__toc ol { columns: 1; }
}

@media (max-width: 860px) {
  .cards { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .nav__links { gap: 14px; }
  .nav__links a[href="#uslugi"] { display: none; }
  .nav__ig span { display: none; }
  .footer__inner { flex-direction: column; text-align: center; }
}

.cookie-settings { cursor: pointer; }

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding: 16px;
  background: var(--surface);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cookie-banner__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-banner__text a { color: var(--accent); text-decoration: underline; }

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

.cookie-banner__btn {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-banner__btn--reject {
  background: transparent;
  color: var(--ink);
}
.cookie-banner__btn--reject:hover { border-color: var(--muted); }

.cookie-banner__btn--accept {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.cookie-banner__btn--accept:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

@media (max-width: 640px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .cookie-banner__actions { justify-content: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto; }
}
