:root {
  --bg: #f8fffb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #153326;
  --muted: #567566;
  --primary: #1f8f62;
  --primary-dark: #146847;
  --primary-soft: #dff5e8;
  --border: rgba(31, 143, 98, 0.14);
  --shadow: 0 18px 50px rgba(18, 80, 54, 0.12);
  --shadow-strong: 0 24px 58px rgba(18, 80, 54, 0.16);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(170, 235, 199, 0.24), transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(111, 220, 162, 0.16), transparent 28%),
    linear-gradient(180deg, #f8fffb 0%, #ffffff 48%, #f3fcf7 100%);
  overflow-x: hidden;
}

body::selection {
  background: rgba(31, 143, 98, 0.18);
}

a {
  color: inherit;
}

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

.container {
  width: min(1140px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(234, 248, 239, 0.72), rgba(255, 255, 255, 0.84));
}

.page-glow {
  position: fixed;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(50px);
  z-index: -1;
  opacity: 0.65;
}

.glow-one {
  top: -5rem;
  left: -7rem;
  background: rgba(127, 230, 174, 0.2);
  animation: drift 12s ease-in-out infinite;
}

.glow-two {
  bottom: -8rem;
  right: -8rem;
  background: rgba(78, 196, 135, 0.14);
  animation: drift 14s ease-in-out infinite reverse;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(248, 255, 251, 0.8);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--border);
  box-shadow: 0 10px 30px rgba(16, 75, 50, 0.06);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.logo-image,
.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(16, 75, 50, 0.12);
  background: #ffffff;
}

.logo-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.logo-text {
  font-weight: 700;
  font-size: 0.8rem;
  max-width: 14rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a,
.site-footer a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: var(--surface-strong);
  box-shadow: 0 8px 24px rgba(16, 75, 50, 0.08);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding-top: 4.5rem;
}

.hero-grid,
.why-grid,
.contact-grid,
.cta-band,
.process-grid,
.service-grid,
.pricing-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.why-grid h2,
.contact-info h2,
.cta-band h2,
.section-heading.left h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.06;
  margin: 1rem 0;
  letter-spacing: -0.03em;
}

.hero-copy p,
.section-heading p,
.why-grid p,
.contact-info p,
.card p,
.form-card p,
.form-note,
.badge-card span,
.spotlight-body p,
.kitchen-body p,
.pricing-note p,
.pricing-sidebar-card p {
  color: var(--muted);
  line-height: 1.75;
}

.eyebrow,
.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid rgba(31, 143, 98, 0.16);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.92rem;
}

.mini-pill.light {
  background: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #34ac78);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(31, 143, 98, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 20px 36px rgba(31, 143, 98, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary-dark);
  border-color: rgba(31, 143, 98, 0.18);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card,
.badge-card,
.card,
.info-item,
.cta-band,
.price-card,
.pricing-note,
.pricing-sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.stat-card,
.badge-card,
.main-visual-card,
.feature-card,
.process-card,
.form-card,
.info-item,
.cta-band,
.pricing-note,
.pricing-sidebar-card,
.price-card {
  padding: 1.4rem;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
}

.floating-card {
  animation: floatCard 6.5s ease-in-out infinite;
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

.main-visual-card {
  display: grid;
  gap: 1rem;
}

.image-wrap {
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 8px);
}

.image-wrap-hero {
  max-height: 340px;
}

.hero-photo,
.service-image,
.spotlight-image,
.kitchen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image,
.spotlight-card:hover .spotlight-image,
.kitchen-card:hover .kitchen-image,
.main-visual-card:hover .hero-photo {
  transform: scale(1.04);
}

.visual-top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading.left {
  margin-bottom: 1.5rem;
}

.section-heading.center {
  text-align: center;
}

.section-heading.center .eyebrow {
  margin-inline: auto;
}

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

.service-card,
.spotlight-card,
.kitchen-card {
  overflow: hidden;
  padding: 0;
}

.service-image {
  aspect-ratio: 4 / 5;
  object-position: center;
}

.service-body,
.spotlight-body,
.kitchen-body {
  padding: 1.25rem;
}

.why-grid {
  grid-template-columns: 1.02fr 0.98fr;
  align-items: start;
}

.feature-stack {
  display: grid;
  gap: 1rem;
}

.feature-card,
.process-card,
.info-item,
.badge-card,
.spotlight-card,
.kitchen-card,
.price-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover,
.process-card:hover,
.info-item:hover,
.badge-card:hover,
.spotlight-card:hover,
.kitchen-card:hover,
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.pricing-layout {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
}

.pricing-main,
.pricing-sidebar {
  display: grid;
  gap: 1.25rem;
}

.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pricing-tab {
  min-height: 48px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 143, 98, 0.14);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-tab:hover {
  transform: translateY(-2px);
}

.pricing-tab.active {
  background: linear-gradient(135deg, var(--primary), #34ac78);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(31, 143, 98, 0.2);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card::after,
.hover-shimmer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.36) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.price-card:hover::after,
.hover-shimmer:hover::after {
  transform: translateX(140%);
}

.price-tag {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(31, 143, 98, 0.08);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.price-card h3 {
  margin: 0 0 0.35rem;
}

.price-amount {
  display: block;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 0.45rem;
  font-weight: 800;
}

.price-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.addon-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.addon-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(31, 143, 98, 0.1);
}

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

.property-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.property-pills span {
  display: inline-flex;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(31, 143, 98, 0.08);
  color: var(--primary-dark);
  font-weight: 600;
}

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

.step-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-band {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.cta-band p {
  margin: 0;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.info-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.info-item {
  display: grid;
  gap: 0.35rem;
}

.info-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
}

.form-card h3 {
  margin-top: 0.9rem;
}

.quote-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.form-two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(31, 143, 98, 0.16);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: #ffffff;
  color: var(--text);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: rgba(31, 143, 98, 0.42);
  box-shadow: 0 0 0 4px rgba(31, 143, 98, 0.12);
}

.quote-form textarea {
  resize: vertical;
  min-height: 130px;
}

.form-note {
  min-height: 1.5rem;
  margin: 0;
}

.form-note.success {
  color: var(--primary-dark);
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 58px;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #1fb56e, #25d366);
  box-shadow: 0 18px 34px rgba(29, 168, 90, 0.28);
  font-weight: 800;
}

.site-footer {
  padding: 1.25rem 0 2.2rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand p {
  color: var(--muted);
  margin: 0;
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-sm {
  transition-delay: 0.1s;
}

.reveal-delay,
.reveal-delay-md {
  transition-delay: 0.18s;
}

.reveal-delay-lg {
  transition-delay: 0.26s;
}

.pulse-pill,
.pulse-cta,
.pulse-floating {
  animation: pulse 2.7s ease-in-out infinite;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(10px, 12px, 0) scale(1.04);
  }
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .why-grid,
  .contact-grid,
  .service-grid,
  .process-grid,
  .cta-band,
  .pricing-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-stats,
  .service-grid,
  .process-grid,
  .contact-grid,
  .pricing-cards,
  .form-two-up {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 4rem 0;
  }

  .hero-copy h1,
  .section-heading h2,
  .why-grid h2,
  .contact-info h2,
  .cta-band h2,
  .section-heading.left h2 {
    font-size: 2.25rem;
  }

  .hero-stats,
  .service-grid,
  .process-grid,
  .contact-grid,
  .pricing-cards,
  .form-two-up,
  .cta-band {
    grid-template-columns: 1fr;
  }

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

  .btn,
  .quote-form button {
    width: 100%;
  }

  .floating-whatsapp {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 3.5rem;
  }

  .logo-text {
    max-width: 10rem;
  }

  .floating-whatsapp span:last-child {
    display: none;
  }
}

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

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