@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap");

:root {
  --accent: #b51f68;
  --accent-dark: #8f174f;
  --accent-soft: #f9dce9;
  --accent-glow: rgba(181, 31, 104, .16);
  --sage: #698063;
  --sage-soft: #edf3eb;
  --ink: #292629;
  --muted: #726d71;
  --line: #ead9e0;
  --paper: #fff6f9;
  --cream: #fdf0f5;
  --blush: #f8dfe9;
  --champagne: #fffaf1;
  --white: #fff;
  --shadow: 0 18px 48px rgba(72, 44, 57, .10);
  --shadow-small: 0 8px 24px rgba(72, 44, 57, .07);
  --card-glow: 0 0 0 1px rgba(255,255,255,.38), 0 18px 48px rgba(72,44,57,.12);
  --radius: 24px;
  --radius-small: 14px;
  --nav-height: 80px;
  --display: "Playfair Display", Georgia, serif;
  --body: "DM Sans", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(181, 31, 104, .14), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(105, 128, 99, .14), transparent 32%),
    linear-gradient(180deg, #fff7fa 0%, #fdebf2 44%, #fffaf4 100%);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::before {
  background:
    repeating-linear-gradient(90deg, rgba(181,31,104,.025) 0 1px, transparent 1px 9px),
    repeating-linear-gradient(0deg, rgba(105,128,99,.018) 0 1px, transparent 1px 11px);
  content: "";
  inset: 0;
  opacity: .42;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}
body > * {
  position: relative;
  z-index: 1;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3 { font-family: var(--display); line-height: 1.12; letter-spacing: -0.01em; }
h1 { font-size: clamp(3rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
h3 { font-size: 1.42rem; }
p { color: var(--muted); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.cursor-dot,
.cursor-ring {
  display: none;
}

.scroll-progress {
  background:
    linear-gradient(90deg, #ff8fbe 0%, var(--accent) 38%, #9bc183 72%, rgba(255,255,255,.9) 100%);
  box-shadow: 0 0 14px rgba(181,31,104,.28), 0 0 18px rgba(155,193,131,.2);
  height: 4px;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: calc(var(--nav-height) - 4px);
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
  z-index: 120;
}

@media (hover: hover) and (pointer: fine) {
  body.custom-cursor,
  body.custom-cursor a,
  body.custom-cursor button,
  body.custom-cursor [role="button"],
  body.custom-cursor .filter-button,
  body.custom-cursor .product-card,
  body.custom-cursor .trust-card,
  body.custom-cursor .testimonial-card,
  body.custom-cursor .quick-link-card,
  body.custom-cursor .contact-card,
  body.custom-cursor .whatsapp-float {
    cursor: none;
  }

  body.custom-cursor input,
  body.custom-cursor select,
  body.custom-cursor textarea {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: block;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: translate3d(-50%, -50%, 0);
    z-index: 9999;
  }

  .cursor-dot {
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(181,31,104,.36);
    height: 7px;
    transition: opacity .18s ease, transform .18s ease, background .18s ease;
    width: 7px;
  }

  .cursor-ring {
    border: 1px solid rgba(181,31,104,.48);
    border-radius: 50%;
    height: 38px;
    transition: opacity .18s ease, height .22s ease, width .22s ease, border-color .22s ease, background .22s ease;
    width: 38px;
  }

  body.cursor-ready .cursor-dot,
  body.cursor-ready .cursor-ring {
    opacity: 1;
  }

  body.cursor-hover .cursor-dot {
    background: var(--accent-dark);
    transform: translate3d(-50%, -50%, 0) scale(.7);
  }

  body.cursor-hover .cursor-ring {
    background: rgba(181,31,104,.08);
    border-color: rgba(181,31,104,.75);
    height: 58px;
    width: 58px;
  }

  body.cursor-down .cursor-ring {
    height: 30px;
    width: 30px;
  }
}

.container { margin: auto; max-width: 1220px; padding-inline: 24px; }
.section { padding: 104px 0; }
.section, .page-hero, .home-hero, .quick-links-section, .trust-section, .testimonials-section, .map-section {
  position: relative;
}
.section::before, .quick-links-section::before, .trust-section::before, .testimonials-section::before, .map-section::before {
  background: linear-gradient(90deg, transparent, rgba(181,31,104,.14), rgba(155,193,131,.12), transparent);
  content: "";
  height: 1px;
  left: 8%;
  position: absolute;
  right: 8%;
  top: 0;
}
.section-soft {
  background:
    radial-gradient(circle at 12% 14%, rgba(181, 31, 104, .08), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.42), rgba(248,223,233,.8));
}
.eyebrow {
  align-items: center;
  color: var(--accent);
  display: inline-flex;
  font-size: .73rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: .18em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.eyebrow::before { background: linear-gradient(90deg, var(--accent), transparent); content: ""; height: 1.5px; width: 32px; }
.section-heading { max-width: 640px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading.center .eyebrow::before { background: linear-gradient(90deg, transparent, var(--accent)); }
.section-heading p { font-size: 1.02rem; margin-top: 18px; }
.section-heading h2 { position: relative; }
.section-heading h2::after {
  background: linear-gradient(90deg, var(--accent), rgba(155,193,131,.75), transparent);
  border-radius: 999px;
  content: "";
  display: block;
  height: 3px;
  margin-top: 18px;
  width: 86px;
}
.section-heading.center h2::after { margin-inline: auto; }
.text-link { align-items: center; color: var(--accent); display: inline-flex; font-size: .82rem; font-weight: 700; gap: 7px; letter-spacing: .08em; text-transform: uppercase; }
.text-link::after { content: "\2192"; transition: transform .25s ease; }
.text-link:hover { color: var(--accent-dark); }
.text-link:hover::after { transform: translateX(4px); }

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: .83rem;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  letter-spacing: .08em;
  min-height: 52px;
  overflow: hidden;
  padding: 0 26px;
  position: relative;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease, border-color .25s ease;
  isolation: isolate;
}
.button::before { background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent); content: ""; inset: 0 auto 0 -70%; position: absolute; transform: skewX(-18deg); transition: left .55s ease; width: 48%; }
.button:hover { transform: translateY(-3px); }
.button:hover::before { left: 125%; }
.button-primary { background: linear-gradient(135deg, #d73578 0%, #b51f68 48%, var(--accent-dark) 100%); box-shadow: 0 12px 28px rgba(181, 31, 104, .26), inset 0 1px 0 rgba(255,255,255,.22); color: var(--white); }
.button-primary:hover { background: linear-gradient(135deg, #d73578, #74133f); box-shadow: 0 18px 38px rgba(181, 31, 104, .34), 0 0 0 4px rgba(181,31,104,.08); }
.button-light { background: linear-gradient(135deg, var(--white), var(--champagne)); color: var(--accent); box-shadow: 0 12px 28px rgba(72, 44, 57, .16), inset 0 1px 0 rgba(255,255,255,.5); }
.button-light:hover { box-shadow: 0 16px 34px rgba(72, 44, 57, .22); }
.button-outline { background: rgba(255,255,255,.34); border-color: rgba(181, 31, 104, .45); box-shadow: inset 0 1px 0 rgba(255,255,255,.38); color: var(--accent); }
.button-outline:hover { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); border-color: var(--accent); color: var(--white); box-shadow: 0 12px 28px rgba(181, 31, 104, .24); }
.button-small { min-height: 44px; padding: 0 20px; }

.site-header {
  backdrop-filter: saturate(140%) blur(10px);
  background:
    linear-gradient(135deg, rgba(111, 8, 52, .98), rgba(150, 18, 82, .96)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.07) 0 28px, rgba(227,78,143,.16) 28px 56px, rgba(95,6,43,.18) 56px 84px, rgba(255,255,255,.05) 84px 112px),
    repeating-linear-gradient(45deg, transparent 0 44px, rgba(255,255,255,.08) 44px 46px, transparent 46px 88px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
  position: sticky;
  top: 0;
  transition: box-shadow .3s ease, background .3s ease;
  z-index: 50;
}
.site-header::before {
  background:
    linear-gradient(135deg, rgba(255,255,255,.06) 0 25%, transparent 25% 50%, rgba(244,95,160,.14) 50% 75%, transparent 75%),
    linear-gradient(45deg, transparent 0 35%, rgba(255,255,255,.08) 35% 50%, transparent 50% 72%, rgba(195,24,103,.2) 72%);
  background-size: 120px 80px, 150px 80px;
  clip-path: none;
  content: "";
  height: 100%;
  left: 0;
  opacity: .55;
  position: absolute;
  top: 0;
  width: 100%;
}
.site-header.is-scrolled {
  background:
    linear-gradient(135deg, rgba(102, 6, 47, .99), rgba(143, 23, 79, .97)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 28px, rgba(227,78,143,.14) 28px 56px, rgba(95,6,43,.16) 56px 84px, rgba(255,255,255,.04) 84px 112px);
  box-shadow: 0 10px 30px rgba(111, 8, 52, .24);
}
.nav { align-items: center; display: flex; height: var(--nav-height); justify-content: space-between; position: relative; z-index: 1; }
.brand { align-items: center; display: inline-flex; gap: 11px; position: relative; }
.site-header .brand { background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.32); border-radius: 999px; box-shadow: 0 12px 28px rgba(0,0,0,.2); isolation: isolate; padding: 8px 18px; }
.brand img { height: 46px; object-fit: contain; transition: transform .3s ease; width: auto; }
.site-header .brand img { height: 38px; position: relative; z-index: 1; }
.brand:hover img { transform: scale(1.03); }
.brand-copy { display: none; line-height: 1; }
.brand-name { color: var(--ink); font-family: var(--display); font-size: 1.45rem; font-weight: 700; }
.brand-tagline { color: var(--accent); font-size: .56rem; font-weight: 700; letter-spacing: .15em; margin-top: 6px; text-transform: uppercase; }
.nav-menu { align-items: center; display: flex; gap: 36px; list-style: none; margin: 0; padding: 0; }
.nav-link { color: rgba(255,255,255,.78); display: inline-flex; font-size: .82rem; font-weight: 700; letter-spacing: .1em; padding: 10px 14px; position: relative; text-transform: uppercase; transition: color .25s ease, transform .25s ease; }
.nav-link::before {
  background:
    linear-gradient(135deg, rgba(255,255,255,.14) 0 50%, rgba(213,91,152,.18) 50%),
    linear-gradient(45deg, transparent 0 50%, rgba(255,255,255,.12) 50%);
  clip-path: polygon(9px 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transform: scaleX(.82);
  transition: opacity .25s ease, transform .25s ease;
  z-index: -1;
}
.nav-link::after { background: #f5c0da; bottom: 4px; content: ""; height: 1.5px; left: 14px; position: absolute; transform: scaleX(0); transform-origin: left; transition: transform .28s ease; width: calc(100% - 28px); }
.nav-link:hover, .nav-link.active { color: var(--white); transform: translateY(-1px); }
.nav-link:hover::before, .nav-link.active::before { opacity: 1; transform: scaleX(1); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.menu-toggle { background: none; border: 0; display: none; padding: 8px; }
.menu-toggle span { background: var(--ink); display: block; height: 2px; margin: 5px; transition: .25s; width: 24px; }

.page-hero {
  background:
    radial-gradient(circle at 14% 10%, rgba(181,31,104,.2), transparent 34%),
    radial-gradient(circle at 86% 88%, rgba(105,128,99,.18), transparent 42%),
    linear-gradient(135deg, #fff3f8, #f8dfe9 55%, #fff9ef);
  overflow: hidden;
  padding: 116px 0 96px;
  position: relative;
  text-align: center;
}
.page-hero::before, .page-hero::after { border: 1px solid rgba(181, 31, 104, .12); border-radius: 50%; content: ""; position: absolute; }
.page-hero::before { height: 260px; left: -100px; top: -140px; width: 260px; }
.page-hero::after { bottom: -180px; height: 320px; right: -80px; width: 320px; }
.page-hero .eyebrow { justify-content: center; }
.page-hero p { margin: 22px auto 0; max-width: 640px; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); }

.cta-band {
  background: linear-gradient(120deg, var(--accent), var(--accent-dark));
  color: var(--white);
  overflow: hidden;
  padding: 72px 0;
  position: relative;
}
.cta-band::before { background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.18), transparent 55%); content: ""; inset: 0; position: absolute; }
.cta-band::after { border: 1px solid rgba(255,255,255,.22); border-radius: 50%; content: ""; height: 280px; position: absolute; right: -70px; top: -110px; width: 280px; }
.cta-inner { align-items: center; display: flex; gap: 30px; justify-content: space-between; position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3.1rem); }
.cta-band p { color: rgba(255,255,255,.82); margin-top: 10px; }

.site-footer { background: #221d20; color: var(--white); padding: 70px 0 24px; position: relative; }
.site-footer::before { background: linear-gradient(90deg, var(--accent), var(--sage)); content: ""; height: 3px; left: 0; position: absolute; right: 0; top: 0; }
.footer-grid { display: grid; gap: 44px; grid-template-columns: 1.6fr .8fr .9fr; }
.footer-brand .brand-copy { display: grid; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-tagline { color: #9bc183; }
.footer-brand p { color: rgba(255,255,255,.6); margin-top: 18px; max-width: 330px; }
.footer-title { color: var(--white); font-family: var(--body); font-size: .75rem; letter-spacing: .14em; margin-bottom: 18px; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; list-style: none; margin: 0; padding: 0; }
.footer-links a, .footer-contact p { color: rgba(255,255,255,.64); font-size: .9rem; transition: color .2s ease; }
.footer-links a:hover, .footer-contact a:hover { color: var(--white); }
.footer-contact p + p { margin-top: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: .76rem; margin-top: 50px; padding-top: 22px; }

.whatsapp-float {
  align-items: center;
  background: #25a35a;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 12px 26px rgba(24, 102, 65, .34);
  color: var(--white);
  display: flex;
  height: 58px;
  justify-content: center;
  position: fixed;
  right: 24px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  width: 58px;
  z-index: 40;
}
.whatsapp-float::after { animation: ws-pulse 2.6s ease-out infinite; border: 2px solid #25a35a; border-radius: 50%; content: ""; inset: 0; position: absolute; }
.whatsapp-float:hover { background: #1d8a4b; transform: translateY(-4px) scale(1.04); }
.whatsapp-float svg { fill: currentColor; height: 26px; position: relative; width: 26px; z-index: 1; }
@keyframes ws-pulse { 0% { opacity: .55; transform: scale(1); } 70%,100% { opacity: 0; transform: scale(1.5); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .85s cubic-bezier(.2,.8,.2,1), transform .85s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 820px) {
  .section { padding: 80px 0; }
  .site-header { overflow: visible; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav-menu {
    align-items: stretch;
    background:
      linear-gradient(135deg, rgba(102, 6, 47, .99), rgba(143, 23, 79, .97)),
      repeating-linear-gradient(135deg, rgba(255,255,255,.06) 0 28px, rgba(227,78,143,.14) 28px 56px, rgba(95,6,43,.16) 56px 84px);
    border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 16px 34px rgba(111,8,52,.28);
    display: grid;
    gap: 0;
    left: 0;
    opacity: 0;
    padding: 16px 24px 24px;
    pointer-events: none;
    position: absolute;
    top: var(--nav-height);
    transform: translateY(-8px);
    transition: .25s;
    width: 100%;
    z-index: 3;
  }
  .nav-menu.open { opacity: 1; pointer-events: auto; transform: none; }
  .nav-link { display: flex; padding: 14px 12px; width: max-content; }
  .nav-link::after { bottom: 8px; left: 12px; width: 36px; }
  .menu-toggle span { background: var(--white); }
  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
  .container { padding-inline: 18px; }
  .brand img { height: 40px; }
  .site-header .brand { padding: 7px 14px; }
  .site-header .brand img { height: 34px; }
  .page-hero { padding: 84px 0 70px; }
  .button { min-height: 48px; padding-inline: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
