:root {
  --green-950: #00713c;
  --green-900: #0b854d;
  --green-800: #109b5b;
  --lime: #9fd30b;
  --lime-2: #b7df20;
  --cream: #f7f8ee;
  --white: #ffffff;
  --ink: #173223;
  --muted: #607063;
  --line: rgba(7, 93, 51, .16);
  --shadow: 0 22px 70px rgba(0, 63, 33, .16);
  --radius: 8px;
  --content-width: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(159, 211, 11, .12), transparent 32rem),
    linear-gradient(180deg, #fbfcf7 0%, var(--cream) 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px max(16px, calc((100vw - var(--content-width)) / 2));
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: auto;
  height: 114px;
  max-width: min(630px, 62vw);
  object-fit: contain;
}

.brand strong {
  display: block;
  color: var(--green-950);
  font-size: clamp(.92rem, 1.7vw, 1.05rem);
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--green-950);
  font-weight: 700;
  transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: var(--green-900);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 63, 33, .16);
}

.site-nav .nav-cta {
  color: var(--green-950);
  background: var(--lime);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 0;
  border-radius: 50%;
  background: var(--green-950);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 43vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
  gap: 28px;
  padding: clamp(56px, 7vw, 88px) max(18px, calc((100vw - var(--content-width)) / 2)) 34px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -6vw -6vw -6vw;
  height: 120px;
  background: var(--lime);
  transform: rotate(-2deg);
  transform-origin: left bottom;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  position: absolute;
  top: 50%;
  right: 0;
  width: auto;
  height: 100%;
  max-width: none;
  transform: translateY(-50%);
  filter: saturate(1.02);
  opacity: .52;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .25) 7%, #000 20%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .25) 7%, #000 20%, #000 100%);
  animation: heroBreath 16s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 63, 33, .92) 0%, rgba(0, 63, 33, .66) 42%, rgba(0, 63, 33, .2) 100%),
    linear-gradient(0deg, rgba(0, 63, 33, .86), transparent 45%);
}

.hero-copy,
.hero-card,
.page-hero > div {
  position: relative;
  z-index: 1;
}

.clean-sparkles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.clean-sparkles span {
  position: absolute;
  width: 34px;
  height: 34px;
  opacity: 0;
  transform: scale(.45) rotate(0deg);
  animation: sparklePulse 4.2s ease-in-out infinite;
}

.clean-sparkles span::before,
.clean-sparkles span::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--sparkle-color, rgba(255, 255, 255, .96));
  clip-path: polygon(50% 0, 56% 39%, 100% 50%, 56% 61%, 50% 100%, 44% 61%, 0 50%, 44% 39%);
  filter:
    drop-shadow(0 0 5px rgba(255, 255, 255, .85))
    drop-shadow(0 0 18px rgba(183, 223, 32, .72));
}

.clean-sparkles span::before {
  width: 100%;
  height: 100%;
}

.clean-sparkles span::after {
  width: 82%;
  height: 82%;
  transform: rotate(45deg);
}

.clean-sparkles span:nth-child(1) { left: 8%; top: 22%; animation-delay: .2s; --sparkle-color: rgba(255, 255, 255, 1); }
.clean-sparkles span:nth-child(2) { left: 25%; top: 15%; width: 24px; height: 24px; animation-delay: 1.1s; --sparkle-color: rgba(183, 223, 32, 1); }
.clean-sparkles span:nth-child(3) { left: 42%; top: 30%; width: 30px; height: 30px; animation-delay: 2.2s; }
.clean-sparkles span:nth-child(4) { left: 63%; top: 18%; width: 26px; height: 26px; animation-delay: 3s; --sparkle-color: rgba(183, 223, 32, 1); }
.clean-sparkles span:nth-child(5) { left: 36%; top: 72%; width: 22px; height: 22px; animation-delay: 1.7s; }
.clean-sparkles span:nth-child(6) { left: 82%; top: 60%; animation-delay: 3.6s; --sparkle-color: rgba(255, 255, 255, 1); }
.clean-sparkles span:nth-child(7) { left: 15%; top: 66%; width: 20px; height: 20px; animation-delay: 2.8s; --sparkle-color: rgba(183, 223, 32, 1); }
.clean-sparkles span:nth-child(8) { left: 72%; top: 38%; width: 18px; height: 18px; animation-delay: .8s; }

@keyframes sparklePulse {
  0%, 100% {
    opacity: 0;
    transform: scale(.35) rotate(0deg);
  }
  28% {
    opacity: 1;
    transform: scale(1.12) rotate(45deg);
  }
  48% {
    opacity: 0;
    transform: scale(.45) rotate(90deg);
  }
}

@keyframes heroBreath {
  from {
    transform: translateY(-50%) scale(1);
  }
  to {
    transform: translateY(-50%) scale(1.045);
  }
}

@keyframes photoDrift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06) translateX(-1.5%);
  }
}

@keyframes softFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: .8rem;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(2.65rem, 4.4vw, 4.75rem);
  line-height: .9;
  letter-spacing: 0;
}

h2 {
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  color: var(--green-950);
  font-size: 1.1rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 670px;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(.98rem, 1.5vw, 1.12rem);
  line-height: 1.55;
}

.hero-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -70%;
  width: 42%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .46), transparent);
  transition: left .55s ease;
}

.button:hover::after {
  left: 125%;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 63, 33, .22);
}

.button.primary {
  color: var(--green-950);
  background: var(--lime);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
}

.admin-panel .button.secondary {
  color: var(--green-950);
  background: rgba(0, 113, 60, .08);
  border: 1px solid var(--line);
}

.button.light {
  color: var(--green-950);
  background: var(--white);
}

.hero-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card.is-visible {
  animation: softFloat 6.5s ease-in-out infinite;
}

.hero-card div {
  display: grid;
  gap: 3px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.hero-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.stat {
  color: var(--green-950);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.section {
  width: min(var(--content-width), calc(100% - 36px));
  margin-inline: auto;
  padding: clamp(56px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.proof-band,
.timeline,
.cta-band {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - var(--content-width)) / 2));
  padding-right: max(18px, calc((100vw - var(--content-width)) / 2));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.section-copy p,
.mission-panel p,
.service-card p,
.proof-item p,
.values-stack p,
.timeline-grid p,
.contact-panel p,
.site-footer p {
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--green-900);
  font-weight: 900;
  border-bottom: 2px solid var(--lime);
}

.mission-panel,
.contact-panel,
.quote-form {
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background: linear-gradient(145deg, var(--green-950), var(--green-800));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mission-panel {
}

.mission-panel.is-visible {
  animation: softFloat 7s ease-in-out infinite;
}

.mission-panel h3,
.mission-panel p {
  color: var(--white);
}

.mission-panel h3 {
  margin-bottom: 16px;
  font-size: 2rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.service-grid.wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, .86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 38px rgba(0, 63, 33, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green-900), var(--lime));
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(159, 211, 11, .7);
  box-shadow: 0 24px 54px rgba(0, 63, 33, .16);
}

.service-card h2 {
  font-size: 1.35rem;
  line-height: 1.15;
}

.service-image {
  width: calc(100% + 48px);
  height: 148px;
  margin: -24px -24px 0;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  filter: saturate(.95) contrast(1.02);
  transition: transform .35s ease, filter .35s ease;
}

.service-card:hover .service-image {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.04);
}

.service-card .icon {
  position: relative;
  z-index: 1;
  margin-top: -30px;
}

.service-rating {
  min-height: 0;
  margin-top: 16px;
  padding-top: 0;
  border-top: 0;
}

.service-rating.has-rating {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.service-stars {
  display: block;
  color: #f5a400;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: .04em;
  text-shadow: 0 6px 14px rgba(245, 164, 0, .18);
}

.service-rating small {
  display: block;
  margin-top: 6px;
  color: var(--green-900);
  font-weight: 800;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--lime);
  border: 5px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(159, 211, 11, .28);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover .icon,
.proof-item:hover .icon,
.values-stack > div:hover .icon,
.contact-row:hover .icon {
  transform: translateY(-3px) rotate(-4deg) scale(1.05);
  box-shadow: 0 14px 30px rgba(159, 211, 11, .38);
}

.icon::before {
  content: "";
  width: 29px;
  height: 29px;
  background: currentColor;
  clip-path: var(--shape);
}

.home-icon { --shape: polygon(50% 4%, 96% 42%, 84% 42%, 84% 94%, 58% 94%, 58% 66%, 42% 66%, 42% 94%, 16% 94%, 16% 42%, 4% 42%); }
.palm-icon { --shape: polygon(45% 100%, 56% 100%, 54% 48%, 75% 31%, 100% 31%, 77% 18%, 56% 27%, 67% 5%, 50% 18%, 34% 5%, 44% 28%, 23% 18%, 0 32%, 26% 32%, 47% 48%); }
.sparkle-icon { --shape: polygon(50% 0, 60% 36%, 96% 46%, 61% 59%, 50% 100%, 38% 60%, 0 50%, 37% 37%); }
.box-icon { --shape: polygon(50% 2%, 92% 24%, 92% 73%, 50% 98%, 8% 73%, 8% 24%, 50% 2%, 50% 47%, 92% 24%, 50% 47%, 8% 24%, 50% 47%); }
.building-icon { --shape: polygon(16% 96%, 16% 4%, 84% 4%, 84% 96%, 66% 96%, 66% 76%, 54% 76%, 54% 96%, 46% 96%, 46% 76%, 34% 76%, 34% 96%); }
.helmet-icon { --shape: polygon(8% 60%, 12% 38%, 30% 18%, 44% 10%, 44% 42%, 56% 42%, 56% 10%, 72% 18%, 88% 38%, 92% 60%, 100% 64%, 100% 78%, 0 78%, 0 64%); }
.laundry-icon { --shape: inset(4% 12% 4% 12% round 8%); }
.window-icon { --shape: polygon(6% 6%, 94% 6%, 94% 94%, 6% 94%, 6% 6%, 47% 6%, 47% 94%, 53% 94%, 53% 6%, 6% 47%, 94% 47%, 94% 53%, 6% 53%); }
.carpet-icon { --shape: polygon(7% 30%, 28% 30%, 28% 15%, 72% 15%, 72% 30%, 93% 30%, 93% 55%, 72% 55%, 72% 85%, 28% 85%, 28% 55%, 7% 55%); }
.shield-icon { --shape: polygon(50% 3%, 88% 18%, 82% 67%, 50% 98%, 18% 67%, 12% 18%); }
.team-icon { --shape: polygon(24% 42%, 10% 42%, 0 62%, 0 84%, 40% 84%, 40% 62%, 30% 42%, 70% 42%, 60% 62%, 60% 84%, 100% 84%, 100% 62%, 90% 42%, 76% 42%, 82% 26%, 74% 12%, 62% 12%, 54% 26%, 60% 42%, 40% 42%, 46% 26%, 38% 12%, 26% 12%, 18% 26%); }
.calendar-icon { --shape: polygon(12% 12%, 24% 12%, 24% 0, 36% 0, 36% 12%, 64% 12%, 64% 0, 76% 0, 76% 12%, 88% 12%, 88% 96%, 12% 96%, 12% 12%, 22% 36%, 78% 36%, 78% 46%, 22% 46%); }
.heart-icon { --shape: polygon(50% 88%, 18% 58%, 8% 43%, 8% 24%, 22% 10%, 40% 12%, 50% 25%, 60% 12%, 78% 10%, 92% 24%, 92% 43%, 82% 58%); }
.thumbs-icon { --shape: polygon(38% 94%, 10% 94%, 10% 44%, 34% 44%, 48% 6%, 64% 10%, 58% 40%, 90% 40%, 94% 52%, 86% 94%); }
.phone-icon { --shape: polygon(27% 4%, 47% 4%, 55% 28%, 43% 37%, 57% 60%, 80% 52%, 96% 70%, 86% 92%, 66% 96%, 34% 72%, 10% 34%, 8% 14%); }
.mail-icon { --shape: polygon(4% 18%, 96% 18%, 96% 82%, 4% 82%, 4% 18%, 50% 55%, 96% 18%, 50% 55%, 4% 18%); }
.globe-icon { --shape: polygon(50% 0, 64% 6%, 79% 21%, 90% 43%, 90% 57%, 79% 79%, 64% 94%, 50% 100%, 36% 94%, 21% 79%, 10% 57%, 10% 43%, 21% 21%, 36% 6%); }
.bed-icon { --shape: polygon(6% 38%, 6% 20%, 18% 20%, 18% 38%, 46% 38%, 46% 26%, 92% 26%, 92% 74%, 82% 74%, 82% 62%, 18% 62%, 18% 74%, 6% 74%); }
.kitchen-icon { --shape: polygon(16% 6%, 84% 6%, 84% 94%, 16% 94%, 16% 6%, 26% 22%, 74% 22%, 74% 34%, 26% 34%, 26% 48%, 74% 48%, 74% 86%, 26% 86%, 26% 48%); }
.toilet-icon { --shape: polygon(20% 8%, 70% 8%, 70% 36%, 58% 50%, 82% 50%, 74% 88%, 34% 88%, 26% 50%, 20% 50%); }
.sofa-icon { --shape: polygon(12% 46%, 12% 34%, 24% 24%, 76% 24%, 88% 34%, 88% 46%, 96% 50%, 96% 74%, 84% 74%, 84% 88%, 72% 88%, 72% 74%, 28% 74%, 28% 88%, 16% 88%, 16% 74%, 4% 74%, 4% 50%); }
.broom-icon { --shape: polygon(62% 0, 72% 0, 50% 58%, 88% 88%, 80% 100%, 40% 68%, 28% 100%, 8% 88%, 36% 58%); }

.proof-band {
  background: var(--white);
}

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

.proof-item {
  padding: 24px;
  border-left: 3px solid var(--lime);
  background: var(--cream);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
}

.proof-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0, 63, 33, .1);
}

.proof-item strong,
.values-stack strong {
  display: block;
  color: var(--green-950);
  font-size: 1.1rem;
}

.page-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: end;
  padding: clamp(90px, 12vw, 140px) max(18px, calc((100vw - var(--content-width)) / 2)) 68px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(0, 63, 33, .94), rgba(7, 93, 51, .78)),
    url("assets/hero-salotto-moderno.webp") center / cover;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 5.6vw, 5.2rem);
}

.image-hero {
  background:
    linear-gradient(120deg, rgba(0, 63, 33, .92), rgba(7, 93, 51, .58)),
    url("assets/hero-salotto-moderno.webp") center / cover;
}

.contact-hero {
  background:
    linear-gradient(120deg, rgba(0, 63, 33, .95), rgba(7, 93, 51, .72)),
    url("assets/hero-salotto-moderno.webp") center / cover;
}

.reviews-hero {
  background:
    linear-gradient(120deg, rgba(0, 63, 33, .95), rgba(7, 93, 51, .68)),
    url("assets/hero-salotto-moderno.webp") center / cover;
}

.pricing-hero {
  background:
    linear-gradient(120deg, rgba(0, 63, 33, .95), rgba(7, 93, 51, .68)),
    url("assets/hero-salotto-moderno.webp") center / cover;
}

.clients-hero {
  background:
    linear-gradient(120deg, rgba(0, 63, 33, .95), rgba(7, 93, 51, .56)),
    url("assets/work-gallery/work-01.jpg") center / cover;
}

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

.client-card {
  position: relative;
  min-height: 270px;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(0, 63, 33, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.client-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green-900), var(--lime));
}

.client-card:hover {
  transform: translateY(-7px);
  border-color: rgba(159, 211, 11, .7);
  box-shadow: 0 24px 54px rgba(0, 63, 33, .16);
}

.client-card small {
  display: block;
  color: var(--lime);
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.client-card h2 {
  margin: 10px 0 12px;
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.client-card p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.65;
}

.client-card strong {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-900);
  border-bottom: 2px solid var(--lime);
}

.gallery-section {
  padding-top: 0;
}

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

.gallery-item {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: var(--green-950);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(0, 63, 33, .1);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(0, 63, 33, .18);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: saturate(.96) contrast(1.02);
  transition: transform .45s ease, filter .45s ease;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.04);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 34, 18, .88);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  background: var(--white);
  border: 4px solid rgba(255, 255, 255, .9);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .34);
}

.gallery-lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--green-950);
  font-size: 2rem;
  line-height: 1;
  background: var(--white);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.gallery-lightbox-close:hover {
  transform: translateY(-2px);
  background: var(--lime-2);
}

.values-stack {
  display: grid;
  gap: 16px;
}

.values-stack > div {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
}

.values-stack > div:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0, 63, 33, .1);
}

.timeline {
  background: var(--green-950);
}

.timeline h2,
.timeline h3,
.timeline-grid span {
  color: var(--white);
}

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

.timeline-grid > div {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
  transition: transform .25s ease, background .25s ease;
}

.timeline-grid > div:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .11);
}

.timeline-grid span {
  display: block;
  margin-bottom: 26px;
  font-size: 3rem;
  font-weight: 900;
  opacity: .35;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: linear-gradient(120deg, var(--green-950), var(--green-800));
}

.cta-band h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.promise-strip {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--white);
  background: linear-gradient(120deg, var(--green-950), var(--green-800));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.promise-strip h2,
.promise-strip p {
  color: var(--white);
  margin-bottom: 6px;
}

.promise-strip .eyebrow {
  color: var(--lime-2);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .85fr);
  gap: 28px;
  align-items: start;
}

.pricing-main,
.pricing-side {
  min-width: 0;
}

.unit-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.unit-card {
  padding: 22px 18px;
  text-align: center;
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(0, 63, 33, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.unit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0, 63, 33, .13);
}

.unit-card .icon {
  margin-bottom: 12px;
}

.unit-card h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
}

.unit-card p {
  min-height: 2.8em;
  color: var(--muted);
  font-weight: 800;
}

.unit-card strong {
  display: block;
  color: var(--green-950);
  font-size: 2rem;
  line-height: 1;
}

.unit-card small {
  display: block;
  margin-top: 8px;
  color: var(--green-900);
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-note {
  margin: 18px 0 34px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.55;
}

.pricing-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pricing-detail-card {
  min-height: 230px;
  padding: 24px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(0, 63, 33, .08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.pricing-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 63, 33, .14);
}

.pricing-detail-card h3 {
  color: var(--green-950);
  text-transform: uppercase;
}

.pricing-detail-card p {
  color: var(--muted);
  line-height: 1.62;
}

.pricing-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 18px;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(120deg, var(--green-950), var(--green-800));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pricing-cta-card h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.pricing-cta-card .eyebrow {
  color: var(--lime-2);
}

.compact-heading {
  margin-top: 28px;
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(0, 63, 33, .08);
}

.pricing-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: .95rem;
}

.pricing-table th {
  padding: 13px 16px;
  color: var(--white);
  text-align: left;
  background: var(--green-950);
}

.pricing-table td {
  padding: 11px 16px;
  border-top: 1px solid rgba(7, 93, 51, .1);
}

.pricing-table tbody tr:nth-child(even) {
  background: rgba(0, 113, 60, .045);
}

.pricing-table td:last-child {
  color: var(--green-950);
  font-weight: 900;
  font-size: 1.05rem;
}

.scope-card,
.side-box {
  padding: 24px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(0, 63, 33, .08);
}

.pricing-side {
  display: grid;
  gap: 18px;
}

.scope-card h2,
.side-box h2 {
  margin-bottom: 22px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  text-transform: uppercase;
}

.scope-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.scope-item .icon {
  margin-bottom: 0;
}

.scope-item h3 {
  margin-bottom: 8px;
  text-transform: uppercase;
}

.scope-item ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
  line-height: 1.55;
}

.goal-note {
  margin: 4px 0 0;
  padding: 16px;
  color: var(--green-950);
  font-weight: 900;
  background: rgba(183, 223, 32, .14);
  border-radius: var(--radius);
}

.addon-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.addon-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}

.addon-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.addon-list dt {
  color: var(--ink);
}

.addon-list dd {
  margin: 0;
  color: var(--green-950);
  font-weight: 900;
  text-align: right;
}

.side-box p {
  color: var(--muted);
  line-height: 1.55;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, .85fr);
  gap: 28px;
  align-items: start;
}

.review-intro,
.published-card {
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(0, 63, 33, .08);
}

.review-intro h2 {
  max-width: 660px;
}

.review-intro p {
  color: var(--muted);
  line-height: 1.75;
}

.review-photo {
  position: relative;
  margin-top: 26px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-950);
}

.review-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: saturate(.98) contrast(1.04);
  animation: photoDrift 14s ease-in-out infinite alternate;
}

.review-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 63, 33, .7), rgba(0, 63, 33, .08));
}

.review-photo span {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 1;
  color: #f5a400;
  font-size: clamp(2rem, 5vw, 4.2rem);
  letter-spacing: .04em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .28);
}

.review-form {
  overflow: hidden;
  background: #f4f6f2;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-form-head {
  padding: 22px;
  text-align: center;
  background: linear-gradient(120deg, var(--green-950), var(--green-800));
}

.review-form-head h2 {
  margin: 0;
  color: var(--white);
  font-size: 1.55rem;
  text-transform: uppercase;
}

.review-form-body {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 32px);
}

.review-form label {
  display: grid;
  gap: 8px;
  color: var(--green-950);
  font-weight: 800;
}

.rating-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.rating-field legend {
  margin-bottom: 8px;
  color: var(--green-950);
  font-weight: 800;
}

.rating-field p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.star-rating {
  display: flex;
  gap: 4px;
}

.star-rating button {
  width: 38px;
  height: 38px;
  padding: 0;
  color: #f5a400;
  font-size: 2rem;
  line-height: 1;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: transform .18s ease, color .18s ease;
}

.star-rating button:hover,
.star-rating button.is-active {
  color: var(--lime);
  transform: translateY(-2px) scale(1.06);
}

.published-section {
  padding-top: 0;
}

.published-card {
  text-align: center;
}

.published-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.published-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
}

.manage-reviews-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 16px;
  color: var(--white);
  font-weight: 900;
  background: var(--green-900);
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease;
}

.manage-reviews-link:hover {
  transform: translateY(-2px);
  background: var(--green-950);
}

.published-reviews {
  display: grid;
  gap: 16px;
  margin-top: 22px;
  text-align: left;
}

.empty-reviews {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.published-review {
  padding: 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.published-review header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.published-review strong {
  display: block;
  color: var(--green-950);
}

.published-review small,
.published-review p {
  color: var(--muted);
}

.published-review .review-stars {
  color: #f5a400;
  font-size: 1.1rem;
  white-space: nowrap;
}

.published-review-actions {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.delete-review {
  padding: 7px 12px;
  color: var(--white);
  font: inherit;
  font-size: .78rem;
  font-weight: 900;
  background: var(--green-900);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.delete-review:hover {
  transform: translateY(-1px);
  background: var(--green-950);
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.admin-panel {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(0, 63, 33, .08);
}

.admin-panel h2 {
  margin-bottom: 0;
}

.admin-panel label {
  display: grid;
  gap: 8px;
  color: var(--green-950);
  font-weight: 800;
}

.admin-status {
  min-height: 1.4em;
  color: var(--green-900);
  font-weight: 800;
}

.admin-reviews.is-locked {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 46px rgba(0, 63, 33, .08);
}

.contact-panel h2,
.contact-panel strong,
.contact-panel a,
.quote-form {
  color: var(--white);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  transition: transform .25s ease;
}

.contact-row:hover {
  transform: translateX(5px);
}

.contact-row .icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  margin: 0;
}

.contact-row strong {
  display: block;
  margin-bottom: 4px;
}

.quote-form {
  display: grid;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--green-950);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

textarea { resize: vertical; }

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  padding-right: clamp(110px, 12vw, 150px);
  color: var(--white);
  background: #333b36;
}

.site-footer strong {
  color: var(--lime-2);
  font-size: 1.2rem;
}

.site-footer p {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, .76);
}

.footer-links {
  display: grid;
  gap: 8px;
  text-align: right;
}

.footer-links a:hover {
  color: var(--lime-2);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: var(--white);
  background: #25d366;
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(0, 63, 33, .26);
  transition: transform .22s ease, box-shadow .22s ease;
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 20px 42px rgba(0, 63, 33, .32);
}

.whatsapp-float span {
  width: 38px;
  height: 38px;
  background: url("assets/whatsapp-icon.svg") center / contain no-repeat;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 16px 34px rgba(0, 63, 33, .26), 0 0 0 0 rgba(37, 211, 102, .32);
  }
  45% {
    box-shadow: 0 16px 34px rgba(0, 63, 33, .26), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}

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

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .clean-sparkles span {
    opacity: .45;
  }

  .hero-media img,
  .hero-card,
  .mission-panel,
  .review-photo img {
    animation: none;
  }
}

@media (max-width: 1020px) {
  .hero,
  .split,
  .contact-layout,
  .reviews-layout,
  .admin-layout,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-grid.wide,
  .proof-grid,
  .unit-pricing-grid,
  .pricing-detail-grid,
  .work-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    max-width: 540px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 8px 14px;
  }

  .brand small {
    display: none;
  }

  .brand-logo {
    height: 87px;
    max-width: 345px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: var(--radius);
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(3rem, 16vw, 4.3rem);
  }

  .service-grid,
  .service-grid.wide,
  .proof-grid,
  .unit-pricing-grid,
  .pricing-detail-grid,
  .timeline-grid,
  .client-grid,
  .work-gallery {
    grid-template-columns: 1fr;
  }

  .pricing-cta-card {
    display: grid;
  }

  .promise-strip,
  .scope-item {
    grid-template-columns: 1fr;
  }

  .promise-strip {
    display: grid;
  }

  .service-image {
    height: 178px;
  }

  .cta-band,
  .site-footer {
    display: grid;
  }

  .footer-links {
    text-align: left;
  }
}
