:root {
  --green: #2d4a2d;
  --green-dark: #1c321f;
  --sand: #c8b99a;
  --paper: #f5f0e8;
  --gold: #8b7355;
  --ink: #213025;
  --muted: #687265;
  --white: #fffaf2;
  --shadow: 0 20px 55px rgba(31, 48, 35, 0.14);
  --deep-shadow: 0 28px 80px rgba(18, 36, 22, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 185, 154, 0.34), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(45, 74, 45, 0.18), transparent 30%),
    linear-gradient(135deg, #fbf7ef 0%, var(--paper) 48%, #ece3d1 100%);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(45, 74, 45, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 74, 45, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.45;
  background-image:
    radial-gradient(circle at center, rgba(33, 48, 37, 0.1) 1px, transparent 1.4px);
  background-size: 18px 18px;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.background-art {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

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

.leaf {
  position: absolute;
  top: -12vh;
  left: var(--left);
  width: var(--size);
  height: calc(var(--size) * 1.65);
  opacity: var(--opacity);
  border-radius: 90% 0 90% 0;
  background:
    linear-gradient(135deg, rgba(245, 240, 232, 0.28), transparent 42%),
    linear-gradient(145deg, #456c38 0%, #2d4a2d 46%, #8b7355 100%);
  box-shadow: 0 8px 18px rgba(31, 48, 35, 0.12);
  transform: rotate(var(--rotate));
  animation:
    leafFall var(--duration) linear var(--delay) infinite,
    leafSway calc(var(--duration) * 0.42) ease-in-out var(--delay) infinite alternate;
}

.leaf::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8%;
  width: 1px;
  height: 84%;
  background: rgba(245, 240, 232, 0.34);
  transform: translateX(-50%) rotate(-18deg);
}

.leaf::after {
  content: "";
  position: absolute;
  left: 38%;
  top: 18%;
  width: 44%;
  height: 1px;
  background: rgba(245, 240, 232, 0.22);
  box-shadow:
    0 8px 0 rgba(245, 240, 232, 0.18),
    0 16px 0 rgba(245, 240, 232, 0.12);
  transform: rotate(28deg);
}

.background-art::before,
.background-art::after {
  content: "";
  position: absolute;
  width: 62vw;
  height: 62vw;
  min-width: 420px;
  min-height: 420px;
  border-radius: 50%;
  filter: blur(26px);
  opacity: 0.72;
  animation: driftGlow 11s ease-in-out infinite alternate;
}

.background-art::before {
  left: -22vw;
  top: 18vh;
  background:
    radial-gradient(circle, rgba(45, 74, 45, 0.28), transparent 62%),
    conic-gradient(from 120deg, transparent, rgba(200, 185, 154, 0.32), transparent, rgba(139, 115, 85, 0.18), transparent);
}

.background-art::after {
  right: -24vw;
  bottom: -18vh;
  background:
    radial-gradient(circle, rgba(139, 115, 85, 0.24), transparent 64%),
    conic-gradient(from 40deg, transparent, rgba(45, 74, 45, 0.24), transparent, rgba(200, 185, 154, 0.28), transparent);
  animation-delay: -4s;
}

.bg-orbit {
  position: absolute;
  display: block;
  border: 1px solid rgba(139, 115, 85, 0.2);
  border-radius: 50%;
  transform: rotate(-16deg);
  animation: orbitFloat 9s ease-in-out infinite alternate;
}

.bg-orbit-one {
  width: 520px;
  height: 180px;
  left: -120px;
  top: 24%;
}

.bg-orbit-two {
  width: 620px;
  height: 230px;
  right: -180px;
  top: 44%;
  border-color: rgba(45, 74, 45, 0.18);
  animation-delay: -2s;
}

.bg-orbit-three {
  width: 420px;
  height: 130px;
  left: 38%;
  bottom: 8%;
  border-color: rgba(200, 185, 154, 0.32);
  animation-delay: -5s;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--sand);
  outline-offset: 4px;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sand), var(--gold), var(--paper));
  box-shadow: 0 0 18px rgba(200, 185, 154, 0.7);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(16px, 4vw, 48px);
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(28, 50, 31, 0.78);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  isolation: isolate;
}

.brand-logo {
  width: 164px;
  height: 92px;
  object-fit: cover;
  object-position: center;
  background: #f7f3e9;
  border: 1px solid rgba(255, 250, 242, 0.7);
  border-radius: 18px;
  box-shadow:
    0 16px 38px rgba(10, 28, 15, 0.24),
    inset 0 0 0 1px rgba(139, 115, 85, 0.12);
  transition: width 0.3s ease, height 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
}

.site-header .brand::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -7px;
  z-index: -1;
  width: 48px;
  height: 48px;
  border-right: 1px solid rgba(200, 185, 154, 0.75);
  border-bottom: 1px solid rgba(200, 185, 154, 0.75);
  border-radius: 0 0 22px;
}

.site-header.is-scrolled .brand-logo {
  width: 138px;
  height: 76px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(10, 28, 15, 0.2);
}

.brand-logo-footer {
  width: 210px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 240, 232, 0.5);
  border-radius: 50%;
  font-family: "Playfair Display", serif;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  opacity: 0.92;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--sand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(245, 240, 232, 0.45);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 240, 232, 0.45);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding: 120px 0 72px;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -18% -34% 38%;
  z-index: 1;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(200, 185, 154, 0.26), transparent 64%);
  filter: blur(4px);
  animation: ambientGlow 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(245, 240, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 232, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent 70%);
  pointer-events: none;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(0.92) contrast(1.04);
  animation: heroZoom 16s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(12, 29, 16, 0.92) 0%, rgba(24, 48, 28, 0.76) 42%, rgba(18, 34, 21, 0.32) 72%, rgba(12, 24, 14, 0.18) 100%),
    linear-gradient(180deg, rgba(10, 24, 13, 0.18), transparent 46%, rgba(10, 24, 13, 0.34));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  animation: heroContentIn 0.95s cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.hero-content::before {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin-bottom: 28px;
  background: var(--sand);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-kicker {
  position: relative;
  display: inline-flex;
  max-width: min(100%, 560px);
  padding: 9px 14px 9px 42px;
  color: rgba(255, 250, 242, 0.86);
  background: rgba(245, 240, 232, 0.1);
  border: 1px solid rgba(200, 185, 154, 0.24);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: clamp(0.68rem, 1.4vw, 0.78rem);
  line-height: 1.2;
  overflow: hidden;
}

.hero-kicker::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 1px solid var(--sand);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 0 rgba(200, 185, 154, 0.48);
  animation: kickerPulse 2.2s ease-in-out infinite;
}

.hero-kicker::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-18deg);
  animation: kickerShine 4s ease-in-out infinite;
}

.hero .eyebrow,
.reasons .eyebrow,
.final-cta .eyebrow {
  color: var(--sand);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  font-size: clamp(2.05rem, 4.8vw, 3.85rem);
  text-wrap: balance;
}

h1 span {
  color: #eadfc7;
  background: linear-gradient(90deg, #fff4d8, var(--sand), #fff4d8);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleGold 5s ease-in-out infinite;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  text-wrap: balance;
}

h3 {
  font-size: 1.35rem;
  text-wrap: balance;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 250, 242, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 55%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s ease;
}

.btn:hover::after {
  left: 120%;
}

.btn:hover,
.service-card:hover,
.segment-card:hover {
  transform: translateY(-7px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #416b41);
  box-shadow: 0 14px 34px rgba(28, 50, 31, 0.28);
}

.hero .btn-primary,
.final-cta .btn-primary {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(200, 185, 154, 0.18);
  animation: ctaBeat 2.8s ease-in-out infinite;
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 250, 242, 0.48);
  backdrop-filter: blur(8px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  padding: 8px 12px;
  color: rgba(255, 250, 242, 0.86);
  background: rgba(245, 240, 232, 0.1);
  border: 1px solid rgba(200, 185, 154, 0.28);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  animation: chipFloat 3.2s ease-in-out infinite;
}

.hero-proof span:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-proof span:nth-child(3) {
  animation-delay: 0.4s;
}

.hero-proof span:nth-child(4) {
  animation-delay: 0.6s;
}

.btn-light {
  color: var(--green-dark);
  background: var(--paper);
}

.section {
  padding: clamp(74px, 10vw, 120px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 7vw, 76px);
  align-items: center;
}

.section-copy p:not(.eyebrow),
.section-heading p,
.problem-list p,
.benefit p,
.step p,
.service-card p,
.faq p,
.site-footer p {
  color: var(--muted);
  text-wrap: pretty;
}

.section-copy p:not(.eyebrow) {
  margin-top: 22px;
  font-size: 1.08rem;
}

.problem {
  background: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(10px);
}

.problem-list {
  display: grid;
  gap: 18px;
  padding-left: 28px;
  border-left: 2px solid var(--sand);
}

.problem-list p {
  position: relative;
  padding: 18px 20px;
  background: rgba(245, 240, 232, 0.66);
  border: 1px solid rgba(139, 115, 85, 0.14);
  border-radius: 8px;
}

.image-panel img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow);
  filter: saturate(1.05) contrast(1.02);
  transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
}

.image-panel:hover img {
  transform: scale(1.025) rotate(-0.5deg);
  box-shadow: var(--deep-shadow);
  filter: saturate(1.16) contrast(1.08);
}

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

.services,
.segments,
.faq {
  background: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(10px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading,
.section-copy {
  position: relative;
}

.section-heading p:not(.eyebrow) {
  margin-top: 14px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(139, 115, 85, 0.18);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(31, 48, 35, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 250, 242, 0.52) 45%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(139, 115, 85, 0.46);
  box-shadow: var(--deep-shadow);
}

.service-card:hover::before {
  transform: translateX(130%);
}

.service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  background: var(--green-dark);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.service-card:hover img,
.segment-card:hover img,
.gallery img:hover,
.gallery video:hover {
  transform: scale(1.095);
  filter: saturate(1.22) contrast(1.1);
}

.service-card div {
  position: relative;
  z-index: 2;
  min-height: 230px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-card h3 {
  overflow-wrap: anywhere;
}

.icon {
  color: var(--gold);
  font-size: 1.2rem;
}

.service-card h3,
.benefit h3,
.step h3 {
  margin: 8px 0 10px;
}

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

.benefit,
.proof-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background: rgba(255, 250, 242, 0.78);
  border-top: 3px solid var(--gold);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit::before,
.proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 185, 154, 0.22), transparent 45%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.benefit:hover::before,
.proof-card:hover::before {
  opacity: 1;
}

.benefit:hover,
.proof-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(139, 115, 85, 0.32);
}

.step {
  position: relative;
  padding: 28px 22px 0 0;
}

.step::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--green);
  border: 3px solid var(--sand);
  border-radius: 50%;
}

.step span {
  color: var(--gold);
  font-weight: 800;
}

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

.segment-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  box-shadow: 0 10px 28px rgba(31, 48, 35, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.segment-card:hover {
  box-shadow: var(--deep-shadow);
}

.segment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 50, 31, 0.12), rgba(28, 50, 31, 0.72));
}

.segment-card img {
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.segment-card h3 {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
}

.reasons,
.final-cta {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 20%, rgba(200, 185, 154, 0.18), transparent 24%),
    radial-gradient(circle at 90% 78%, rgba(139, 115, 85, 0.22), transparent 28%),
    linear-gradient(135deg, #142418, var(--green-dark) 54%, #263d28);
  position: relative;
  overflow: hidden;
}

.reasons::before,
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(120deg, transparent 0%, rgba(245, 240, 232, 0.08) 48%, transparent 62%);
  transform: translateX(-120%);
  animation: darkSectionSweep 7s ease-in-out infinite;
  pointer-events: none;
}

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

.reason-list li {
  position: relative;
  padding: 16px 18px 16px 48px;
  background: rgba(245, 240, 232, 0.08);
  border: 1px solid rgba(200, 185, 154, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.reason-list li:hover {
  transform: translateX(12px) scale(1.015);
  background: rgba(245, 240, 232, 0.13);
}

.reason-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  color: var(--sand);
  font-weight: 800;
}

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

.gallery img,
.gallery video {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  object-position: center;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
}

.gallery img:hover,
.gallery video:hover {
  box-shadow: var(--shadow);
  transform: scale(1.06);
}

.proof-panel {
  display: grid;
  grid-template-columns: 0.72fr 0.72fr 1.56fr;
  align-items: stretch;
  overflow: hidden;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(139, 115, 85, 0.18);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(31, 48, 35, 0.08);
  backdrop-filter: blur(10px);
}

.proof-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  padding: 38px 30px;
  border-right: 1px solid rgba(139, 115, 85, 0.18);
}

.proof-number {
  display: block;
  margin-bottom: 14px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
}

.proof-stat span {
  color: var(--muted);
  font-weight: 700;
}

.proof-testimonial {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 250px;
  margin: 0;
  padding: 38px clamp(30px, 5vw, 58px);
  background: linear-gradient(135deg, rgba(200, 185, 154, 0.14), rgba(255, 250, 242, 0.18));
}

.proof-testimonial p {
  margin: 0 0 24px;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.proof-testimonial footer {
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
}

.proof-testimonial footer span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-weight: 400;
}

@media (max-width: 980px) {
  .proof-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-testimonial {
    grid-column: 1 / -1;
    min-height: auto;
    border-top: 1px solid rgba(139, 115, 85, 0.18);
  }
}

@media (max-width: 560px) {
  .proof-panel {
    grid-template-columns: 1fr;
  }

  .proof-stat {
    min-height: auto;
    padding: 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(139, 115, 85, 0.18);
  }

  .proof-testimonial {
    grid-column: auto;
    border-top: 0;
  }
}

.final-cta {
  padding: clamp(76px, 10vw, 130px) 0;
}

.final-cta .container {
  max-width: 860px;
}

.final-cta p:not(.eyebrow) {
  max-width: 690px;
  margin-top: 20px;
  color: rgba(255, 250, 242, 0.82);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--paper);
  border: 1px solid rgba(139, 115, 85, 0.18);
  border-radius: 8px;
}

summary {
  position: relative;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 22px 22px;
}

.site-footer {
  padding: 52px 0 24px;
  color: var(--white);
  background: #142418;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-grid > div:first-child p {
  max-width: 340px;
}

.site-footer a,
.site-footer strong {
  display: block;
  margin-bottom: 10px;
}

.site-footer p {
  max-width: 420px;
  margin-top: 14px;
  color: rgba(255, 250, 242, 0.7);
}

.footer-bottom {
  width: min(1120px, calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(245, 240, 232, 0.12);
  text-align: center;
}

.copyright {
  max-width: none;
  margin: 0 auto;
  font-size: 0.9rem;
}

.site-footer .developer-credit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: none;
  margin: 10px auto 0;
  color: rgba(255, 250, 242, 0.42);
  font-size: 0.76rem;
}

.developer-credit a {
  display: inline-flex;
  margin: 0;
  padding: 3px 8px;
  color: rgba(255, 250, 242, 0.58);
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 999px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.developer-credit a:hover {
  color: var(--white);
  background: rgba(255, 250, 242, 0.08);
  border-color: rgba(200, 185, 154, 0.42);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 122px;
  min-height: 48px;
  padding: 12px 18px;
  color: var(--white);
  background: #1f8f4d;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  font-weight: 800;
  animation: pulseWhatsapp 2.4s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-6px) scale(1.05);
  background: #22a75a;
}

.reveal {
  opacity: 0;
  transform: translateY(38px) scale(0.98);
  filter: blur(8px);
  transition: opacity 0.78s ease, transform 0.78s cubic-bezier(0.2, 0.9, 0.2, 1), filter 0.78s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.reveal.is-visible:nth-child(2) {
  transition-delay: 0.06s;
}

.reveal.is-visible:nth-child(3) {
  transition-delay: 0.12s;
}

.reveal.is-visible:nth-child(4) {
  transition-delay: 0.18s;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@keyframes ambientGlow {
  from {
    opacity: 0.35;
    transform: translate3d(0, 0, 0) scale(0.92);
  }
  to {
    opacity: 0.9;
    transform: translate3d(-70px, -35px, 0) scale(1.12);
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes ctaBeat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.025);
  }
}

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

@keyframes titleGold {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes kickerPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(200, 185, 154, 0.48);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(200, 185, 154, 0);
  }
}

@keyframes kickerShine {
  0%,
  40% {
    left: -45%;
  }
  78%,
  100% {
    left: 125%;
  }
}

@keyframes driftGlow {
  from {
    transform: translate3d(0, 0, 0) scale(0.96) rotate(0deg);
  }
  to {
    transform: translate3d(8vw, -4vh, 0) scale(1.08) rotate(18deg);
  }
}

@keyframes orbitFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(-16deg) scale(1);
    opacity: 0.48;
  }
  to {
    transform: translate3d(28px, -34px, 0) rotate(-10deg) scale(1.08);
    opacity: 0.9;
  }
}

@keyframes darkSectionSweep {
  0%,
  34% {
    transform: translateX(-120%);
  }
  70%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes leafFall {
  0% {
    translate: 0 -12vh;
    rotate: 0deg;
  }
  100% {
    translate: var(--drift) 118vh;
    rotate: var(--spin);
  }
}

@keyframes leafSway {
  from {
    margin-left: -18px;
    filter: blur(0);
  }
  to {
    margin-left: 18px;
    filter: blur(0.4px);
  }
}

@keyframes pulseWhatsapp {
  0%,
  100% {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(31, 143, 77, 0.38);
  }
  50% {
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2), 0 0 0 12px rgba(31, 143, 77, 0);
  }
}

@media (max-width: 980px) {
  .service-grid,
  .benefit-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

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

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    color: var(--ink);
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }

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

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    color: var(--white);
    background: var(--green);
    border: 0;
    text-align: center;
  }

  .brand-logo {
    width: 126px;
    height: 74px;
    border-radius: 14px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 112px;
    height: 66px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 128px;
  }

  .background-art::before,
  .background-art::after {
    width: 90vw;
    height: 90vw;
    opacity: 0.5;
  }

  .bg-orbit {
    opacity: 0.45;
  }

  .leaf {
    opacity: calc(var(--opacity) * 0.78);
  }

  h1 {
    font-size: clamp(1.95rem, 9vw, 2.75rem);
  }

  .hero-kicker {
    align-items: center;
    border-radius: 18px;
    padding-right: 12px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(19, 40, 22, 0.86), rgba(45, 74, 45, 0.68));
  }

  .hero-image {
    object-position: 58% center;
  }

  .split,
  .segment-grid,
  .gallery,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 38px;
  }

  .footer-grid > div {
    width: 100%;
  }

  .brand-logo-footer {
    width: 190px;
    height: 126px;
  }

  .service-grid,
  .benefit-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .btn,
  .hero-actions {
    width: 100%;
  }

  .hero-proof {
    gap: 8px;
  }

  .hero-actions .btn {
    text-align: center;
  }

  .problem-list {
    padding-left: 0;
    border-left: 0;
  }

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

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand-logo {
    width: 112px;
    height: 66px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 102px;
    height: 60px;
  }

  .brand-logo-footer {
    width: 170px;
    height: 113px;
  }

  .hero {
    padding-top: 116px;
    padding-bottom: 56px;
  }

  .hero-kicker {
    padding-left: 38px;
    line-height: 1.35;
  }

  h1 {
    font-size: clamp(1.85rem, 9.5vw, 2.4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.3rem);
  }

  .section {
    padding-block: 68px;
  }

  .service-card div {
    min-height: auto;
  }

  .floating-whatsapp {
    min-width: auto;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .falling-leaves {
    display: none;
  }
}
