:root {
  --black: #0a0a0a;
  --green: #4ab85b;
  --green-dark: #398a46;
  --green-light: #e9f6ec;
  --white: #ffffff;
  --bg-soft: #f6f8f6;
  --text: #1a1a1a;
  --text-muted: #5a5f5c;
  --border: #e3e7e3;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, .logo-word {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p { margin: 0 0 1em; }

a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Header */
.site-header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 40px;
  width: auto;
}

.brand-text {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--black);
}

.brand-text .dot { color: var(--green); }

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  color: var(--text);
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--green-dark);
  text-decoration: none;
  border-bottom-color: var(--green);
}

.lang-switch a {
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid var(--border) !important;
  border-radius: 999px;
  padding: 5px 13px !important;
}

.lang-switch a:hover {
  border-color: var(--green) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
  padding: 80px 0 64px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: 2.6rem;
  color: var(--black);
}

.hero h1 .accent { color: var(--green-dark); }

.hero p.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 46ch;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  max-width: 280px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 4px;
  font-weight: 600;
  border: 2px solid var(--green);
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  text-decoration: none;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
}
.btn-outline:hover {
  background: var(--green-light);
  text-decoration: none;
}

/* Sections */
section { padding: 64px 0; }
section.alt { background: var(--bg-soft); }

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-heading h2 { color: var(--black); font-size: 2rem; }
.section-heading p { color: var(--text-muted); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-dark);
  display: block;
  margin-bottom: 8px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.card h3 { font-size: 1.1rem; color: var(--black); }
.card p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.96rem;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat .number {
  font-family: "Lora", Georgia, serif;
  font-size: 2.2rem;
  color: var(--green-dark);
  font-weight: 600;
}

.stat .label {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.split-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

@media (max-width: 700px) {
  .split-row { grid-template-columns: 1fr; text-align: center; }
  .split-row .countries { justify-content: center !important; }
  .split-row .hero-visual { order: -1; }
  .split-row .hero-visual img { max-width: 130px; }
}

/* Countries */
.countries {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.countries span {
  background: var(--green-light);
  color: var(--green-dark);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Services list (services page) */
.service-block {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child { border-bottom: none; }

.service-block .num {
  font-family: "Lora", Georgia, serif;
  font-size: 1.6rem;
  color: var(--green);
  font-weight: 600;
}

.service-block h3 {
  color: var(--black);
  font-size: 1.25rem;
}

.service-block p { color: var(--text-muted); }

/* Photo banner */
.photo-banner {
  position: relative;
  height: 340px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0;
}
.photo-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.08) brightness(0.95);
}
.photo-banner-tint {
  position: absolute;
  inset: 0;
  background: var(--green);
  mix-blend-mode: color;
  opacity: 0.95;
}
.photo-banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
}
.photo-banner-caption {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: "Lora", Georgia, serif;
  font-size: 1.3rem;
  padding: 28px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 700px) {
  .photo-banner { height: 240px; }
  .photo-banner-caption { font-size: 1.05rem; }
}

/* CTA band */
.cta-band {
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.cta-band h2 { color: var(--white); }
.cta-band p { color: #cfcfcf; }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info .item {
  margin-bottom: 24px;
}

.contact-info .item .label {
  font-weight: 700;
  color: var(--black);
  display: block;
  margin-bottom: 4px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
  display: block;
}

form.contact-form input,
form.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

form.contact-form input:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
}

form.contact-form button {
  align-self: flex-start;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
}

.visually-hidden { display: none; }

.form-status {
  font-size: 0.92rem;
  margin: 0;
}
.form-status.success { color: var(--green-dark); }
.form-status.error { color: #c0392b; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg-soft);
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer .brand-text { font-size: 1.05rem; }

.footer-meta {
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: right;
}

/* Responsive */
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-visual img { max-width: 160px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: none;
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul {
    flex-direction: column;
    padding: 12px 24px 20px;
    gap: 4px;
  }
  nav.main-nav a { display: block; padding: 10px 0; }
  .nav-toggle { display: block; }
  .site-header { position: relative; }
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 2rem; }
  section { padding: 48px 0; }
  .site-footer .container { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
}
