:root {
  --ink: #17201e;
  --ink-soft: #40504b;
  --paper: #f7f5ef;
  --white: #ffffff;
  --forest: #173f35;
  --forest-2: #23594a;
  --gold: #c8a35a;
  --line: rgba(23, 32, 30, .14);
  --shadow: 0 24px 70px rgba(18, 38, 32, .14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 100; background: #fff; padding: .7rem 1rem; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--white);
  background: rgba(19, 52, 44, .97);
  border-bottom: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-right: auto; }
.brand-mark { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--gold); border-radius: 50%; font-family: Georgia, serif; letter-spacing: .06em; }
.brand-copy { line-height: 1.2; font-weight: 700; }
.brand-copy small { display: block; color: rgba(255,255,255,.66); font-size: .72rem; font-weight: 500; }
.main-nav { display: flex; gap: 24px; align-items: center; font-size: .92rem; }
.main-nav a { color: rgba(255,255,255,.86); text-decoration: none; }
.main-nav a:hover, .main-nav a:focus { color: #fff; }
.lang-nav { display: flex; gap: 6px; }
.lang-nav a { min-width: 38px; padding: .35rem .45rem; border-radius: 999px; text-align: center; font-size: .78rem; text-decoration: none; color: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.18); }
.lang-nav a[aria-current="page"] { color: var(--forest); background: var(--gold); border-color: var(--gold); font-weight: 800; }
.header-call { text-decoration: none; font-weight: 750; white-space: nowrap; }

.hero { color: #fff; background: var(--forest); }
.hero-grid { min-height: 650px; display: grid; grid-template-columns: 1.12fr .88fr; align-items: stretch; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px 72px 80px 0; }
.eyebrow { margin: 0 0 18px; color: var(--gold); text-transform: uppercase; letter-spacing: .13em; font-size: .78rem; font-weight: 800; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.12; font-weight: 500; }
h1 { margin: 0; max-width: 780px; font-size: clamp(2.55rem, 5vw, 5rem); letter-spacing: -.035em; }
.hero-lead { max-width: 720px; margin: 24px 0 0; color: rgba(255,255,255,.78); font-size: 1.13rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: .75rem 1.2rem; border-radius: 999px; text-decoration: none; font-weight: 800; }
.button-primary { color: var(--forest); background: var(--gold); }
.button-secondary { color: #fff; border: 1px solid rgba(255,255,255,.32); }
.hero-photo { position: relative; min-height: 520px; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--forest) 0%, transparent 28%), linear-gradient(0deg, rgba(16,45,38,.4), transparent 40%); }
.proof { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.14); }
.proof div { padding: 22px 30px; border-right: 1px solid rgba(255,255,255,.14); }
.proof strong { display: block; font-family: Georgia, serif; color: var(--gold); font-size: 1.45rem; font-weight: 500; }
.proof span { color: rgba(255,255,255,.7); font-size: .9rem; }

.section { padding: 92px 0; }
.section-heading { display: grid; grid-template-columns: .72fr 1.28fr; gap: 44px; align-items: end; margin-bottom: 42px; }
.section-kicker { color: var(--forest-2); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 850; }
h2 { margin: 0; font-size: clamp(2.15rem, 4.2vw, 3.8rem); letter-spacing: -.025em; }
.section-intro { margin: 0; color: var(--ink-soft); font-size: 1.05rem; max-width: 720px; }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.card { min-height: 270px; display: flex; flex-direction: column; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(200,163,90,.7); }
.card-number { color: var(--gold); font-size: .8rem; font-weight: 850; }
.card h3 { margin: auto 0 10px; font-size: 1.55rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: .94rem; }
.card-arrow { margin-top: 22px; color: var(--forest-2); font-weight: 900; }

.trust { color: #fff; background: var(--forest); }
.trust-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 70px; align-items: center; }
.portrait-card { position: relative; border-radius: 26px; overflow: hidden; box-shadow: var(--shadow); }
.portrait-card img { width: 100%; aspect-ratio: 4/4.25; object-fit: cover; object-position: center 25%; }
.trust-copy p { color: rgba(255,255,255,.75); }
.credentials { list-style: none; padding: 0; margin: 30px 0 0; border-top: 1px solid rgba(255,255,255,.18); }
.credentials li { padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.18); display: grid; grid-template-columns: 28px 1fr; gap: 12px; }
.credentials li::before { content: "✓"; color: var(--gold); font-weight: 900; }

.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.process-step { padding: 30px; border-left: 2px solid var(--gold); background: rgba(255,255,255,.55); }
.process-step strong { color: var(--forest-2); }
.process-step h3 { margin: 12px 0 10px; font-size: 1.45rem; }
.process-step p { margin: 0; color: var(--ink-soft); }

.contact { background: #e8eee9; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-list { display: grid; gap: 10px; margin-top: 28px; }
.contact-list a, .contact-list address { font-style: normal; text-decoration: none; color: var(--forest); font-weight: 750; }
.contact-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-box { display: flex; min-height: 150px; flex-direction: column; justify-content: flex-end; padding: 24px; color: #fff; background: var(--forest); border-radius: var(--radius); text-decoration: none; }
.contact-box.gold { color: var(--forest); background: var(--gold); }
.contact-box small { opacity: .72; }
.contact-box strong { margin-top: 7px; font-size: 1.08rem; }

.service-hero { color: #fff; background: var(--forest); padding: 88px 0 72px; }
.breadcrumbs { margin: 0 0 28px; color: rgba(255,255,255,.65); font-size: .86rem; }
.breadcrumbs a { text-decoration: none; }
.service-hero h1 { font-size: clamp(2.45rem, 5vw, 4.6rem); }
.service-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 64px; align-items: start; }
.article h2 { margin: 48px 0 18px; font-size: 2.25rem; }
.article h2:first-child { margin-top: 0; }
.article p { color: var(--ink-soft); }
.check-list { list-style: none; padding: 0; margin: 20px 0; }
.check-list li { padding: 11px 0 11px 30px; position: relative; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--forest-2); font-weight: 900; }
.sidebar { position: sticky; top: 110px; padding: 28px; color: #fff; background: var(--forest); border-radius: var(--radius); }
.sidebar h2 { font-size: 1.8rem; }
.sidebar p { color: rgba(255,255,255,.72); }
.sidebar .button { width: 100%; margin-top: 10px; }
.related { display: grid; gap: 10px; margin-top: 28px; }
.related a { padding: 12px 0; color: rgba(255,255,255,.86); border-top: 1px solid rgba(255,255,255,.15); text-decoration: none; }

.site-footer { padding: 34px 0; color: rgba(255,255,255,.72); background: #0d2821; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-grid strong { color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { text-decoration: none; }
.floating-contact { position: fixed; right: 18px; bottom: 18px; z-index: 70; display: grid; gap: 10px; }
.floating-contact a { display: flex; align-items: center; gap: 9px; min-width: 148px; padding: .8rem 1rem; color: #fff; border-radius: 999px; box-shadow: 0 10px 28px rgba(0,0,0,.22); text-decoration: none; font-weight: 850; font-size: .88rem; }
.floating-contact .whatsapp { background: #147e45; }
.floating-contact .telegram { background: #217aaf; }
.floating-contact svg { width: 21px; height: 21px; fill: currentColor; }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 72px 0 50px; }
  .hero-photo { min-height: 480px; margin-inline: -20px; }
  .hero-photo::after { background: linear-gradient(0deg, var(--forest), transparent 35%); }
  .cards { grid-template-columns: repeat(2,1fr); }
  .trust-grid, .service-layout { grid-template-columns: 1fr; }
  .portrait-card { max-width: 620px; }
  .sidebar { position: static; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 68px; gap: 12px; }
  .brand-copy { display: none; }
  .header-call { display: none; }
  .lang-nav { margin-left: auto; }
  .hero-copy { padding-top: 58px; }
  .hero-photo { min-height: 390px; }
  .proof { grid-template-columns: 1fr; }
  .proof div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .section { padding: 68px 0; }
  .section-heading, .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .cards, .process-grid, .contact-actions { grid-template-columns: 1fr; }
  .card { min-height: 235px; }
  .trust-grid { gap: 38px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .floating-contact a { min-width: 52px; width: 52px; height: 52px; padding: 0; justify-content: center; }
  .floating-contact span { position: absolute; left: -9999px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card { transition: none; }
}
