:root {
  --bg: #f6f2e8;
  --paper: #fffdf8;
  --ink: #141414;
  --muted: #5f5a53;
  --line: rgba(20, 20, 20, 0.12);
  --yellow: #f5c400;
  --yellow-deep: #e0af00;
  --green: #0f8f52;
  --soft: #efe6cf;
  --radius: 30px;
  --shadow: 0 22px 55px rgba(20, 20, 20, 0.12);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Work Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(245, 196, 0, 0.14), transparent 24%),
    linear-gradient(180deg, #fbf8ef 0%, #f6f2e8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(transparent 0 96%, rgba(20, 20, 20, 0.04) 96% 100%),
    linear-gradient(90deg, transparent 0 96%, rgba(20, 20, 20, 0.03) 96% 100%);
  background-size: 84px 84px;
  opacity: 0.45;
}

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

iframe {
  width: 100%;
  border: 0;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 242, 232, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.header-row {
  position: relative;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-symbol {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--yellow), #ffd84a);
  border: 2px solid rgba(20, 20, 20, 0.08);
  box-shadow: inset 0 -10px 18px rgba(255, 255, 255, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: rotate(-6deg);
}

.brand-symbol img {
  width: 150%;
  height: 150%;
  object-fit: cover;
  object-position: 44% 36%;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong,
.brand-text small,
h1,
h2,
h3,
.cta,
.service-index {
  font-family: "Archivo", sans-serif;
}

.brand-text strong {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-menu a {
  color: var(--muted);
  font-weight: 600;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(20, 20, 20, 0.06);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 999px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  border: 1px solid rgba(20, 20, 20, 0.1);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(245, 196, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cta:hover,
.cta:focus-visible,
.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.cta-dark {
  background: #161616;
  color: white;
  box-shadow: none;
}

.cta-outline {
  background: transparent;
  box-shadow: none;
}

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

.hero-layout,
.products-layout,
.about-layout,
.contact-layout {
  display: grid;
  gap: 24px;
}

.hero-layout {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
}

.kicker {
  margin: 0 0 16px;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero-text,
.section-head p,
.service-card p,
.differential-item p,
.review-card p,
.about-text p,
.contact-stack a,
.contact-stack span,
.site-footer p,
.hero-feature p,
.hero-feature-side span {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  font-size: 1.04rem;
}

.hero-copy {
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
}

.hero-composition {
  position: relative;
  min-height: 520px;
}

.hero-feature,
.service-card,
.product-tile,
.differential-item,
.review-card,
.about-card,
.contact-card,
.map-wrapper,
.stats-band {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-feature-main {
  position: absolute;
  inset: 0 0 90px 40px;
  padding: 34px;
  background: linear-gradient(165deg, var(--yellow) 0%, #ffd84a 48%, #fff2b8 100%);
  transform: rotate(-3deg);
}

.hero-feature-main .label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.08);
  font-family: "Archivo", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-feature-main h2 {
  max-width: 10ch;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-feature-side {
  position: absolute;
  top: 22px;
  right: 0;
  width: 230px;
  padding: 22px;
  background: #171717;
  color: white;
}

.hero-feature-side span {
  color: rgba(255, 255, 255, 0.72);
}

.hero-strip {
  position: absolute;
  right: 24px;
  bottom: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.hero-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f1ebdb;
  font-weight: 700;
}

.section {
  padding: 54px 0;
}

.stats-band {
  background: #141414;
  color: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 18px 0;
}

.stats-grid article {
  padding: 8px 0;
}

.stats-grid strong {
  display: block;
  font-family: "Archivo", sans-serif;
  font-size: 2rem;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  max-width: 740px;
  margin-bottom: 28px;
}

.section-head h2,
.about-card h2,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.services-grid,
.reviews-grid {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(5, 1fr);
}

.service-card {
  min-height: 240px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.service-index {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--yellow-deep);
  font-size: 2.2rem;
  font-weight: 900;
}

.products-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.product-tile {
  min-height: 160px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(245, 196, 0, 0.2), rgba(245, 196, 0, 0.05)),
    var(--paper);
  border: 1px solid rgba(20, 20, 20, 0.08);
  display: flex;
  align-items: end;
}

.product-tile strong {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.differentials-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.differential-item {
  padding: 22px 24px;
  background: var(--soft);
  border: 1px solid rgba(20, 20, 20, 0.07);
}

.differential-item h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.reviews-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.review-card span {
  display: inline-block;
  margin-bottom: 16px;
  font-family: "Archivo", sans-serif;
  font-weight: 800;
}

.about-layout,
.contact-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}

.about-card,
.contact-card {
  padding: 28px;
  background: #171717;
  color: white;
}

.about-card .kicker,
.contact-card .kicker {
  color: #ffe37d;
}

.about-text {
  padding: 18px 8px;
}

.contact-stack {
  display: grid;
  gap: 12px;
}

.contact-stack a,
.contact-stack span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.map-wrapper {
  overflow: hidden;
  background: #ddd3bb;
  min-height: 420px;
}

.map-wrapper iframe {
  min-height: 420px;
}

.site-footer {
  padding: 30px 0 44px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  padding-top: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 32px rgba(15, 143, 82, 0.28);
  font-weight: 700;
}

.floating-whatsapp .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card,
.product-tile,
.differential-item,
.review-card,
.cta,
.floating-whatsapp {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-card:hover,
.product-tile:hover,
.differential-item:hover,
.review-card:hover {
  transform: translateY(-4px);
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-layout,
  .products-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid rgba(20, 20, 20, 0.08);
    box-shadow: var(--shadow);
  }

  .site-menu.open {
    display: flex;
  }

  .hero-composition {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .hero-feature-main,
  .hero-feature-side,
  .hero-strip {
    position: relative;
    inset: auto;
    width: auto;
    transform: none;
  }

  .stats-grid,
  .reviews-grid,
  .differentials-list,
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  h1 {
    max-width: none;
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .hero-actions,
  .footer-row,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .cta,
  .cta-dark,
  .cta-outline {
    width: 100%;
  }

  .services-grid,
  .stats-grid,
  .reviews-grid,
  .differentials-list,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 44px 0;
  }

  .map-wrapper,
  .map-wrapper iframe {
    min-height: 320px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
  }
}
