:root{
  --ink:#111111;
  --cream:#FFFFFF;
  --gold:#F2C94C;
  --green-deep:#0A0A0A;
  --green-mid:#1A1A1A;
  --line:rgba(0,0,0,0.12);
  --white:#FFFFFF;

  --display:'Fraunces', serif;
  --body:'Manrope', sans-serif;
}

*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--body);
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeUp{
  from{opacity:0; transform:translateY(28px);}
  to{opacity:1; transform:translateY(0);}
}
@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}
@keyframes floatSlow{
  0%, 100%{transform:translateY(0px);}
  50%{transform:translateY(-14px);}
}
@keyframes pulseRing{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,0.45);}
  70%{box-shadow:0 0 0 14px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}
@keyframes drawLine{
  from{width:0;}
  to{width:34px;}
}
@keyframes shimmer{
  0%{background-position:-200% 0;}
  100%{background-position:200% 0;}
}

.reveal{
  opacity:0;
  transform:translateY(32px);
  transition:opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.in-view{
  opacity:1;
  transform:translateY(0);
}
.reveal-stagger > *{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
}
.reveal-stagger.in-view > *{
  opacity:1;
  transform:translateY(0);
}
.reveal-stagger.in-view > *:nth-child(1){transition-delay:.05s;}
.reveal-stagger.in-view > *:nth-child(2){transition-delay:.12s;}
.reveal-stagger.in-view > *:nth-child(3){transition-delay:.19s;}
.reveal-stagger.in-view > *:nth-child(4){transition-delay:.26s;}
.reveal-stagger.in-view > *:nth-child(5){transition-delay:.33s;}
.reveal-stagger.in-view > *:nth-child(6){transition-delay:.4s;}

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-stagger > *{
    opacity:1 !important;
    transform:none !important;
    transition:none !important;
  }
  *{animation:none !important;}
}

.container{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

/* ---------- HEADER ---------- */
header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  background:rgba(10,10,10,0.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:background .35s, border-color .35s, box-shadow .35s;
  color:#FFFFFF;
}
header.scrolled{
  background:rgba(10,10,10,0.96);
  border-bottom-color:rgba(255,255,255,0.08);
  box-shadow:0 6px 24px -16px rgba(0,0,0,0.5);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 24px;
  max-width:1180px;
  margin:0 auto;
}
.logo{
  font-family:var(--display);
  font-weight:700;
  font-size:22px;
  letter-spacing:0.02em;
  display:flex;
  align-items:center;
  gap:10px;
}
.logo span{color:var(--gold);}
.logo img{
  height:64px;
  width:auto;
  display:block;
  border-radius:8px;
}
.nav-links{
  display:flex;
  gap:32px;
  font-size:14px;
  font-weight:600;
  letter-spacing:0.04em;
  text-transform:uppercase;
}
.nav-links a{
  position:relative;
  padding-bottom:4px;
  transition:color .2s;
}
.nav-links a:hover{color:var(--gold);}
.nav-cta{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--gold);
  color:var(--ink);
  padding:11px 22px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  letter-spacing:0.02em;
  transition:background .25s, transform .2s;
}
.nav-cta:hover{background:#FFFFFF; color:var(--ink); transform:translateY(-1px);}
.menu-toggle{display:none;}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:100px;
  overflow:hidden;
  background:
    radial-gradient(1100px 700px at 78% 18%, rgba(242,201,76,0.16), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, #F7F7F7 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:60px;
  align-items:center;
  width:100%;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--green-mid);
  margin-bottom:24px;
  opacity:0;
  animation:fadeUp .8s cubic-bezier(.22,.61,.36,1) .1s forwards;
}
.eyebrow::before{
  content:'';
  width:0;
  height:1px;
  background:var(--gold);
  animation:drawLine .7s cubic-bezier(.22,.61,.36,1) .5s forwards;
}
.reveal .eyebrow::before, .reveal-stagger .eyebrow::before{
  width:34px;
  animation:none;
}
.hero h1{
  font-family:var(--display);
  font-size:clamp(40px, 6vw, 72px);
  line-height:1.04;
  font-weight:600;
  letter-spacing:-0.01em;
  margin-bottom:24px;
  opacity:0;
  animation:fadeUp .9s cubic-bezier(.22,.61,.36,1) .22s forwards;
}
.hero h1 em{
  font-style:italic;
  color:var(--green-deep);
  position:relative;
  display:inline-block;
}
.hero h1 em::after{
  content:'';
  position:absolute;
  left:0; right:0; bottom:6px;
  height:10px;
  background:rgba(242,201,76,0.35);
  z-index:-1;
}
.hero p.lead{
  font-size:18px;
  line-height:1.7;
  color:#3C4944;
  max-width:480px;
  margin-bottom:36px;
  opacity:0;
  animation:fadeUp .9s cubic-bezier(.22,.61,.36,1) .34s forwards;
}
.hero-actions{
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  opacity:0;
  animation:fadeUp .9s cubic-bezier(.22,.61,.36,1) .46s forwards;
}
.btn-primary{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--gold);
  color:var(--ink);
  padding:18px 32px;
  border-radius:999px;
  font-weight:700;
  font-size:15px;
  letter-spacing:0.02em;
  box-shadow:0 12px 30px -10px rgba(242,201,76,0.6);
  transition:transform .25s, box-shadow .25s, background .25s;
}
.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px -10px rgba(242,201,76,0.7);
  background:#FFFFFF;
}
.btn-primary svg{width:18px;height:18px;flex-shrink:0;}
.hero-meta{
  display:flex;
  align-items:center;
  gap:14px;
}
.hero-meta .num{
  font-family:var(--display);
  font-size:34px;
  font-weight:700;
  color:var(--green-deep);
  line-height:1;
}
.hero-meta .label{
  font-size:13px;
  color:#5B6A64;
  line-height:1.3;
  max-width:140px;
}

/* Hero visual */
.hero-visual{
  position:relative;
  aspect-ratio:4/5;
  border-radius:28px;
  overflow:hidden;
  background:var(--green-deep);
  box-shadow:0 30px 60px -25px rgba(15,27,23,0.45);
  opacity:0;
  animation:fadeIn 1.1s ease .3s forwards, floatSlow 7s ease-in-out 1.4s infinite;
  will-change:transform;
}
.hero-visual img{
  width:100%;height:100%;object-fit:cover;
  opacity:0.92;
  transition:transform .9s cubic-bezier(.22,.61,.36,1);
}
.hero-visual:hover img{
  transform:scale(1.05);
}
.hero-badge{
  position:absolute;
  bottom:24px; left:24px; right:24px;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(8px);
  border-radius:18px;
  padding:18px 20px;
  display:flex;
  align-items:center;
  gap:14px;
  opacity:0;
  animation:fadeUp .8s cubic-bezier(.22,.61,.36,1) .9s forwards;
}
.hero-badge .dot{
  width:42px;height:42px;
  border-radius:50%;
  background:var(--gold);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  transition:transform .4s cubic-bezier(.34,1.56,.64,1);
}
.hero-badge:hover .dot{
  transform:rotate(-12deg) scale(1.1);
}
.hero-badge .dot svg{width:20px;height:20px;color:var(--green-deep);}
.hero-badge strong{
  font-family:var(--display);
  font-size:17px;
  display:block;
  margin-bottom:2px;
}
.hero-badge span{font-size:13px; color:#5B6A64;}

/* ---------- TRUST STRIP ---------- */
.trust-strip{
  background:var(--green-deep);
  color:var(--cream);
  padding:18px 0;
}
.trust-strip .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  font-size:13px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  font-weight:600;
}
.trust-strip .container > div{
  display:flex;
  align-items:center;
  gap:10px;
  opacity:0.92;
}
.trust-strip svg{width:16px;height:16px;color:var(--gold); flex-shrink:0;}

/* ---------- SECTION HEADERS ---------- */
section{padding:110px 0;}
.section-head{
  max-width:640px;
  margin-bottom:64px;
}
.section-head .eyebrow{margin-bottom:18px;}
.section-head h2{
  font-family:var(--display);
  font-size:clamp(32px, 4.2vw, 48px);
  font-weight:600;
  line-height:1.15;
  margin-bottom:18px;
}
.section-head p{
  font-size:17px;
  line-height:1.7;
  color:#566963;
}
.center{text-align:center; margin-left:auto; margin-right:auto;}

/* ---------- SERVICES ---------- */
.services{background:var(--cream);}
.service-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
}
.service-card{
  background:var(--cream);
  padding:40px 32px;
  transition:background .3s, transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s;
  position:relative;
  z-index:1;
}
.service-card:hover{
  background:#FFFBEA;
  transform:translateY(-6px);
  box-shadow:0 18px 40px -24px rgba(0,0,0,0.25);
  z-index:2;
}
.service-num{
  font-family:var(--display);
  font-size:14px;
  font-weight:700;
  color:var(--gold);
  letter-spacing:0.1em;
  margin-bottom:20px;
  display:block;
  transition:transform .35s cubic-bezier(.22,.61,.36,1);
}
.service-card:hover .service-num{
  transform:translateX(4px);
}
.service-card h3{
  font-family:var(--display);
  font-size:23px;
  font-weight:600;
  margin-bottom:12px;
}
.service-card p{
  font-size:15px;
  line-height:1.65;
  color:#5B6A64;
}

/* ---------- ABOUT ---------- */
.about{background:var(--green-deep); color:var(--cream); position:relative; overflow:hidden;}
.about-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:64px;
  align-items:center;
  position:relative;
  z-index:1;
}
.about-visual{
  border-radius:24px;
  overflow:hidden;
  aspect-ratio:3/4;
  background:#0A0A0A;
}
.about-visual img{width:100%;height:100%;object-fit:contain;}
.about-content .eyebrow{color:var(--gold);}
.about-content .eyebrow::before{background:var(--cream);}
.about-content h2{
  font-family:var(--display);
  font-size:clamp(30px, 4vw, 44px);
  font-weight:600;
  line-height:1.18;
  margin-bottom:22px;
}
.about-content p{
  font-size:16px;
  line-height:1.75;
  color:rgba(255,255,255,0.78);
  margin-bottom:18px;
  max-width:520px;
}
.about-stats{
  display:flex;
  gap:48px;
  margin-top:36px;
  flex-wrap:wrap;
}
.about-stats div strong{
  display:block;
  font-family:var(--display);
  font-size:40px;
  font-weight:700;
  color:var(--gold);
  line-height:1;
  margin-bottom:6px;
}
.about-stats div span{
  font-size:13px;
  color:rgba(255,255,255,0.6);
  letter-spacing:0.04em;
}

/* ---------- GALLERY ---------- */
.gallery{background:var(--cream);}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-template-rows:repeat(2, 220px);
  gap:16px;
}
.gallery-item{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  background:#0A0A0A;
  transition:transform .4s cubic-bezier(.22,.61,.36,1), box-shadow .4s;
}
.gallery-item:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px -24px rgba(0,0,0,0.4);
  z-index:2;
}
.gallery-item img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .7s cubic-bezier(.22,.61,.36,1), filter .4s;
  filter:saturate(0.95);
}
.gallery-item:hover img{
  transform:scale(1.08);
  filter:saturate(1.05);
}
.gallery-tall{
  grid-row:span 2;
}
.gallery-tag{
  position:absolute;
  bottom:14px; left:14px;
  background:rgba(10,10,10,0.65);
  backdrop-filter:blur(6px);
  color:#FFFFFF;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  padding:8px 14px;
  border-radius:999px;
  transition:background .3s, color .3s;
}
.gallery-item:hover .gallery-tag{
  background:var(--gold);
  color:var(--ink);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials{background:#F7F7F7;}
.testi-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}
.testi-card{
  background:var(--cream);
  border:1px solid var(--line);
  border-radius:18px;
  padding:32px;
  transition:transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s, border-color .35s;
}
.testi-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px -24px rgba(15,27,23,0.3);
  border-color:rgba(242,201,76,0.4);
}
.testi-stars{
  display:flex;
  gap:4px;
  margin-bottom:18px;
}
.testi-stars svg{width:16px;height:16px;color:var(--gold);}
.testi-card p{
  font-size:15px;
  line-height:1.7;
  color:#3C4944;
  margin-bottom:24px;
}
.testi-author{
  display:flex;
  align-items:center;
  gap:12px;
}
.testi-avatar{
  width:44px;height:44px;
  border-radius:50%;
  background:var(--green-deep);
  color:var(--gold);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--display);
  font-weight:700;
  font-size:16px;
  flex-shrink:0;
}
.testi-author strong{
  display:block;
  font-size:14px;
  font-weight:700;
}
.testi-author span{
  font-size:13px;
  color:#5B6A64;
}

/* ---------- FAQ ---------- */
.faq{background:var(--cream);}
.faq-list{
  border-top:1px solid var(--line);
}
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:26px 0;
  background:none;
  border:none;
  text-align:left;
  cursor:pointer;
  font-family:var(--display);
  font-size:19px;
  font-weight:600;
  color:var(--ink);
}
.faq-question .plus{
  flex-shrink:0;
  width:28px;height:28px;
  border-radius:50%;
  border:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;
  position:relative;
  transition:transform .3s, background .3s;
}
.faq-question .plus::before, .faq-question .plus::after{
  content:'';
  position:absolute;
  background:var(--ink);
  transition:transform .3s, opacity .3s;
}
.faq-question .plus::before{width:11px; height:1.5px;}
.faq-question .plus::after{width:1.5px; height:11px;}
  .faq-item.open .faq-question .plus{background:var(--green-deep); border-color:var(--green-deep);}
.faq-item.open .faq-question .plus::before, .faq-item.open .faq-question .plus::after{background:var(--cream);}
.faq-item.open .faq-question .plus::after{transform:scaleY(0);}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}
.faq-answer p{
  font-size:15px;
  line-height:1.75;
  color:#5B6A64;
  padding-bottom:26px;
  max-width:720px;
}

/* ---------- CTA BAND ---------- */
.cta-band{
  background:var(--green-deep);
  color:var(--cream);
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:'';
  position:absolute;
  bottom:-220px; left:50%;
  transform:translateX(-50%);
  width:600px; height:600px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(242,201,76,0.16), transparent 70%);
}
.cta-band .inner{position:relative; z-index:1;}
.cta-band .eyebrow{justify-content:center; color:var(--gold);}
.cta-band .eyebrow::before{display:none;}
.cta-band h2{
  font-family:var(--display);
  font-size:clamp(32px, 5vw, 56px);
  font-weight:600;
  line-height:1.15;
  margin-bottom:24px;
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}
.cta-band p{
  font-size:17px;
  color:rgba(255,255,255,0.7);
  max-width:520px;
  margin:0 auto 40px;
}
.cta-band .btn-primary:hover{background:#FFFFFF; color:var(--ink);}

/* ---------- FOOTER ---------- */
footer{
  background:#0A0A0A;
  color:rgba(255,255,255,0.7);
  padding:64px 0 32px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:48px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-logo{
  font-family:var(--display);
  font-weight:700;
  font-size:24px;
  color:var(--cream);
  margin-bottom:16px;
  display:block;
}
.footer-logo span{color:var(--gold);}
.footer-logo img{
  height:150px;
  width:auto;
  display:block;
  margin-bottom:8px;
  border-radius:10px;
}
.footer-grid p{font-size:14px; line-height:1.7; max-width:320px;}
.footer-col h4{
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:0.12em;
  color:var(--cream);
  margin-bottom:20px;
  font-weight:700;
}
.footer-col a, .footer-col div{
  display:block;
  font-size:14px;
  margin-bottom:12px;
  transition:color .2s;
}
.footer-col a:hover{color:var(--gold);}
.footer-bottom{
  padding-top:28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  font-size:13px;
  color:rgba(255,255,255,0.45);
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float{
  position:fixed;
  bottom:24px; right:24px;
  z-index:90;
  width:60px; height:60px;
  border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 30px -8px rgba(0,0,0,0.4);
  transition:transform .25s;
  animation:pulseRing 2.6s ease-out infinite;
  opacity:0;
  animation:fadeIn .6s ease 1.2s forwards, pulseRing 2.6s ease-out 1.8s infinite;
}
.whatsapp-float:hover{transform:scale(1.08); animation-play-state:paused;}
.whatsapp-float svg{width:30px; height:30px; color:#fff;}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px){
  .nav-links{display:none;}
  .menu-toggle{display:block; cursor:pointer; background:none; border:none;}
  .menu-toggle svg{width:26px;height:26px;}

  .hero-grid{grid-template-columns:1fr; text-align:left;}
  .hero-visual{order:-1; max-height:420px;}
  .hero p.lead{max-width:100%;}

  .service-grid{grid-template-columns:1fr;}
  .about-grid{grid-template-columns:1fr;}
  .about-visual{max-height:380px;}
  .gallery-grid{grid-template-columns:repeat(2, 1fr); grid-template-rows:repeat(3, 200px);}
  .gallery-tall{grid-row:span 2;}
  .testi-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr; gap:32px;}

  section{padding:72px 0;}
  .trust-strip .container{justify-content:flex-start; gap:28px;}
}
@media (max-width: 560px){
  .gallery-grid{grid-template-columns:1fr; grid-template-rows:repeat(6, 220px);}
  .gallery-tall{grid-row:span 1;}
  .hero-actions{flex-direction:column; align-items:flex-start; gap:20px;}
}