:root {
  --bg: #f4f1ea;
  --bg-soft: #ece8de;
  --surface: #ffffff;
  --surface-alt: #e9eee6;
  --text: #2f3a31;
  --muted: #5f6b61;
  --accent: #7e8f73;
  --accent-2: #c6a37a;
  --accent-dark: #5f7255;
  --border: #d7ddd1;
  --shadow: 0 6px 14px rgba(88, 102, 84, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #4f5f4a;
  color: #f6f3ed;
  padding: 1.2rem 1.25rem 4rem;
}

.hero::before,
.hero::after {
  content: none;
}

.nav {
  position: relative;
  z-index: 1;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

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

.nav a {
  color: #f2eee6;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.88;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.lang-switcher {
  display: inline-flex;
  gap: 0.35rem;
}

.lang-btn {
  border: 1px solid rgba(242, 238, 230, 0.45);
  background: transparent;
  color: #f2eee6;
  border-radius: 8px;
  font: inherit;
  font-size: 0.86rem;
  padding: 0.3rem 0.55rem;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.lang-btn:hover {
  border-color: rgba(242, 238, 230, 0.75);
  background: rgba(242, 238, 230, 0.14);
}

.lang-btn[aria-pressed="true"] {
  background: #f5f1e8;
  color: #334235;
  border-color: #f5f1e8;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1024px;
  margin: 2.4rem auto 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 1.5rem;
  animation: fadeIn 420ms ease both;
}

.hero-text {
  max-width: 62ch;
}

.hero-kicker {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(242, 238, 230, 0.35);
  border-radius: 999px;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  background: rgba(25, 33, 24, 0.44);
  color: #f6f3ed;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-wrap: balance;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
}

.location {
  margin-top: 1rem;
  color: #e5dfd4;
  font-weight: 600;
}

.intro {
  max-width: 70ch;
}

.hero-visual {
  margin: 0;
  justify-self: end;
  width: min(390px, 100%);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(242, 238, 230, 0.32);
  background: rgba(242, 238, 230, 0.08);
  box-shadow: 0 14px 30px rgba(20, 28, 18, 0.28);
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.cta {
  display: inline-block;
  margin-top: 0.75rem;
  background: #fefdf9;
  color: #4b5f44;
  text-decoration: none;
  font-weight: 600;
  padding: 0.78rem 1.24rem;
  border-radius: 8px;
  border: 1px solid #cfd6c8;
  box-shadow: 0 2px 6px rgba(58, 72, 54, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cta:hover {
  transform: translateY(-1px);
  border-color: #7e8f73;
  box-shadow: 0 6px 14px rgba(58, 72, 54, 0.28);
}

main {
  max-width: 1024px;
  margin: 0 auto;
  padding: 1rem 1.25rem 2.5rem;
}

.section {
  padding: 2.4rem 0;
  animation: fadeIn 360ms ease both;
}

.section-alt {
  background: var(--surface-alt);
  margin: 0 -1.25rem;
  padding: 2.4rem 1.25rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: 12px;
}

#services {
  animation-delay: 80ms;
}

#about {
  animation-delay: 140ms;
}

#pricing {
  animation-delay: 200ms;
}

#contact {
  animation-delay: 260ms;
}

h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.section-text {
  margin-top: 0;
  color: var(--muted);
  max-width: 72ch;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.05rem;
  box-shadow: var(--shadow);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.card h3 {
  margin-top: 0;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(88, 102, 84, 0.22);
  border-color: #bcc8b4;
}

.about-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 2fr 1fr;
}

.highlights {
  margin: 0;
  padding-left: 1.2rem;
}

.pricing-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  transition: background-color 160ms ease;
}

.price-row:hover {
  background: #f4f6f1;
}

.price-row:last-child {
  border-bottom: none;
}

.contact-grid {
  display: grid;
  gap: 0.35rem;
}

.contact-grid p {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 0.8rem;
  box-shadow: 0 4px 10px rgba(88, 102, 84, 0.12);
}

.contact-email {
  margin-right: 0.35rem;
}

.copy-email-btn {
  border: 1px solid var(--border);
  background: #f8faf6;
  color: var(--accent-dark);
  border-radius: 6px;
  font: inherit;
  font-size: 0.9rem;
  line-height: 1;
  padding: 0.24rem 0.42rem;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.copy-email-btn:hover {
  background: #eef3ea;
  border-color: #bcc8b4;
  transform: translateY(-1px);
}

.copy-email-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.copy-email-btn.is-copied {
  background: #dfe9d8;
  border-color: #9fb091;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  max-width: 1024px;
  margin: 0 auto;
}

.footer a {
  color: var(--accent-dark);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 760px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-visual {
    justify-self: stretch;
    max-width: 420px;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    width: 100%;
    justify-content: space-between;
  }
}
