:root {
  --bg: #f8f2ed;
  --ink: #2a1f2d;
  --accent: #c66d7f;
  --accent-2: #b88646;
  --card: #fff9f6;
  --line: #3a2a4020;
  --muted: #6d5a70;
  --radius: 20px;
  --shadow: 0 20px 40px #3e274213;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.page-bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 8% 12%, #b8864621 0, transparent 35%),
    radial-gradient(circle at 86% 7%, #c66d7f26 0, transparent 32%),
    radial-gradient(circle at 90% 90%, #2a1f2d1a 0, transparent 30%);
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: #f8f2edcc;
  border-bottom: 1px solid #ffffff80;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
  gap: 16px;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-menu a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.nav-menu a:not(.btn) {
  position: relative;
}

.nav-menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.25s ease;
}

.nav-menu a:not(.btn):hover::after,
.nav-menu a:not(.btn):focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 20px 0 56px;
}

.hero-content {
  min-width: 0;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #c66d7f1a;
  color: #8f3f52;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.88rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

h1 {
  margin-top: 16px;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  max-width: 14ch;
}

h1 span {
  color: var(--accent);
}

.hero-text {
  max-width: 58ch;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 20px #c66d7f4a;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px #c66d7f59;
}

.btn:focus-visible,
.whatsapp-float:focus-visible,
.faq summary:focus-visible {
  outline: 3px solid #8f6431;
  outline-offset: 3px;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 0.95rem;
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero-metrics {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.hero-media {
  margin: 0;
  border-radius: 0;
  overflow: visible;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px #0818362b);
}

section {
  margin-bottom: 84px;
  padding-top:100px;
}

.services .cards,
.testimonials .quotes {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card,
blockquote,
.lead-form,
.highlight {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  padding: 22px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: stretch;
}

.about p {
  color: var(--muted);
}

.about-points {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.about-cta {
  margin-top: 18px;
}

.highlight {
  padding: 26px;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #0ea5a60f, #ed6a5a17);
  font-weight: 700;
}

.quotes blockquote {
  margin: 0;
  padding: 20px;
  color: var(--muted);
}

.coverage > p,
.process > p,
.faq > p {
  max-width: 72ch;
  color: var(--muted);
}

.coverage-list {
  list-style: none;
  margin: 22px 0 10px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.coverage-list li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 14px 16px;
  font-weight: 700;
}

.coverage-note {
  color: var(--muted);
  margin-top: 8px;
}

.process-steps {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.step-card h3 {
  margin-bottom: 10px;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
  font-weight: 800;
  background: #b886461f;
  color: #8f6431;
}

.gallery > p {
  max-width: 72ch;
  color: var(--muted);
}

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

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:nth-child(2) img,
.gallery-item:nth-child(5) img {
  min-height: 280px;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

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

.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 14px 16px;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.faq details p {
  margin: 10px 0 0;
  color: var(--muted);
}

.faq .btn {
  margin-top: 18px;
}

.map > p {
  max-width: 72ch;
  color: var(--muted);
}

.map-embed {
  margin-top: 22px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

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

cite {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.lead-form {
  padding: 22px;
  display: grid;
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid #a1abc43f;
  border-radius: 12px;
  padding: 12px;
  font: inherit;
  background: #fff;
}

.lead-form small {
  color: var(--muted);
}

.site-footer {
  padding: 20px 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-social-title {
  width: 100%;
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.footer-social a {
  text-decoration: none;
  color: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff9f6;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-1px);
  border-color: #c66d7f66;
  color: var(--accent);
  background: #ffffff;
}

.footer-social a:focus-visible {
  outline: 3px solid #8f6431;
  outline-offset: 3px;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  box-shadow: 0 14px 28px #1c9e4c4a;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px #1c9e4c59;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .js .reveal,
  .js .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn,
  .gallery-item img,
  .whatsapp-float {
    transition: none;
  }
}

@media (max-width: 900px) {
  .nav {
    position: relative;
    padding: 8px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff9f6;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 14px;
    display: grid;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .nav-open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a:not(.btn)::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
  }

  .hero,
  .services .cards,
  .coverage-list,
  .process-steps,
  .testimonials .quotes,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 62px;
  }
}
 /* media query  */
@media (max-width: 480px) {
  .container {
    width: min(1100px, 94%);
  }

  .nav {
    gap: 10px;
  }

  .brand {
    font-size: 1.2rem;
  }

  .hero {
    gap: 18px;
    padding: 48px 0 42px;
  }

  h1 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions {
    margin: 18px 0;
  }

  .btn,
  .btn-sm {
    width: 100%;
    padding: 11px 16px;
  }

  .site-header .nav .btn-sm {
    width: 100%;
  }

  section {
    margin-bottom: 64px;
  }

  .card,
  .quotes blockquote,
  .lead-form,
  .highlight {
    padding: 18px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img,
  .gallery-item:nth-child(2) img,
  .gallery-item:nth-child(5) img {
    min-height: 220px;
  }

  .map-embed iframe {
    min-height: 300px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }

  .site-footer {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-social-title {
    text-align: center;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}
