:root {
  --ivory: #fbf9f5;
  --stone: #d9d0c5;
  --sage: #94bba9;
  --green: #274438;
  --deep-green: #17352b;
  --charcoal: #1e1a16;
  --terracotta: #c96b3b;
  --font-body: "DM Sans", Arial, sans-serif;
  --font-title: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.6;
}

.topbar {
  background: var(--deep-green);
  color: var(--ivory);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 0.7rem 1rem;
  text-align: center;
}

a {
  color: inherit;
}

nav {
  align-items: center;
  background: rgba(251, 249, 245, 0.94);
  border-bottom: 1px solid rgba(39, 68, 56, 0.12);
  display: flex;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 3rem);
}

.nav-logo,
.footer-logo {
  color: var(--green);
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  text-decoration: none;
}

.btn-quote,
.btn-primary {
  border-radius: 4px;
  font-weight: 700;
}

.btn-quote {
  background: var(--terracotta);
  color: #fff;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
}

.hero {
  min-height: 68vh;
  padding: clamp(4rem, 10vw, 8rem) clamp(1.25rem, 6vw, 5rem);
  display: grid;
  align-content: center;
  max-width: 1100px;
}

.hero-title {
  color: var(--deep-green);
  font-family: var(--font-title);
  font-size: clamp(3rem, 8vw, 6.6rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0 0 1.4rem;
}

.hero-title em {
  color: var(--terracotta);
  font-style: italic;
}

.hero-sub {
  color: #4a4037;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  max-width: 680px;
  margin: 0 0 2rem;
}

.services {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 clamp(1.25rem, 6vw, 5rem) 5rem;
}

.service-card {
  background: #fff;
  border: 1px solid rgba(39, 68, 56, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(23, 53, 43, 0.08);
  padding: 1.6rem;
}

.service-card h3 {
  color: var(--green);
  font-family: var(--font-title);
  font-size: 1.8rem;
  margin: 0 0 0.8rem;
}

footer {
  background: var(--deep-green);
  color: var(--ivory);
  padding: 3rem clamp(1.25rem, 6vw, 5rem);
}

.footer-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.language-switch {
  margin-top: 1rem;
}

@media (max-width: 760px) {
  nav,
  .footer-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }
}
