/* ── VARIABLES ── */
:root {
  --black:   #111111;
  --charcoal:#1c1c1c;
  --bronze:  #c9924a;
  --gold:    #d4a855;
  --green:   #6aab6e;
  --white:   #f5f2ee;
  --muted:   #888888;
  --wa:      #25D366;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--bronze); border-radius: 2px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(17,17,17,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,146,74,0.15);
}
.nav-logo {
  text-decoration: none;
  display: flex; align-items: center;
}
.nav-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--white);
  font-size: .82rem; letter-spacing: .1em; text-transform: uppercase;
  transition: color .25s;
}
.nav-links a:hover { color: var(--bronze); }
.nav-cta {
  background: var(--wa); color: #fff;
  padding: .55rem 1.4rem; border-radius: 2rem;
  font-size: .82rem; font-weight: 600; letter-spacing: .05em;
  text-decoration: none; transition: opacity .25s;
  display: flex; align-items: center; gap: .5rem;
}
.nav-cta:hover { opacity: .85; }

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: .4rem; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(17,17,17,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,146,74,.15);
  padding: 1.5rem 2rem; z-index: 99;
  flex-direction: column; gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--white);
  font-size: 1rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .5rem 0; border-bottom: 1px solid rgba(201,146,74,.08);
  transition: color .25s;
}
.mobile-menu a:hover { color: var(--bronze); }
.mobile-menu .mobile-wa {
  background: var(--wa); color: #fff;
  padding: .8rem 1.5rem; border-radius: 2rem;
  font-size: .9rem; font-weight: 600; text-align: center;
  border: none; margin-top: .5rem;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background:
    linear-gradient(160deg, rgba(106,171,110,.08) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(17,17,17,0) 60%, var(--black) 100%),
    var(--charcoal);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,146,74,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,146,74,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(106,171,110,.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 1.5rem;
  animation: fadeUp .9s ease both;
}
.hero-badge {
  display: inline-block;
  border: 1px solid rgba(201,146,74,.4);
  color: var(--bronze); font-size: .75rem; letter-spacing: .2em;
  text-transform: uppercase; padding: .4rem 1.2rem; border-radius: 2rem;
  margin-bottom: 2rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05; font-weight: 900;
  margin-bottom: 1.2rem;
}
.hero-title .line-bronze { color: var(--bronze); display: block; }
.hero-title .line-green  { color: var(--green);  display: block; }
.hero-tagline {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(245,242,238,.65); font-weight: 300;
  letter-spacing: .04em; margin-bottom: 2.8rem; max-width: 480px; margin-inline: auto;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-wa {
  background: var(--wa); color: #fff;
  padding: .9rem 2rem; border-radius: 2rem;
  font-size: .9rem; font-weight: 600; letter-spacing: .06em;
  text-decoration: none; display: flex; align-items: center; gap: .55rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(37,211,102,.25);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.35); }
.btn-outline {
  border: 1px solid rgba(201,146,74,.5); color: var(--bronze);
  padding: .9rem 2rem; border-radius: 2rem;
  font-size: .9rem; font-weight: 500; letter-spacing: .06em;
  text-decoration: none; transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--bronze); color: var(--black); }
.hero-stats {
  display: flex; gap: 3rem; justify-content: center;
  margin-top: 4rem; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--bronze);
}
.stat-label { font-size: .78rem; color: var(--muted); letter-spacing: .12em; text-transform: uppercase; margin-top: .2rem; }

/* ── SECTION BASE ── */
section { padding: 7rem 3rem; }
.section-tag {
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--green); margin-bottom: .8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  line-height: 1.15; margin-bottom: 1.2rem;
}
.section-title em { color: var(--bronze); font-style: normal; }
.section-sub {
  font-size: 1rem; color: rgba(245,242,238,.6);
  max-width: 520px; line-height: 1.75;
}
.container { max-width: 1200px; margin: 0 auto; }

/* ── ABOUT ── */
#about { background: var(--charcoal); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, #222 0%, #2a2a2a 100%);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,146,74,.15);
  position: relative; overflow: hidden;
}
.about-img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(106,171,110,.06) 0%, rgba(201,146,74,.06) 100%);
}
.about-img-placeholder .placeholder-icon { font-size: 5rem; opacity: .18; }
.about-accent {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 160px; height: 160px;
  background: linear-gradient(135deg, var(--bronze), var(--gold));
  border-radius: 2px; z-index: -1; opacity: .35;
}
.about-pills { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 2rem; }
.pill {
  border: 1px solid rgba(201,146,74,.3);
  color: var(--bronze); padding: .4rem 1rem;
  border-radius: 2rem; font-size: .8rem; letter-spacing: .08em;
}
.pill.green { border-color: rgba(106,171,110,.4); color: var(--green); }

/* ── SERVICES ── */
#services { background: var(--black); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px; margin-top: 3.5rem;
  border: 1.5px solid rgba(201,146,74,.12);
}
.service-card {
  padding: 2.5rem 2rem;
  background: var(--charcoal);
  border: 1.5px solid rgba(201,146,74,.07);
  transition: background .25s, border-color .25s;
  cursor: default;
}
.service-card:hover { background: #232323; border-color: rgba(201,146,74,.25); }
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700; margin-bottom: .6rem; color: var(--white);
}
.service-desc { font-size: .88rem; color: rgba(245,242,238,.55); line-height: 1.7; }

/* ── WORK / GALLERY ── */
#work { background: var(--charcoal); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-top: 3.5rem;
}
.gallery-item {
  background: #222;
  border-radius: 2px; overflow: hidden;
  position: relative; aspect-ratio: 1/1;
  border: 1px solid rgba(201,146,74,.1);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem;
  color: rgba(245,242,238,.15); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
}
.gallery-placeholder .g-icon { font-size: 2.5rem; opacity: .2; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.85) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-label { font-size: .82rem; color: var(--bronze); letter-spacing: .08em; }
.work-cta { text-align: center; margin-top: 3rem; }

/* ── BEFORE & AFTER SLIDER ── */
#before-after { background: var(--black); }
.ba-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem; margin-top: 3.5rem;
}
.ba-card { position: relative; border-radius: 2px; overflow: hidden; border: 1px solid rgba(201,146,74,.15); }
.ba-slider-wrap {
  position: relative; width: 100%; aspect-ratio: 4/3; user-select: none; cursor: ew-resize;
}
.ba-after, .ba-before {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.ba-after {
  background: linear-gradient(135deg, #1a2e1a 0%, #243824 100%);
  z-index: 1;
}
.ba-before {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 3px; background: var(--bronze); z-index: 3;
  display: flex; align-items: center; justify-content: center;
}
.ba-handle-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bronze);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; color: var(--black); font-weight: 700;
  box-shadow: 0 2px 12px rgba(0,0,0,.5);
  flex-shrink: 0;
}
.ba-labels {
  display: flex; justify-content: space-between;
  padding: .8rem 1rem;
  background: var(--charcoal);
}
.ba-label { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; }
.ba-label.before { color: var(--muted); }
.ba-label.after  { color: var(--green); }
.ba-title {
  padding: .8rem 1rem 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--white);
  background: var(--charcoal);
  border-top: 1px solid rgba(201,146,74,.1);
}

/* ── COVERAGE AREA ── */
#coverage { background: var(--charcoal); }
.coverage-intro { max-width: 600px; margin-bottom: 3rem; }
.coverage-map-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.coverage-map {
  background: #1e1e1e; border: 1px solid rgba(201,146,74,.15);
  border-radius: 4px; aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.coverage-map-bg {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 45% 50%, rgba(106,171,110,.12) 0%, rgba(106,171,110,.04) 40%, transparent 65%);
}
.coverage-map-ring {
  position: absolute;
  width: 65%; aspect-ratio: 1/1;
  border: 1.5px dashed rgba(106,171,110,.35);
  border-radius: 50%;
  top: 50%; left: 45%; transform: translate(-50%,-50%);
}
.coverage-map-dot {
  position: absolute;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--bronze);
  box-shadow: 0 0 0 4px rgba(201,146,74,.25);
  top: 50%; left: 45%; transform: translate(-50%,-50%);
  z-index: 2;
}
.coverage-map-label {
  position: absolute; top: calc(50% - 28px); left: calc(45% + 12px);
  font-size: .75rem; color: var(--bronze); letter-spacing: .08em; font-weight: 600;
  z-index: 2;
}
.coverage-radius-label {
  position: absolute; bottom: 18%; left: 50%;
  transform: translateX(-50%);
  font-size: .7rem; color: rgba(106,171,110,.6); letter-spacing: .12em; text-transform: uppercase;
}
.coverage-areas { display: flex; flex-direction: column; gap: 1rem; }
.coverage-areas h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; margin-bottom: .5rem; color: var(--white);
}
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.area-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .88rem; color: rgba(245,242,238,.7);
}
.area-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.coverage-note {
  margin-top: 1.5rem; padding: 1rem 1.2rem;
  background: rgba(106,171,110,.06);
  border: 1px solid rgba(106,171,110,.2);
  border-radius: 4px;
  font-size: .85rem; color: rgba(245,242,238,.6); line-height: 1.6;
}

/* ── TESTIMONIALS ── */
#testimonials { background: var(--black); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin-top: 3.5rem;
}
.review-card {
  background: var(--charcoal);
  border: 1px solid rgba(201,146,74,.12);
  border-radius: 2px; padding: 2rem;
  transition: border-color .25s;
}
.review-card:hover { border-color: rgba(201,146,74,.3); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em; }
.review-text {
  font-size: .92rem; line-height: 1.8;
  color: rgba(245,242,238,.7); margin-bottom: 1.4rem; font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: .8rem; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; color: var(--black); flex-shrink: 0;
}
.reviewer-name { font-size: .9rem; font-weight: 600; }
.reviewer-loc { font-size: .75rem; color: var(--muted); }

/* ── FAQ ── */
#faq { background: var(--charcoal); }
.faq-list { margin-top: 3rem; max-width: 780px; }
.faq-item { border-bottom: 1px solid rgba(201,146,74,.12); overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 0; cursor: pointer; text-align: left;
  color: var(--white); font-family: 'Barlow', sans-serif;
  font-size: 1rem; font-weight: 500; letter-spacing: .02em;
  transition: color .25s; gap: 1rem;
}
.faq-question:hover { color: var(--bronze); }
.faq-icon { font-size: 1.3rem; color: var(--bronze); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .9rem; color: rgba(245,242,238,.6); line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 1.4rem; }

/* ── CTA FINAL ── */
#cta-final {
  background: var(--black);
  text-align: center; padding: 8rem 3rem;
  position: relative; overflow: hidden;
}
#cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(106,171,110,.08) 0%, transparent 65%),
    linear-gradient(135deg, rgba(201,146,74,.04) 0%, transparent 60%);
}
.cta-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; letter-spacing: .15em; color: var(--bronze); margin-bottom: 1.5rem;
}
.cta-logo span { color: var(--green); }
#cta-final .section-title { position: relative; }
.cta-desc {
  font-size: 1rem; color: rgba(245,242,238,.55);
  max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.75;
}
.cta-contacts {
  display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem;
}
.cta-contact-item { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--muted); }
.cta-contact-item a { color: var(--bronze); text-decoration: none; }
.cta-contact-item a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(201,146,74,.1);
  padding: 2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: .95rem; letter-spacing: .12em; color: var(--bronze); }
.footer-logo span { color: var(--green); }
.footer-copy { font-size: .75rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: .75rem; color: var(--muted); text-decoration: none; transition: color .25s; }
.footer-links a:hover { color: var(--bronze); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1.7rem;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  animation: pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(37,211,102,.55); animation: none; }

/* ── COOKIE BANNER (GDPR) ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  background: rgba(28,28,28,.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,146,74,.2);
  padding: 1.2rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
#cookie-banner.hidden { display: none; }
.cookie-text { font-size: .82rem; color: rgba(245,242,238,.65); max-width: 680px; line-height: 1.6; }
.cookie-text a { color: var(--bronze); text-decoration: none; }
.cookie-btns { display: flex; gap: .8rem; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--bronze); color: var(--black);
  padding: .5rem 1.4rem; border-radius: 2rem;
  font-size: .82rem; font-weight: 600; border: none; cursor: pointer; transition: opacity .2s;
}
.btn-cookie-accept:hover { opacity: .85; }
.btn-cookie-decline {
  background: none; border: 1px solid rgba(245,242,238,.2);
  color: var(--muted); padding: .5rem 1.2rem; border-radius: 2rem;
  font-size: .82rem; cursor: pointer; transition: border-color .2s, color .2s;
}
.btn-cookie-decline:hover { border-color: var(--muted); color: var(--white); }

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,146,74,.3), transparent);
  margin: 0 3rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 40px rgba(37,211,102,.7); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 5rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 1/1; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1/1; }
  .coverage-map-wrap { grid-template-columns: 1fr; }
  .coverage-map { max-width: 340px; margin: 0 auto; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .area-list { grid-template-columns: 1fr; }
  #cookie-banner { flex-direction: column; align-items: flex-start; }
}
