:root {
  --green-950: #1d251d;
  --green-900: #2a3628;
  --green-800: #354434;
  --olive-600: #e5c688;
  --olive-200: #f4e3be;
  --honey-500: #f7af48;
  --caramel-600: #89592e;
  --cream-100: #fff8ed;
  --cream-200: #f7ead0;
  --clay-100: #ecd7bd;
  --ink: #20281f;
  --muted: #65725f;
  --white: #fffdf8;
  --shadow: 0 24px 70px rgba(42, 54, 40, 0.18);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-100);
  line-height: 1.5;
}

body.is-loading {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(118deg, rgba(255, 248, 237, 0.88), rgba(229, 198, 136, 0.22)),
    radial-gradient(circle at 22% 12%, rgba(247, 175, 72, 0.16), transparent 28%),
    radial-gradient(circle at 87% 7%, rgba(137, 89, 46, 0.12), transparent 30%);
}

@keyframes preloader-mark-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes preloader-mark-pulse {
  0%,
  100% {
    filter: drop-shadow(0 18px 34px rgba(247, 175, 72, 0.16));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 24px 46px rgba(247, 175, 72, 0.28));
    transform: scale(1.035);
  }
}

@keyframes hero-bg-reveal {
  from {
    opacity: 0.78;
    transform: scale(1.025);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes hero-portrait-in {
  from {
    opacity: 0;
    filter: blur(7px);
    transform: translateX(-28px) scale(0.985);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) scale(1);
  }
}

@keyframes hero-text-in {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes hero-accent-in {
  from {
    opacity: 0;
    transform: translateY(0.18em) skewX(-5deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) skewX(0);
  }
}

@keyframes hero-fade-in {
  from {
    opacity: 0;
    filter: blur(4px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes review-card-in {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes hero-mobile-portrait-in {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translate(-50%, 22px) scale(0.985);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, 0) scale(1);
  }
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--green-900);
  opacity: 1;
  pointer-events: auto;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.site-preloader img {
  width: min(34vw, 220px);
  max-width: calc(100% - 80px);
  animation:
    preloader-mark-in 640ms cubic-bezier(0.22, 1, 0.36, 1) both,
    preloader-mark-pulse 1800ms ease-in-out 640ms infinite;
}

.site-preloader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

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

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

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1040px, calc(100% - 32px));
  margin: 0;
  padding: 7px 10px;
  border: 1px solid rgba(42, 54, 40, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 248, 237, 0.84);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: box-shadow 180ms ease, background 180ms ease, opacity 240ms ease;
}

body.is-hero-loading .site-header {
  opacity: 0;
  pointer-events: none;
}

.site-header.is-elevated {
  background: rgba(255, 248, 237, 0.94);
  box-shadow: 0 14px 42px rgba(42, 54, 40, 0.12);
}

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

.brand-logo {
  display: block;
  width: clamp(132px, 14vw, 178px);
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
  font-size: 0.84rem;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--green-900);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  gap: 9px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  min-height: 38px;
  padding: 0 13px;
  color: var(--cream-100);
  background: var(--green-900);
  font-size: 0.88rem;
}

.button {
  padding: 0 18px;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--cream-100);
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  box-shadow: 0 16px 34px rgba(42, 54, 40, 0.23);
}

.button.ghost {
  color: var(--green-900);
  border-color: rgba(42, 54, 40, 0.16);
  background: rgba(255, 253, 248, 0.68);
}

.button.light {
  color: var(--cream-100);
  border-color: rgba(255, 248, 237, 0.2);
  background: rgba(255, 248, 237, 0.08);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button svg,
.header-cta svg,
.text-link svg,
.floating-whatsapp svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: clamp(132px, 12vw, 172px) 0 clamp(42px, 6vw, 80px);
}

.hero-fallback {
  position: fixed;
  inset: 0;
  z-index: 18;
  background: var(--green-900) url("public/hero-desktop/hero-fallback-desktop.png") center / cover no-repeat;
  opacity: 1;
  pointer-events: none;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.hero.is-ready .hero-fallback {
  visibility: hidden;
  opacity: 0;
}

.hero-desktop-assets {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}

.hero-desktop-assets img {
  position: absolute;
  display: block;
  user-select: none;
  pointer-events: none;
}

.hero-mobile-assets {
  display: none;
}

.hero-desktop-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-bg-reveal 1200ms ease-out both;
}

.hero-aline {
  left: clamp(18px, 5vw, 92px);
  bottom: -22px;
  z-index: 2;
  width: clamp(500px, 47vw, 780px);
  max-height: calc(100% - 66px);
  object-fit: contain;
  object-position: bottom left;
  animation: hero-portrait-in 1000ms cubic-bezier(0.22, 1, 0.36, 1) 160ms both;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 64px));
  max-width: none;
  margin: 0 auto;
  padding-left: clamp(540px, 44vw, 640px);
  transform: translateY(42px);
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-text {
  opacity: 0;
  animation: hero-text-in 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy .eyebrow {
  animation-delay: 250ms;
}

.hero-copy h1 {
  animation-delay: 360ms;
}

.hero-text {
  animation-delay: 520ms;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  color: var(--caramel-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.97;
}

h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 3.05vw, 3.45rem);
  line-height: 0.96;
}

h1 span {
  display: inline-block;
  color: var(--caramel-600);
  font-style: italic;
  animation: hero-accent-in 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.mobile-break {
  display: none;
}

.hero-copy h1 span:first-of-type {
  animation-delay: 720ms;
}

.hero-copy h1 span:last-of-type {
  animation-delay: 840ms;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 1.75vw, 2.15rem);
  line-height: 1.12;
}

h3 {
  color: var(--green-950);
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-text {
  max-width: 540px;
  color: var(--green-800);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 600;
}

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

.hero-actions {
  opacity: 0;
  max-width: 540px;
  animation: hero-fade-in 720ms ease-out 690ms both;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  padding: 12px 14px;
  border: 1px solid rgba(42, 54, 40, 0.11);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 253, 247, 0.66);
}

.trust-row strong {
  color: var(--green-900);
}

.section-band {
  position: relative;
  width: 100%;
  scroll-margin-top: 82px;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 7vw, 104px) 0;
}

.intro-band {
  background: var(--cream-100);
  border-top: 1px solid rgba(42, 54, 40, 0.12);
}

.service-band {
  background: #f4e3be;
}

.transformation-band {
  background: #fff8ed;
}

.social-proof {
  background: #ecd7bd;
}

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

.faq-band {
  background: #f7ead0;
}

.final-band {
  background: var(--cream-100);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(320px, 4fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
}

.split:has(> :only-child) {
  display: block;
  max-width: 760px;
}

.rich-copy {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 520px;
}

.consult-grid,
.services-grid {
  display: grid;
  gap: 16px;
}

.consult-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
}

.consult-grid article,
.service-card,
.testimonial-slide {
  border: 1px solid rgba(42, 54, 40, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.76);
  box-shadow: 0 16px 40px rgba(42, 54, 40, 0.08);
}

.consult-grid article,
.service-card {
  padding: 22px;
}

.consult-grid svg,
.service-card svg {
  width: 26px;
  height: 26px;
  margin-bottom: 18px;
  color: var(--caramel-600);
}

.consult-grid p,
.service-card p,
.section-heading p,
.transformation-copy p,
.location-panel p,
.final-cta p {
  color: var(--muted);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 42px;
}

.service-section .section-heading {
  margin-bottom: 18px;
}

.section-heading p {
  max-width: 560px;
  font-size: 1rem;
}

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

.service-card:nth-child(2),
.service-card:nth-child(4) {
  background: rgba(247, 175, 72, 0.13);
}

.service-card:nth-child(3),
.service-card:nth-child(6) {
  background: rgba(229, 198, 136, 0.18);
}

.service-showcase {
  display: grid;
  gap: 30px;
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  max-width: 1080px;
  margin-inline: auto;
}

.service-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 38px;
  gap: 6px;
  padding: 7px 8px;
  border: 1px solid rgba(42, 54, 40, 0.12);
  border-radius: var(--radius);
  color: var(--green-900);
  background: rgba(255, 253, 247, 0.72);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.15;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.service-tab.is-active {
  color: var(--cream-100);
  border-color: var(--green-900);
  background: var(--green-900);
}

.service-tab svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(500px, 0.92fr);
  grid-template-areas: "copy visual";
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  max-width: 1120px;
  margin-inline: auto;
}

.service-copy {
  grid-area: copy;
  align-self: start;
  max-width: 360px;
  padding-top: clamp(10px, 1.6vw, 22px);
}

.service-cta {
  width: auto;
  min-height: 42px;
  margin-top: 28px;
  padding-inline: 15px;
  font-size: 0.88rem;
}

.service-pill {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--green-900);
  background: rgba(247, 175, 72, 0.2);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 1.9vw, 2.08rem);
  line-height: 1.04;
}

.service-copy p {
  color: var(--muted);
  font-size: 0.98rem;
}

.before-after {
  position: relative;
  grid-area: visual;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  width: min(100%, 640px);
  max-height: 780px;
  margin-inline: auto;
  border: 1px solid rgba(42, 54, 40, 0.12);
  border-radius: var(--radius);
  background: rgba(42, 54, 40, 0.08);
  box-shadow: var(--shadow);
}

.before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  pointer-events: none;
}

.after-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.compare-label {
  position: absolute;
  top: 14px;
  z-index: 3;
  padding: 8px 10px;
  border-radius: var(--radius);
  color: var(--green-950);
  background: rgba(255, 248, 237, 0.9);
  font-size: 0.82rem;
  font-weight: 900;
}

.before-label {
  right: 14px;
}

.after-label {
  left: 14px;
}

.before-after.is-before-only .after-label,
.before-after.is-after-only .before-label {
  opacity: 0;
}

.before-after.is-empty .compare-label,
.before-after.is-empty .compare-range,
.before-after.is-empty .compare-handle {
  display: none;
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 0;
  color: var(--green-950);
  pointer-events: none;
}

.compare-handle::before {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  content: "";
  background: var(--cream-100);
  box-shadow: 0 0 0 1px rgba(29, 37, 29, 0.16), 0 0 22px rgba(29, 37, 29, 0.22);
}

.compare-handle span {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--cream-100);
  box-shadow: 0 12px 30px rgba(29, 37, 29, 0.28);
}

.compare-handle svg {
  position: absolute;
  width: 22px;
  height: 22px;
}

.empty-result {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  padding: 28px;
  text-align: center;
  color: var(--green-950);
  background: linear-gradient(145deg, rgba(255, 248, 237, 0.96), rgba(244, 227, 190, 0.96));
}

.empty-result[hidden] {
  display: none;
}

.empty-result svg {
  width: 34px;
  height: 34px;
  margin: 0 auto 12px;
  color: var(--caramel-600);
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.transformation {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
}

.transformation-copy {
  max-width: 450px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-900);
  font-weight: 900;
}

.reel-mockup {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: min(100%, 390px);
  min-height: 620px;
  padding: 16px 14px;
  border: 1px solid rgba(255, 248, 237, 0.2);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(29, 37, 29, 0.96), rgba(53, 68, 52, 0.94)),
    var(--green-900);
  box-shadow: 0 34px 80px rgba(29, 37, 29, 0.24);
}

.phone-frame::before {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 82px;
  height: 5px;
  border-radius: 999px;
  content: "";
  background: rgba(255, 248, 237, 0.34);
  transform: translateX(-50%);
}

.reel-video-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 588px;
  border-radius: 22px;
  background: var(--green-950);
}

.reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sound-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  border: 0;
  border-radius: var(--radius);
  color: var(--cream-100);
  background: rgba(42, 54, 40, 0.92);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(29, 37, 29, 0.24);
}

.sound-toggle svg {
  width: 16px;
  height: 16px;
}

.sound-toggle[hidden] {
  display: none;
}

.social-proof {
  border-top: 1px solid rgba(42, 54, 40, 0.1);
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 auto;
  padding: 22px;
  border: 1px solid rgba(42, 54, 40, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 248, 237, 0.54);
  box-shadow: 0 18px 46px rgba(42, 54, 40, 0.08);
  animation: review-card-in 600ms ease-out both;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(42, 54, 40, 0.14);
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--green-900);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(42, 54, 40, 0.08);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.carousel-btn:hover {
  background: var(--white);
  box-shadow: 0 4px 14px rgba(42, 54, 40, 0.12);
  transform: scale(1.08);
}

.carousel-btn:active {
  transform: scale(0.96);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(42, 54, 40, 0.18);
  cursor: pointer;
  transition: background 360ms ease, width 360ms ease, border-radius 360ms ease;
  padding: 0;
}

.carousel-dot.is-active {
  width: 24px;
  border-radius: 4px;
  background: var(--green-900);
}

.carousel-dot:hover:not(.is-active) {
  background: rgba(42, 54, 40, 0.35);
}

.stars {
  margin-bottom: 13px;
  color: var(--honey-500);
  font-size: 1rem;
  letter-spacing: 0.06em;
}

blockquote {
  margin: 0 0 18px;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.34;
}

figcaption {
  color: var(--muted);
  font-weight: 800;
}

.location-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1.12fr);
  align-items: center;
  gap: clamp(42px, 6vw, 92px);
  padding: clamp(58px, 7vw, 92px) 0;
  border-radius: 0;
  color: var(--cream-100);
  background: transparent;
  box-shadow: none;
}

.location-panel h2,
.location-panel p,
.location-panel .section-kicker {
  color: var(--cream-100);
}

.location-panel h2 {
  max-width: 700px;
}

.location-panel p {
  max-width: 560px;
  opacity: 0.78;
}

.map-frame {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 248, 237, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.map-fallback {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--green-950);
  background: rgba(255, 248, 237, 0.9);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.faq {
  max-width: 920px;
}

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

details {
  border: 1px solid rgba(42, 54, 40, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.8);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 0 20px;
  color: var(--green-950);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--cream-100);
  background: var(--green-900);
}

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

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 92px) 0;
  text-align: center;
}

.final-cta h2 {
  margin-inline: auto;
}

.final-cta p {
  max-width: 590px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--cream-100);
  background: var(--green-900);
  box-shadow: 0 16px 36px rgba(29, 37, 29, 0.28);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid rgba(42, 54, 40, 0.12);
  color: var(--muted);
}

footer p {
  margin: 0;
}

footer a {
  color: var(--green-900);
  font-weight: 900;
}

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .hero-desktop-assets {
    display: none;
  }

  .hero,
  .split,
  .transformation,
  .location-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100vh - 96px);
    align-items: start;
    padding-top: clamp(32px, 8vw, 66px);
  }

  .hero-copy {
    padding-left: 0;
    text-align: center;
    transform: none;
  }

  .hero-copy .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  .hero-text {
    margin-inline: auto;
  }

  .consult-grid,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail {
    grid-template-areas:
      "copy"
      "visual";
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .service-copy {
    max-width: 540px;
    margin-inline: auto;
    text-align: center;
  }

  .service-cta {
    margin-top: 20px;
  }

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

  .location-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    top: 10px;
    padding: 8px;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    width: 40px;
    min-height: 40px;
    padding: 0;
    font-size: 0;
  }

  .section,
  footer {
    width: calc(100% - 24px);
  }

  .hero {
    position: relative;
    width: 100%;
    align-items: start;
    min-height: 100svh;
    padding: 96px 18px 118px;
  }

  .hero-desktop-assets {
    display: none;
  }

  .hero-fallback {
    background-image: url("public/hero-desktop/hero-fallback-mobile.png");
  }

  .hero-mobile-assets {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    overflow: hidden;
  }

  .hero-mobile-assets img {
    position: absolute;
    display: block;
    user-select: none;
    pointer-events: none;
  }

  .hero-mobile-bg {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: hero-bg-reveal 1200ms ease-out both;
  }

  .hero-mobile-aline {
    left: 50%;
    bottom: 0;
    z-index: 1;
    width: min(112vw, 520px);
    max-height: 62svh;
    object-fit: contain;
    object-position: bottom center;
    animation: hero-mobile-portrait-in 1000ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
  }

  .hero-copy {
    position: static;
    z-index: 3;
    width: 100%;
  }

  .hero-copy .eyebrow,
  .hero-copy h1 {
    position: relative;
    z-index: 3;
  }

  .hero-copy .eyebrow {
    display: block;
    max-width: 280px;
    margin-inline: auto;
    font-size: 0.62rem;
    line-height: 1.35;
  }

  h1 {
    max-width: 310px;
    margin-inline: auto;
    margin-bottom: 0;
    font-size: clamp(1.48rem, 6.45vw, 1.72rem);
    line-height: 1;
  }

  .mobile-break {
    display: block;
  }

  .hero-text {
    display: none;
  }

  .hero-actions {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 4;
    width: min(330px, calc(100% - 44px));
    max-width: none;
    margin: 0;
    transform: translateX(-50%);
  }

  .hero-actions .button.ghost {
    display: none;
  }

  h2 {
    font-size: clamp(1.75rem, 7.4vw, 2.25rem);
  }

  .hero-actions,
  .location-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .consult-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-tab {
    min-height: 38px;
    padding: 7px 6px;
    font-size: 0.72rem;
  }

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

  .service-tab svg {
    width: 13px;
    height: 13px;
  }

  .before-after {
    max-height: none;
  }

  .phone-frame {
    width: min(100%, 360px);
    min-height: 560px;
    padding: 13px 11px;
    border-radius: 26px;
  }

  .reel-video-card {
    height: 540px;
  }

  .trust-row span {
    flex: 1 1 100%;
  }

  .carousel-btn {
    width: 34px;
    height: 34px;
  }

  .carousel-btn svg {
    width: 16px;
    height: 16px;
  }

  .carousel-controls {
    gap: 10px;
  }

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

  footer {
    display: grid;
  }
}

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

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

  .hero-desktop-bg,
  .hero-aline,
  .hero-mobile-bg,
  .hero-mobile-aline,
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy h1 span,
  .hero-text,
  .hero-actions {
    opacity: 1;
    filter: none;
  }
}
