:root {
  --olive: #6b7d6d;
  --olive-deep: #556557;
  --beige: #f4f1ec;
  --beige-strong: #ece4d8;
  --brown: #8a6f5a;
  --text: #4f4f4f;
  --heading: #2f3a31;
  --accent: #e6c97a;
  --white: #fffdf9;
  --line: rgba(107, 125, 109, 0.18);
  --shadow: 0 24px 70px rgba(79, 79, 79, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(230, 201, 122, 0.22), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(107, 125, 109, 0.12), transparent 20%),
    linear-gradient(180deg, #fcfaf6 0%, var(--beige) 46%, #f7f1e8 100%);
  line-height: 1.6;
}

body.is-loading {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(230, 201, 122, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(250, 247, 242, 0.98) 0%, rgba(244, 241, 236, 0.98) 100%);
  transition: opacity 0.55s ease, visibility 0.55s ease;
  animation: loader-fallback-hide 0.8s ease 4.5s forwards;
}

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

.site-loader__content {
  display: grid;
  place-items: center;
  min-width: 7rem;
  min-height: 7rem;
}

.site-loader__eyebrow {
  display: none;
}

.site-loader__brand {
  display: none;
}

.site-loader__line {
  width: 0.85rem;
  height: 0.85rem;
  overflow: visible;
  border-radius: 50%;
  background: var(--olive);
  box-shadow:
    -1.4rem 0 0 rgba(107, 125, 109, 0.35),
    1.4rem 0 0 rgba(107, 125, 109, 0.35);
}

.site-loader__line span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  animation: loader-pulse 0.9s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(252, 249, 244, 0.72);
  border-bottom: 1px solid rgba(107, 125, 109, 0.1);
  box-shadow: 0 10px 30px rgba(79, 79, 79, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 0.95;
}

.brand-copy {
  font-size: 0.9rem;
  color: var(--brown);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--white);
  border-radius: 999px;
  width: 3rem;
  height: 3rem;
  box-shadow: var(--shadow);
  color: var(--heading);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  font-size: 0.96rem;
  color: var(--heading);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--olive);
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.25rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.button {
  background: linear-gradient(135deg, var(--olive-deep), var(--olive));
  color: var(--white);
  box-shadow: 0 18px 34px rgba(85, 101, 87, 0.22);
}

.button-secondary {
  background: rgba(255, 253, 249, 0.78);
  color: var(--heading);
  border-color: rgba(107, 125, 109, 0.14);
  box-shadow: 0 12px 24px rgba(79, 79, 79, 0.06);
}

.button-ghost {
  background: rgba(255, 253, 249, 0.45);
  color: var(--olive);
  border-color: rgba(107, 125, 109, 0.16);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px rgba(79, 79, 79, 0.1);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(138, 111, 90, 0.2);
  background: rgba(255, 253, 249, 0.74);
  color: var(--brown);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.85), rgba(236, 228, 216, 0.5));
}

.section-soft {
  background: rgba(255, 253, 249, 0.66);
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.section-head h1,
.section-head h2,
.hero-copy h1,
.page-hero-copy h1 {
  margin: 0.5rem 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--heading);
  line-height: 0.95;
}

.hero-copy h1,
.page-hero-copy h1 {
  font-size: clamp(3rem, 8vw, 5.6rem);
}

.section-head h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.lead,
.section-head p,
.hero-copy p,
.page-hero-copy p {
  font-size: 1.08rem;
}

.hero,
.page-hero {
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}

.hero-home,
.hero-landing {
  position: relative;
}

.hero-home::before,
.hero-landing::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 100%;
  background:
    radial-gradient(circle at 10% 18%, rgba(230, 201, 122, 0.22), transparent 20%),
    radial-gradient(circle at 85% 10%, rgba(107, 125, 109, 0.12), transparent 18%);
  pointer-events: none;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
}

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

.hero-copy > p,
.page-hero-copy > p {
  max-width: 40rem;
}

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

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.66);
  border: 1px solid rgba(107, 125, 109, 0.12);
  color: var(--heading);
  box-shadow: 0 12px 24px rgba(79, 79, 79, 0.05);
}

.trust-row,
.stats,
.mini-cards,
.badge-list {
  display: grid;
  gap: 1rem;
}

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

.stat-card,
.card,
.quote-card,
.faq-item,
.article-card,
.service-card,
.contact-card,
.highlight-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(255, 253, 249, 0.78));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stat-card,
.card,
.quote-card,
.faq-item,
.article-card,
.service-card,
.contact-card,
.highlight-card,
.accent-panel,
.cta-band,
.image-frame,
.hero-note {
  position: relative;
  overflow: hidden;
}

.stat-card::after,
.card::after,
.quote-card::after,
.article-card::after,
.service-card::after,
.contact-card::after,
.highlight-card::after,
.accent-panel::after {
  content: "";
  position: absolute;
  inset: auto 1.25rem 0.9rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(230, 201, 122, 0.75), transparent 70%);
  opacity: 0.8;
}

.card,
.quote-card,
.article-card,
.service-card,
.contact-card,
.highlight-card,
.stat-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover,
.quote-card:hover,
.article-card:hover,
.service-card:hover,
.contact-card:hover,
.highlight-card:hover,
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(79, 79, 79, 0.12);
  border-color: rgba(107, 125, 109, 0.24);
}

.card-icon,
.number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(230, 201, 122, 0.24);
  color: var(--brown);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-visual,
.page-hero-visual {
  position: relative;
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  padding: 0;
}

.hero-home .hero-visual::before,
.hero-landing .hero-visual::before {
  content: "";
  position: absolute;
  inset: 9% -8% auto auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 201, 122, 0.26), transparent 68%);
  pointer-events: none;
  filter: blur(4px);
}

.hero-home .hero-visual::after,
.hero-landing .hero-visual::after {
  content: "";
  position: absolute;
  inset: auto auto 10% -10%;
  width: 11rem;
  height: 11rem;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(107, 125, 109, 0.13), rgba(255, 253, 249, 0));
  transform: rotate(-18deg);
  pointer-events: none;
}

.image-frame {
  position: relative;
  padding: 1rem;
  border-radius: calc(var(--radius-lg) + 10px);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.72)),
    linear-gradient(135deg, rgba(230, 201, 122, 0.16), rgba(107, 125, 109, 0.08));
  border: 1px solid rgba(107, 125, 109, 0.16);
  box-shadow: 0 28px 70px rgba(79, 79, 79, 0.13);
}

.image-frame img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hero-note {
  padding: 0.95rem 1.05rem;
  max-width: 260px;
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.88);
  border: 1px solid rgba(107, 125, 109, 0.14);
  box-shadow: 0 18px 40px rgba(79, 79, 79, 0.09);
  backdrop-filter: blur(8px);
}

.hero-note-compact {
  align-self: start;
  max-width: 18rem;
}

.hero-note-compact p {
  margin-bottom: 0;
}

.hero-note-top {
  justify-self: end;
  margin-right: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.hero-note-bottom {
  justify-self: start;
  margin-left: 0;
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.4rem;
}

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

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

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

.accent-panel {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(230, 201, 122, 0.18), transparent 35%),
    linear-gradient(135deg, rgba(107, 125, 109, 0.12), rgba(230, 201, 122, 0.16));
  border: 1px solid rgba(107, 125, 109, 0.14);
  box-shadow: 0 22px 48px rgba(79, 79, 79, 0.09);
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.photo-card img,
.service-photo img {
  border-radius: var(--radius-lg);
  min-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.list-clean {
  display: grid;
  gap: 0.95rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.list-clean li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.list-clean li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.55rem;
  flex: 0 0 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}

.testimonial {
  font-size: 1.05rem;
}

.testimonial strong {
  display: block;
  margin-top: 1rem;
  color: var(--heading);
}

.cta-band {
  padding: 2.4rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(230, 201, 122, 0.22), transparent 22%),
    linear-gradient(135deg, var(--olive-deep), var(--olive));
  color: var(--white);
  display: grid;
  gap: 1rem;
  align-items: center;
  grid-template-columns: minmax(0, 1.3fr) auto;
  box-shadow: 0 24px 55px rgba(85, 101, 87, 0.28);
}

.cta-band-feature {
  grid-template-columns: minmax(0, 1.4fr) auto;
  padding: 3rem;
}

.section-pain,
.section-solution,
.section-cta-wrap {
  position: relative;
}

.section-pain::before,
.section-solution::before,
.section-cta-wrap::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(107, 125, 109, 0.1), transparent 40%);
}

.hero-home .trust-row {
  margin-top: 1.4rem;
}

.hero-home .stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  color: var(--heading);
}

.hero-home .stat-card {
  padding-top: 1.2rem;
}

.hero-landing .hero-grid {
  align-items: stretch;
}

.hero-landing .hero-copy,
.hero-home .hero-copy {
  padding-right: clamp(0rem, 1vw, 0.5rem);
}

.hero-landing .hero-copy {
  padding: 2rem;
  border-radius: calc(var(--radius-lg) + 6px);
  background: rgba(255, 253, 249, 0.48);
  border: 1px solid rgba(107, 125, 109, 0.12);
  box-shadow: 0 22px 48px rgba(79, 79, 79, 0.06);
  backdrop-filter: blur(8px);
}

.hero-landing .image-frame {
  transform: translateY(1rem);
}

.hero-landing .hero-note-bottom {
  justify-self: start;
  margin-top: 0.25rem;
}

.cta-band h2,
.cta-band p {
  color: inherit;
  margin: 0;
}

.faq-button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 700;
  color: var(--heading);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.faq-item.is-open .faq-content {
  max-height: 240px;
  margin-top: 1rem;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea,
.newsletter-form input {
  width: 100%;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(107, 125, 109, 0.18);
  background: rgba(255, 253, 249, 0.95);
  color: var(--text);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.8rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(107, 125, 109, 0.12);
}

.landing-topbar {
  padding: 1rem 0 0;
}

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

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 0.6rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10;
  background: #2f9e44;
  color: #fff;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(47, 158, 68, 0.26);
}

.muted {
  color: rgba(79, 79, 79, 0.8);
}

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

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

@keyframes loader-pulse {
  0%,
  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes loader-fallback-hide {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  }

  .hero-note-top {
    margin-right: 0;
    margin-bottom: 0;
  }

  .hero-note-bottom {
    margin-left: 0;
    margin-top: 0;
  }

  .hero-note {
    max-width: 220px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .split,
  .grid-4,
  .cta-band,
  .cta-band-feature {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-2,
  .footer-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 1rem;
    width: min(340px, calc(100% - 2rem));
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 253, 249, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-home::before,
  .hero-landing::before,
  .hero-home .hero-visual::before,
  .hero-landing .hero-visual::before,
  .hero-home .hero-visual::after,
  .hero-landing .hero-visual::after {
    display: none;
  }

  .hero-copy,
  .page-hero-copy,
  .hero-landing .hero-copy {
    padding-right: 0;
  }

  .hero-landing .hero-copy {
    padding: 1.5rem;
  }

  .hero-visual,
  .page-hero-visual {
    max-width: none;
    margin-left: 0;
  }

  .hero-actions,
  .page-links,
  .hero-chip-row {
    gap: 0.85rem;
  }

  .cta-band-feature {
    padding: 2rem;
  }

  .image-frame img,
  .photo-card img,
  .service-photo img {
    min-height: 340px;
  }

  .landing-topbar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-note,
  .hero-note-compact {
    max-width: none;
  }

  .hero-note-top,
  .hero-note-bottom {
    margin: 0;
  }
}

@media (max-width: 640px) {
  .section,
  .hero,
  .page-hero {
    padding: 4rem 0;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .header-inner {
    gap: 0.75rem;
  }

  .brand-mark {
    font-size: 1.55rem;
  }

  .brand-copy {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: 2.8rem;
  }

  .hero-actions .button,
  .hero-actions .button-secondary,
  .page-links .button-secondary,
  .landing-topbar .button-ghost,
  .newsletter-form .button {
    width: 100%;
  }

  .hero-chip-row {
    margin-bottom: 1.25rem;
  }

  .hero-chip {
    width: 100%;
    justify-content: center;
  }

  .hero-note {
    padding: 0.9rem 1rem;
  }

  .hero-landing .hero-copy,
  .cta-band-feature {
    padding: 1.25rem;
  }

  .image-frame {
    padding: 0.75rem;
  }

  .image-frame img,
  .photo-card img,
  .service-photo img {
    min-height: 280px;
  }

  .site-loader__content {
    min-width: 6rem;
    min-height: 6rem;
  }
}

