:root {
  --bg: #f7f5ef;
  --text: #11231f;
  --muted: #34524c;
  --accent: #13795b;
  --card: #fffef9;
  --border: #d6ddcf;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 20% 10%, #e5f5ee 0%, transparent 28%),
    radial-gradient(circle at 80% 0%, #ffe9c8 0%, transparent 25%), var(--bg);
  min-height: 100vh;
}

.bg-shape {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
}

.shape-a {
  width: 280px;
  height: 280px;
  background: #87d7bd;
  top: 40px;
  right: 8%;
}

.shape-b {
  width: 240px;
  height: 240px;
  background: #f5b76f;
  bottom: 5%;
  left: 5%;
}

.site-header,
main,
.site-footer,
.legal-shell {
  width: min(1080px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.site-header {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--card);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 10px;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--accent);
  color: #fff;
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.hero {
  padding: 36px 0 24px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
}

h1 {
  margin-top: 14px;
  font-size: clamp(2rem, 4.8vw, 4rem);
  line-height: 1.05;
  max-width: 860px;
}

.lead {
  max-width: 780px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.services,
.approach,
.contact {
  margin-top: 46px;
}

.services h2,
.approach h2,
.contact h2 {
  font-size: clamp(1.4rem, 2.6vw, 2.3rem);
  margin-bottom: 20px;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(17, 35, 31, 0.08);
}

.card h3 {
  font-size: 1.06rem;
  margin-bottom: 8px;
}

.card p,
.approach li,
.contact p {
  color: var(--muted);
  line-height: 1.5;
}

.approach ol {
  margin: 0;
  padding-left: 18px;
}

.approach li + li {
  margin-top: 10px;
}

.cta {
  text-decoration: none;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

.cta-secondary {
  display: inline-block;
  margin-top: 10px;
}

.contact {
  padding-bottom: 56px;
}

.site-footer {
  padding-bottom: 56px;
}

.legal-note {
  margin: 0;
  color: var(--muted);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.legal-links a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.legal-page .site-header {
  padding-bottom: 12px;
}

.legal-page main {
  padding-bottom: 56px;
}

.legal-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 8px;
}

.legal-intro {
  color: var(--muted);
  margin-bottom: 24px;
}

.legal-sections {
  display: grid;
  gap: 14px;
}

.legal-section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.legal-section h2 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.55;
}

.legal-section ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.back-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 640px) {
  .site-header {
    padding-top: 18px;
    gap: 10px;
  }

  .brand {
    font-size: 1rem;
  }

  .header-actions {
    gap: 8px;
  }

  .lang-btn {
    font-size: 0.72rem;
    padding: 7px 8px;
  }

  .cta {
    font-size: 0.85rem;
    padding: 9px 12px;
  }

  .hero {
    padding-top: 24px;
  }
}
