:root {
  --c-bg: #fdf8ef;
  --c-surface: #fbf2e2;
  --c-sand: #fce6c8;
  --c-text: #2c1f17;
  --c-muted: #6b574a;
  --c-border: #ebdfcd;
  --c-primary: #d46a4a;
  --c-primary-dark: #b3502f;
  --c-accent: #8db89a;
  --c-accent-dark: #5d957a;
  --c-aqua-soft: #e6f0ea;
  --c-success: #25d366;
  --radius: 22px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 14px rgba(44, 31, 23, .06);
  --shadow-md: 0 24px 60px rgba(212, 106, 74, .18);
  --shadow-warm: 0 24px 60px rgba(212, 106, 74, .25);
  --container: 1180px;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  isolation: isolate;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 .55em;
  letter-spacing: -0.015em;
}
h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  font-weight: 500;
}
h1 em {
  font-style: italic;
  color: var(--c-primary-dark);
  font-weight: 500;
}
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0;
}
p { margin: 0 0 1em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .96rem;
  font-family: var(--font-body);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(212, 106, 74, .35);
}
.btn-ghost {
  background: transparent;
  border-color: var(--c-border);
  color: var(--c-text);
}
.btn-ghost:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn-lg { padding: 1rem 1.7rem; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 239, .55);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid rgba(235, 223, 205, .35);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 14px 22px;
}
.logo {
  display: flex;
  align-items: center;
  color: var(--c-primary);
}
.logo-svg {
  height: 50px;
  width: auto;
  display: block;
  color: inherit;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.logo-img-footer { height: 50px; }
.footer-logo { color: var(--c-sand); height: 56px; }
.main-nav {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
  font-weight: 500;
  font-size: .95rem;
}
.main-nav a { color: var(--c-muted); transition: color .15s; }
.main-nav a:hover { color: var(--c-primary); }
.header-cta {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.lang-toggle {
  background: transparent;
  border: 1.5px solid var(--c-border);
  border-radius: 999px;
  padding: .45rem .8rem;
  font-weight: 600;
  font-size: .82rem;
  cursor: pointer;
  font-family: inherit;
  color: var(--c-muted);
}
.lang-toggle:hover { color: var(--c-primary); border-color: var(--c-primary); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  margin: 4px 0;
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 90px 0 100px;
  background:
    radial-gradient(900px 500px at 85% 10%, var(--c-sand), transparent 65%),
    radial-gradient(700px 400px at 0% 110%, var(--c-aqua-soft), transparent 60%),
    var(--c-bg);
  overflow: hidden;
}
.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .38;
}
.blob-1 {
  top: -140px;
  right: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, #fde2c2 0%, #f3b993 65%, transparent 85%);
  opacity: .42;
}
.blob-2 {
  top: 38vh;
  left: -200px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle at 60% 40%, #fac8b0 0%, #efa886 60%, transparent 85%);
  opacity: .3;
}
.blob-3 {
  top: 72vh;
  right: 8vw;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 40% 60%, #ffeeda 0%, #f9c19a 55%, transparent 85%);
  opacity: .26;
}
.blob-4 {
  top: 110vh;
  left: 30vw;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 50% 50%, #e3eee6 0%, #b9d2c1 55%, transparent 85%);
  opacity: .22;
}
@media (max-width: 720px) {
  .blob-1 { width: 320px; height: 320px; right: -120px; }
  .blob-2 { width: 280px; height: 280px; left: -140px; }
  .blob-3 { width: 240px; height: 240px; right: -40px; }
  .blob-4 { display: none; }
  .blob { filter: blur(60px); }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-areas:
    "head image"
    "body image";
  grid-template-rows: auto 1fr;
  gap: 0 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-head { grid-area: head; align-self: end; padding-bottom: 18px; }
.hero-body { grid-area: body; align-self: start; }
.hero-image { grid-area: image; align-self: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff;
  border: 1px solid var(--c-border);
  color: var(--c-primary-dark);
  font-weight: 600;
  font-size: .88rem;
  padding: .4rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-sm);
}
.eyebrow-dot { color: var(--c-accent); font-size: 1.05rem; }
.lead {
  font-size: 1.12rem;
  color: var(--c-muted);
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin: 1.8rem 0 1.5rem;
}
.hero-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
  color: var(--c-muted);
  font-size: .95rem;
}
.hero-meta strong { color: var(--c-text); }
.hero-image {
  position: relative;
}
.hero-image img {
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--c-aqua-soft);
}
.hero-badge {
  position: absolute;
  bottom: 22px;
  left: -18px;
  background: #fff;
  padding: 14px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-warm);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hero-badge strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--c-primary-dark);
}
.hero-badge span {
  color: var(--c-muted);
  font-size: .85rem;
}

/* ---------- Benefits ---------- */
.benefits { padding: 80px 0 50px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit {
  position: relative;
  border-radius: var(--radius);
  padding: 40px 36px 50px;
  min-height: 280px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .55) 0%, rgba(252, 230, 200, .25) 100%);
  border: 1px solid rgba(212, 106, 74, .18);
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s ease, box-shadow .35s ease;
  backdrop-filter: blur(2px);
}
.benefit::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -22%;
  width: 80%;
  aspect-ratio: 1 / 1;
  background-image: var(--bg, none);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  opacity: .58;
  -webkit-mask-image: linear-gradient(135deg, transparent 5%, #000 55%);
  mask-image: linear-gradient(135deg, transparent 5%, #000 55%);
  pointer-events: none;
  z-index: 0;
}
.benefit > * { position: relative; z-index: 1; }
.benefit:hover { transform: translateY(-5px); box-shadow: 0 26px 60px rgba(212, 106, 74, .16); }
.benefit h3 { color: var(--c-text); font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; line-height: 1.22; margin-bottom: .55em; max-width: 14ch; }
.benefit p { color: var(--c-muted); margin: 0; max-width: 24ch; font-size: 1rem; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 1s cubic-bezier(.22, 1, .36, 1), transform 1.05s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
  backface-visibility: hidden;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.reveal[data-delay="1"] { transition-delay: .14s; }
.reveal[data-delay="2"] { transition-delay: .28s; }
.reveal[data-delay="3"] { transition-delay: .42s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Services ---------- */
.services { padding: 80px 0; background: var(--c-surface); position: relative; }
.wave-divider { color: var(--c-surface); }
.section-head {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head p { color: var(--c-muted); font-size: 1.05rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  contain: paint;
}
.service.reveal { transition: opacity 1s cubic-bezier(.22, 1, .36, 1), transform 1.05s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease; }
.service:hover { box-shadow: var(--shadow-md); }
.service-image img { transform: translateZ(0); }
.service-image {
  aspect-ratio: 16 / 10;
  background: var(--c-aqua-soft);
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.service-body p {
  color: var(--c-muted);
  flex: 1;
}
.services-note {
  text-align: center;
  margin-top: 36px;
  color: var(--c-muted);
  font-size: 1rem;
}
.services-note a { color: var(--c-primary-dark); font-weight: 600; }

/* ---------- Why us ---------- */
.why-us { padding: 90px 0; }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image img {
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: .7rem;
}
.check-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--c-muted);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-aqua-soft);
}
.check-list li::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: .25em;
  color: var(--c-accent-dark);
  font-weight: 700;
  font-size: .85rem;
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 80px 0; background: var(--c-sand); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  padding: 32px;
  margin: 0;
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 4px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--c-primary);
  line-height: 1;
  opacity: .5;
}
.testimonial blockquote {
  margin: 24px 0 14px;
  font-size: 1.08rem;
  line-height: 1.65;
  font-family: var(--font-display);
  font-weight: 400;
}
.testimonial figcaption {
  color: var(--c-muted);
  font-size: .92rem;
  font-weight: 500;
}

/* ---------- Contact ---------- */
.contact { padding: 90px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  background:
    radial-gradient(800px 400px at 110% 110%, rgba(141, 184, 154, .35), transparent 60%),
    linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  color: #fff;
  border-radius: 32px;
  padding: 60px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.contact-copy h2 { color: #fff; }
.contact-copy p { color: rgba(255, 255, 255, .92); font-size: 1.05rem; }
.contact-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 22px; }
.contact-actions .btn-primary { background: #fff; color: var(--c-primary-dark); }
.contact-actions .btn-primary:hover { background: var(--c-sand); }
.contact-actions .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .55); }
.contact-actions .btn-ghost:hover { background: rgba(255, 255, 255, .15); border-color: #fff; color: #fff; }
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.contact-info li {
  background: rgba(255, 255, 255, .14);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  backdrop-filter: blur(6px);
}
.contact-info strong { display: block; margin-bottom: 4px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: #2c1f17;
  color: #d2c5b6;
  padding: 50px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: start;
}
.footer-brand { font-weight: 700; }
.footer-brand p { font-weight: 400; color: #9c8b7c; margin: 12px 0 0; max-width: 400px; line-height: 1.5; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: .95rem;
  justify-content: flex-end;
  align-self: center;
}
.footer-links a { color: #d2c5b6; transition: color .15s; }
.footer-links a:hover { color: var(--c-sand); }
.copyright {
  grid-column: 1 / -1;
  margin: 36px 0 0;
  padding-top: 22px;
  border-top: 1px solid #463226;
  font-size: .85rem;
  color: #8a7a6c;
  text-align: center;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-success);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
  z-index: 60;
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "image" "body";
    grid-template-rows: auto auto auto;
  }
  .hero-head { padding-bottom: 0; }
  .why-inner, .contact-inner { grid-template-columns: 1fr; }
  .contact-inner { padding: 42px 24px; border-radius: 0; }
  .benefits-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .hero-image { max-width: 540px; margin: 12px auto 32px; }
  .hero-image img { aspect-ratio: 16 / 10; }
  .hero-badge { left: 12px; }
}

@media (max-width: 720px) {
  .contact-actions, .hero-actions { flex-wrap: nowrap; gap: .5rem; }
  .contact-actions .btn, .hero-actions .btn { min-width: 0; padding: .85rem .9rem; font-size: .9rem; white-space: nowrap; }
  .hero-actions .btn-primary { flex: 1.7 1 0; }
  .hero-actions .btn-ghost { flex: 1 1 0; }
  .contact-actions .btn { flex: 1 1 0; }
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .site-header.is-open .main-nav,
  .site-header.is-open .header-cta {
    display: flex;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    margin: 12px 0 0;
    gap: 12px;
  }
  .site-header.is-open .header-inner { flex-wrap: wrap; }
  .hero { padding: 50px 0 80px; }
  .benefits-grid, .services-grid { grid-template-columns: 1fr; }
}
