:root{
  --bg:#0b0707;
  --panel:#15100f;
  --panel-soft:#1d1513;
  --text:#fff7ee;
  --muted:#d9c8bb;
  --soft:#a99688;
  --brand:#c9332b;
  --brand-2:#f0b84f;
  --line:rgba(255,247,238,0.12);
  --shadow:0 24px 70px rgba(0,0,0,0.42);
}

@font-face{
  font-family:"Gourmet";
  src:local("Gourmet");
  font-display:swap;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:90px;
}

body{
  font-family:"Montserrat",Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

body.menu-open{
  overflow:hidden;
}

img,video,iframe{
  max-width:100%;
}

a{
  color:inherit;
}

button{
  font:inherit;
}

::selection{
  background:var(--brand);
  color:white;
}

::-webkit-scrollbar{
  width:10px;
}

::-webkit-scrollbar-track{
  background:#090606;
}

::-webkit-scrollbar-thumb{
  background:linear-gradient(var(--brand),var(--brand-2));
  border-radius:999px;
}

#preloader{
  position:fixed;
  inset:0;
  display:grid;
  place-items:center;
  align-content:center;
  gap:22px;
  background:radial-gradient(circle at center, #221412 0, #090606 58%);
  z-index:9999;
  transition:opacity .55s ease, visibility .55s ease;
}

#preloader.hide{
  opacity:0;
  visibility:hidden;
}

.loader-logo{
  width:132px;
  filter:drop-shadow(0 18px 35px rgba(201,51,43,0.28));
  animation:pulse 1.8s ease-in-out infinite;
}

#preloader p{
  font-family:"Gourmet","Cormorant Garamond",serif;
  font-size:1.35rem;
  letter-spacing:.1em;
}

.site-header{
  position:fixed;
  inset:0 0 auto;
  z-index:1000;
}

.navbar{
  width:min(1240px, calc(100% - 32px));
  margin:16px auto 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:12px 16px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(12,8,8,.58);
  box-shadow:0 18px 55px rgba(0,0,0,.34);
  backdrop-filter:blur(18px);
  transition:transform .35s ease, background .35s ease, border-color .35s ease;
}

.navbar.nav-hidden{
  transform:translateY(-120%);
}

.navbar.scrolled{
  background:rgba(12,8,8,.88);
  border-color:rgba(240,184,79,.24);
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width:0;
}

.logo img{
  width:54px;
  height:54px;
  object-fit:contain;
}

.logo span{
  font-family:"Gourmet","Cormorant Garamond",serif;
  font-size:1.62rem;
  font-weight:500;
  letter-spacing:.05em;
  white-space:nowrap;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:6px;
  list-style:none;
}

.nav-links a{
  display:inline-flex;
  padding:11px 14px;
  border-radius:999px;
  color:var(--muted);
  font-size:.73rem;
  font-weight:700;
  letter-spacing:.1em;
  text-decoration:none;
  text-transform:uppercase;
  transition:background .25s ease, color .25s ease;
}

.nav-links a:hover,
.nav-links a.active{
  background:rgba(240,184,79,.12);
  color:var(--brand-2);
}

.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  border-radius:50%;
  background:rgba(255,255,255,.04);
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  border-radius:99px;
  background:var(--text);
  transition:transform .25s ease, opacity .25s ease;
}

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

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

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

.hero{
  position:relative;
  min-height:100svh;
  display:grid;
  place-items:center;
  padding:112px 8% 56px;
  overflow:hidden;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-3;
  animation:heroZoom 16s ease-in-out infinite alternate;
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg, rgba(8,5,5,.9), rgba(8,5,5,.45) 45%, rgba(8,5,5,.82)),
    linear-gradient(0deg, var(--bg) 0%, rgba(11,7,7,.35) 35%, rgba(11,7,7,.65) 100%);
}

.hero::after{
  content:"";
  position:absolute;
  left:8%;
  right:8%;
  bottom:34px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(240,184,79,.55), transparent);
}

.hero-content{
  width:min(980px,100%);
  text-align:center;
}

.eyebrow{
  margin-bottom:18px;
  color:var(--brand-2);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.24em;
  text-transform:uppercase;
}

h1,h2,h3{
  font-family:"Cormorant Garamond",Georgia,serif;
  font-weight:700;
}

.hero h1{
  max-width:920px;
  margin:0 auto;
  font-size:clamp(3.25rem,7.2vw,7rem);
  line-height:.94;
  text-wrap:balance;
}

.hero-text{
  max-width:720px;
  margin:28px auto 0;
  color:var(--muted);
  font-size:1.05rem;
  line-height:1.9;
}

.hero-actions{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-top:36px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 26px;
  border:1px solid transparent;
  border-radius:999px;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.12em;
  text-decoration:none;
  text-transform:uppercase;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.btn:hover{
  transform:translateY(-3px);
}

.btn-primary{
  background:linear-gradient(135deg,var(--brand),#e45d44);
  color:white;
  box-shadow:0 18px 36px rgba(201,51,43,.28);
}

.btn-outline{
  border-color:rgba(255,247,238,.35);
  background:rgba(255,255,255,.04);
  color:var(--text);
  backdrop-filter:blur(10px);
}

.btn-outline:hover{
  background:var(--text);
  color:var(--bg);
}

.btn-whatsapp{
  min-width:310px;
  gap:14px;
  border:2px solid #25d366;
  background:rgba(5,18,10,.26);
  color:#25d366;
  box-shadow:0 18px 38px rgba(37,211,102,.14);
}

.btn-whatsapp svg{
  width:24px;
  height:24px;
  fill:currentColor;
  flex:0 0 auto;
}

.btn-whatsapp span{
  line-height:1;
}

.btn-whatsapp:hover{
  background:#25d366;
  color:#06150b;
  box-shadow:0 18px 44px rgba(37,211,102,.32);
}

.hero-card{
  position:absolute;
  left:8%;
  bottom:34px;
  width:min(300px, calc(100% - 32px));
  padding:20px;
  border:1px solid rgba(240,184,79,.22);
  border-radius:8px;
  background:rgba(12,8,8,.6);
  box-shadow:var(--shadow);
  backdrop-filter:blur(16px);
}

.hero-card span,
.hero-card small{
  display:block;
  color:var(--soft);
  font-size:.72rem;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.hero-card strong{
  display:block;
  margin:8px 0;
  font-family:"Cormorant Garamond",serif;
  font-size:1.65rem;
  line-height:1;
}

.section-pad{
  padding:48px 8%;
}

.about{
  display:grid;
  grid-template-columns:minmax(280px,.85fr) minmax(0,1fr);
  gap:64px;
  align-items:center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), transparent),
    var(--panel);
}

.brand-panel{
  min-height:560px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  border-radius:8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(201,51,43,.28), transparent 43%),
    linear-gradient(145deg, #211715, #0e0a09);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.brand-panel img{
  width:min(360px,72%);
  filter:drop-shadow(0 30px 55px rgba(0,0,0,.4));
}

.section-copy h2,
.section-heading h2,
.contact-copy h2{
  font-size:clamp(2.8rem,5vw,5.2rem);
  line-height:.98;
  text-wrap:balance;
}

.section-copy p,
.section-heading p,
.contact-copy p{
  max-width:680px;
  margin-top:22px;
  color:var(--muted);
  line-height:1.9;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:36px;
}

.stats div{
  padding:20px;
  border:1px solid var(--line);
  border-radius:8px;
  background:rgba(255,255,255,.035);
}

.stats strong{
  display:block;
  color:var(--brand-2);
  font-family:"Cormorant Garamond",serif;
  font-size:2.2rem;
  line-height:1;
}

.stats span{
  display:block;
  margin-top:8px;
  color:var(--soft);
  font-size:.76rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.services,
.reviews{
  background:var(--bg);
}

.section-heading{
  max-width:820px;
  margin:0 auto 24px;
  text-align:center;
}

.section-heading p{
  margin-left:auto;
  margin-right:auto;
}

.service-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:22px;
}

.service-card{
  position:relative;
  display:grid;
  grid-template-columns:minmax(280px, 44%) 1fr;
  align-items:stretch;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--panel-soft);
  box-shadow:0 16px 42px rgba(0,0,0,.22);
}

.service-card img{
  position:relative;
  width:100%;
  height:100%;
  min-height:360px;
  padding:14px;
  object-fit:contain;
  background:#090606;
  transition:filter .7s ease;
}

.service-card:nth-child(even) img{
  order:2;
}

.service-card:nth-child(even) div{
  justify-self:end;
}

.service-card::after{
  content:"";
  display:none;
}

.service-card:hover img{
  filter:saturate(1.08) contrast(1.05);
}

.service-card div{
  position:relative;
  z-index:1;
  max-width:640px;
  align-self:center;
  padding:34px;
}

.service-card span{
  color:var(--brand-2);
  font-family:"Cormorant Garamond",serif;
  font-size:2.5rem;
}

.service-card h3{
  margin-top:4px;
  font-size:clamp(2rem,3.5vw,3.8rem);
  line-height:1;
}

.service-card p{
  max-width:560px;
  margin-top:14px;
  color:var(--muted);
  line-height:1.75;
}

.service-areas{
  background:linear-gradient(180deg, var(--bg), var(--panel));
}

.area-copy{
  max-width:920px;
  margin:0 auto 30px;
  color:var(--muted);
  line-height:1.85;
  text-align:center;
}

.keyword-cloud{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  max-width:1120px;
  margin:0 auto;
  list-style:none;
}

.keyword-cloud li{
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:.78rem;
  font-weight:700;
  line-height:1.35;
}

.area-districts{
  max-width:1060px;
  margin:30px auto 0;
  color:var(--soft);
  font-size:.92rem;
  line-height:1.85;
  text-align:center;
}

.location-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  max-width:1180px;
  margin:34px auto 0;
}

.location-grid article{
  border:1px solid var(--line);
  border-radius:8px;
  padding:18px;
  background:rgba(255,255,255,.035);
}

.location-grid h3{
  margin-bottom:8px;
  color:var(--text);
  font-size:1.45rem;
}

.location-grid p{
  color:var(--muted);
  font-size:.88rem;
  line-height:1.75;
}

.gallery{
  background:var(--panel);
}

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

.gallery-item{
  display:block;
  width:100%;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#120d0c;
  cursor:pointer;
  box-shadow:0 14px 36px rgba(0,0,0,.18);
}

.gallery-item.portrait{
  aspect-ratio:4 / 5;
}

.gallery-item.landscape{
  aspect-ratio:16 / 9;
}

.gallery-item img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .55s ease, filter .55s ease;
}

.gallery-item:hover img{
  transform:scale(1.035);
  filter:brightness(.9) saturate(1.08);
}

.review-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.review-card{
  padding:32px;
  border:1px solid var(--line);
  border-radius:8px;
  background:linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  box-shadow:0 18px 42px rgba(0,0,0,.2);
}

.review-card p{
  color:var(--muted);
  font-size:1rem;
  line-height:1.9;
}

.review-card h3{
  margin-top:28px;
  font-size:1.5rem;
}

.review-card span{
  display:block;
  margin-top:8px;
  color:var(--brand-2);
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.faq{
  background:var(--bg);
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.faq-item{
  padding:30px;
  border:1px solid var(--line);
  border-radius:8px;
  background:linear-gradient(145deg, rgba(255,255,255,.052), rgba(255,255,255,.02));
  box-shadow:0 18px 42px rgba(0,0,0,.18);
}

.faq-item h3{
  font-size:1.7rem;
  line-height:1.1;
}

.faq-item p{
  margin-top:16px;
  color:var(--muted);
  line-height:1.8;
}

.contact{
  display:grid;
  grid-template-columns:minmax(0,.85fr) minmax(300px,1.1fr);
  gap:24px;
  align-items:center;
  background:var(--panel);
}

.contact-list{
  display:grid;
  gap:12px;
  margin-top:30px;
}

.contact-list a{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:8px;
  color:var(--muted);
  text-decoration:none;
  background:rgba(255,255,255,.035);
  transition:border-color .25s ease, color .25s ease, transform .25s ease;
}

.contact-list a:hover{
  border-color:rgba(240,184,79,.42);
  color:var(--text);
  transform:translateX(4px);
}

.contact-list span{
  color:var(--brand-2);
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.map-card{
  height:560px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:8px;
  box-shadow:var(--shadow);
  background:#120d0c;
}

.map-card iframe{
  width:100%;
  height:100%;
  border:0;
  filter:grayscale(1) contrast(1.1);
}

.footer{
  display:grid;
  gap:16px;
  justify-items:center;
  padding:30px 8%;
  text-align:center;
  background:#080505;
  border-top:1px solid var(--line);
}

.footer h2{
  font-family:"Gourmet","Cormorant Garamond",serif;
  font-size:2.6rem;
  font-weight:500;
  letter-spacing:.05em;
}

.footer p{
  max-width:620px;
  margin-top:10px;
  color:var(--soft);
  line-height:1.7;
}

.footer nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
}

.footer a,
.footer-services a{
  padding:10px 13px;
  color:var(--muted);
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.12em;
  text-decoration:none;
  text-transform:uppercase;
}

.footer a:hover,
.footer-services a:hover{
  color:var(--brand-2);
}

.footer-services{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:6px;
  max-width:980px;
}

.footer-services a{
  border:1px solid var(--line);
  border-radius:999px;
  font-size:.68rem;
  letter-spacing:.08em;
  background:rgba(255,255,255,.025);
}

.footer small{
  color:#806f65;
}

.floating-buttons{
  position:fixed;
  right:18px;
  bottom:18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  z-index:900;
}

.float-btn{
  position:relative;
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:white;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(0,0,0,.28);
  transition:transform .22s ease, filter .22s ease;
}

.float-btn svg{
  width:25px;
  height:25px;
  fill:currentColor;
}

.float-btn span{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
}

.float-btn:hover{
  transform:translateY(-3px);
  filter:brightness(1.08);
}

.whatsapp{
  background:#1fb65b;
}

.instagram{
  background:linear-gradient(135deg,#7c3fb2,#de2d5b,#f0a53b);
}

.call{
  background:var(--brand);
}

.lightbox{
  position:fixed;
  inset:0;
  display:grid;
  place-items:center;
  padding:28px;
  background:rgba(4,3,3,.92);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  z-index:2000;
  transition:opacity .25s ease, visibility .25s ease;
}

.lightbox.active{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.lightbox-img{
  max-width:min(1100px,92vw);
  max-height:86svh;
  border:1px solid var(--line);
  border-radius:8px;
  box-shadow:var(--shadow);
}

.close-lightbox{
  position:absolute;
  top:20px;
  right:24px;
  width:46px;
  height:46px;
  border:1px solid var(--line);
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:white;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
}

.reveal{
  opacity:0;
  transform:translateY(36px);
  transition:opacity .7s ease, transform .7s ease;
}

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

@keyframes pulse{
  0%,100%{transform:scale(1);opacity:.72}
  50%{transform:scale(1.08);opacity:1}
}

@keyframes heroZoom{
  from{transform:scale(1)}
  to{transform:scale(1.08)}
}

@media (max-width:980px){
  .menu-toggle{
    display:block;
  }

  .nav-links{
    position:fixed;
    inset:76px 16px auto;
    display:grid;
    gap:8px;
    padding:18px;
    border:1px solid var(--line);
    border-radius:8px;
    background:rgba(12,8,8,.96);
    box-shadow:var(--shadow);
    transform:translateY(-16px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .25s ease, transform .25s ease, visibility .25s ease;
  }

  .nav-links.active{
    transform:translateY(0);
    opacity:1;
    visibility:visible;
    pointer-events:auto;
  }

  .nav-links a{
    justify-content:center;
    padding:15px;
  }

  .about,
  .contact{
    grid-template-columns:1fr;
  }

  .brand-panel{
    min-height:380px;
  }

  .gallery-grid,
  .review-grid,
  .faq-grid,
  .location-grid{
    grid-template-columns:1fr 1fr;
  }

  .hero-card{
    position:relative;
    left:auto;
    bottom:auto;
    margin-top:42px;
  }

  .service-card{
    grid-template-columns:1fr;
  }

  .service-card:nth-child(even) img{
    order:0;
  }

  .service-card:nth-child(even) div{
    justify-self:stretch;
  }

  .service-card img{
    height:auto;
    min-height:0;
    aspect-ratio:16/10;
  }
}

@media (max-width:640px){
  .navbar{
    width:calc(100% - 20px);
    margin-top:10px;
    padding:10px 12px;
  }

  .logo img{
    width:42px;
    height:42px;
  }

  .logo span{
    max-width:210px;
    overflow:hidden;
    text-overflow:ellipsis;
    font-size:1.16rem;
  }

  .hero{
    min-height:86svh;
    padding:92px 5% 28px;
    align-items:end;
  }

  .hero h1{
    font-size:clamp(2.8rem,15vw,4.5rem);
  }

  .hero-text{
    margin-top:18px;
    font-size:.98rem;
    line-height:1.65;
  }

  .hero-actions{
    margin-top:24px;
    gap:10px;
  }

  .btn{
    min-height:48px;
    width:100%;
  }

  .section-pad{
    padding:26px 5%;
  }

  .section-heading{
    margin-bottom:16px;
  }

  .eyebrow{
    margin-bottom:10px;
  }

  .section-copy h2,
  .section-heading h2,
  .contact-copy h2{
    font-size:2.45rem;
  }

  .section-heading p,
  .section-copy p,
  .area-copy,
  .area-districts,
  .contact-copy p{
    line-height:1.65;
  }

  .service-grid,
  .gallery-grid,
  .review-grid,
  .faq-grid,
  .location-grid{
    gap:14px;
  }

  .stats,
  .gallery-grid,
  .review-grid,
  .faq-grid,
  .location-grid{
    grid-template-columns:1fr;
  }

  .service-card{
    min-height:0;
  }

  .service-card img{
    padding:8px;
    aspect-ratio:4/3;
  }

  .service-card div{
    padding:18px;
  }

  .service-card h3{
    font-size:2.15rem;
  }

  .service-card p{
    margin-top:10px;
    line-height:1.55;
  }

  .keyword-cloud{
    gap:7px;
  }

  .keyword-cloud li{
    padding:8px 10px;
    font-size:.72rem;
  }

  .location-grid{
    display:none;
  }

  .area-districts{
    margin-top:14px;
  }

  .review-card,
  .faq-item{
    padding:18px;
  }

  .contact-list a{
    display:grid;
    gap:6px;
    padding:14px 16px;
  }

  .map-card{
    height:300px;
  }

  .floating-buttons{
    left:10px;
    right:10px;
    bottom:10px;
    flex-direction:row;
    justify-content:center;
  }

  .float-btn{
    width:52px;
    height:52px;
    flex:0 0 52px;
  }

  .footer{
    padding:22px 5% 78px;
  }
}
