:root {
  --bg: #f7f4ef;
  --ink: #172421;
  --muted: #5f665f;
  --line: #d9ded7;
  --card: #ffffff;
  --accent: #d6ff61;
  --whatsapp: #20c463;
  --shadow: 0 14px 40px rgba(23, 36, 33, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(100% - 24px, 1120px);
  margin: 0 auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 10px 0;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 10px 12px;
  border-radius: 18px;
  background: var(--ink);
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.brand-name {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 48px;
  height: 40px;
  border: 0;
  border-radius: 20px;
  background: var(--accent);
  cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--ink);
}

.site-nav {
  display: none;
  position: absolute;
  top: 78px;
  right: 12px;
  left: 12px;
  padding: 12px;
  border-radius: 16px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: block;
}

.menu {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: #fff;
}

.hero {
  padding: 28px 0 20px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 9vw, 64px);
  line-height: 1.02;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.services-section {
  padding: 12px 0 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.service-card {
  min-width: 0;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
  box-shadow: 0 8px 24px rgba(23, 36, 33, 0.07);
}

.service-card img {
  width: 100%;
  aspect-ratio: 1 / 0.76;
  object-fit: cover;
  border-radius: 9px;
  background: #e8ece7;
}

.service-card h2 {
  display: flex;
  align-items: center;
  min-height: 34px;
  margin: 7px 2px 6px;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: clamp(10px, 2.8vw, 15px);
  line-height: 1.13;
}

.service-card a {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 34px;
  padding: 7px 4px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  font-size: clamp(10px, 2.7vw, 14px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.site-footer {
  padding: 28px 0;
  background: var(--ink);
  color: #fff;
}

.footer-inner {
  display: grid;
  gap: 18px;
}

.footer-inner p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-whatsapp {
  display: inline-grid;
  place-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 800;
}

.content-page {
  padding: 48px 0;
}

.entry {
  max-width: 760px;
}

@media (min-width: 560px) {
  .shell {
    width: min(100% - 40px, 1120px);
  }

  .service-grid {
    gap: 14px;
  }

  .service-card {
    padding: 10px;
    border-radius: 16px;
  }

  .service-card img {
    border-radius: 12px;
  }
}

@media (min-width: 820px) {
  .menu-toggle {
    display: none;
  }

  .site-nav,
  .site-nav.is-open {
    display: block;
    position: static;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .menu {
    display: flex;
    align-items: center;
  }

  .menu a {
    padding: 9px 12px;
  }

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

  .hero p:not(.eyebrow) {
    font-size: 19px;
  }

  .service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .service-card h2 {
    font-size: 18px;
  }

  .service-card a {
    min-height: 42px;
    font-size: 15px;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
