:root{
  --bg:#f6f3ee;
  --surface:#ffffff;
  --surface-2:#f0ebe4;
  --text:#161514;
  --muted:#67615b;
  --line:rgba(22,21,20,.12);
  --accent:#b8894b;
  --shadow:0 24px 60px rgba(22,21,20,.08);
  --radius:28px;
  --frame:min(1480px, calc(100% - 40px));
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',system-ui,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#fbf9f6 0%, #f4efe8 100%);
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button{font:inherit}
.frame{width:var(--frame);margin:0 auto}
.section{padding:clamp(64px,7vw,110px) 0}
.section-heading{margin-bottom:28px}
.section-kicker,.kicker{
  display:inline-block;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:.72rem;
  font-weight:700;
  color:var(--muted);
  margin-bottom:12px;
}
.section-heading h2,.hero h1{
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
  font-weight:800;
  line-height:.98;
  letter-spacing:-.04em;
  margin:0;
}
.section-heading h2{font-size:clamp(2rem,4vw,4rem)}
.site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:40;
  padding:18px 0;
  transition:.28s ease;
}
.site-header.is-scrolled{padding:12px 0;background:rgba(248,244,238,.84);backdrop-filter:blur(14px);border-bottom:1px solid rgba(255,255,255,.5)}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand img{height:58px;width:auto;object-fit:contain;filter:drop-shadow(0 8px 18px rgba(0,0,0,.14))}
.site-nav{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px;
  border-radius:999px;
  background:rgba(255,255,255,.3);
  backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.4);
}
.site-nav a{
  padding:10px 16px;
  border-radius:999px;
  font-size:.95rem;
  font-weight:600;
}
.site-nav a:hover{background:rgba(255,255,255,.75)}
.menu-toggle{
  display:none;
  width:52px;
  height:52px;
  padding:0;
  border:1px solid rgba(255,255,255,.42);
  background:rgba(255,255,255,.18);
  backdrop-filter:blur(14px);
  border-radius:999px;
  align-items:center;
  justify-content:center;
  gap:5px;
  flex-direction:column;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  cursor:pointer;
}
.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  border-radius:999px;
  background:#fff;
  transition:transform .22s ease, opacity .22s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.hero{
  position:relative;
  min-height:100svh;
  display:grid;
  align-items:end;
  background-image:var(--hero);
  background-size:cover;
  background-position:72% center;
  overflow:hidden;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(17,16,15,.18) 0%, rgba(17,16,15,.26) 34%, rgba(17,16,15,.72) 100%);
}
.hero-overlay{
  position:absolute;
  inset:auto -10% -18% auto;
  width:min(800px,60vw);
  aspect-ratio:1/1;
  border-radius:50%;
  background:radial-gradient(circle at center, rgba(216,178,114,.26), transparent 65%);
  filter:blur(10px);
  z-index:1;
}
.hero-inner{position:relative;z-index:2;padding:160px 0 64px}
.hero-copy{
  max-width:min(780px,90vw);
  color:#fff;
}
.hero h1{font-size:clamp(3rem,7vw,7rem);margin-bottom:20px}
.hero-text{max-width:620px;font-size:clamp(1.05rem,1.6vw,1.34rem);line-height:1.6;margin:0 0 28px;color:rgba(255,255,255,.9)}
.hero-actions,.contact-actions{display:flex;flex-wrap:wrap;gap:14px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 22px;
  border-radius:999px;
  font-weight:700;
  transition:transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-solid{background:#fff;color:#111}
.btn-ghost{border:1px solid rgba(255,255,255,.45);color:#fff;background:rgba(255,255,255,.08);backdrop-filter:blur(10px)}
.btn-ghost.dark{border-color:var(--line);color:var(--text);background:transparent}

.btn-contact{
  min-width:220px;
  padding:0 20px;
  gap:12px;
}
.btn-icon{
  width:34px;
  height:34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  flex:0 0 34px;
}
.btn-icon svg{
  width:18px;
  height:18px;
  fill:currentColor;
}
.btn-solid.btn-contact{
  background:#161514;
  color:#fff;
  box-shadow:0 18px 34px rgba(22,21,20,.18);
}
.btn-solid.btn-contact .btn-icon{
  background:rgba(255,255,255,.14);
}
.btn-whatsapp{
  background:#fff;
  border-color:rgba(22,21,20,.08);
  box-shadow:0 18px 34px rgba(22,21,20,.08);
}
.btn-whatsapp .btn-icon{
  background:#f2eee7;
}
.about-layout{
  display:grid;
  grid-template-columns:1.15fr .95fr;
  gap:34px;
  align-items:center;
}
.about-copy{
  font-size:clamp(1.05rem,1.15vw,1.18rem);
  line-height:1.9;
  color:#272421;
}
.about-visuals{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.about-visuals figure,
.service-image,
.gallery-panel,
.map-wrap,
.lightbox-image{border-radius:var(--radius);overflow:hidden}
.about-visuals figure:nth-child(1){margin-top:54px}
.about-visuals img{width:100%;height:420px;object-fit:cover;box-shadow:var(--shadow)}
.services-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
.service-row{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:18px;
  padding:18px;
  background:rgba(255,255,255,.62);
  border:1px solid rgba(255,255,255,.7);
  backdrop-filter:blur(10px);
  border-radius:32px;
  box-shadow:var(--shadow);
}
.service-row.is-wide{grid-column:1/-1;grid-template-columns:320px 1fr}
.service-image img{width:100%;height:100%;min-height:220px;max-height:260px;object-fit:cover}
.service-row.is-wide .service-image img{min-height:220px;max-height:250px}
.service-number{font-size:.8rem;letter-spacing:.18em;text-transform:uppercase;color:var(--accent);font-weight:800}
.service-body h3{font-size:1.45rem;line-height:1.15;margin:8px 0 10px;font-family:'Plus Jakarta Sans',system-ui,sans-serif}
.service-body p{margin:0 0 14px;line-height:1.72;color:#3b3733}
.service-body ul{margin:0;padding:0;list-style:none;display:grid;gap:8px;grid-template-columns:repeat(2,minmax(0,1fr))}
.service-body li{position:relative;padding-left:18px;color:var(--muted);line-height:1.5}
.service-body li::before{content:"";position:absolute;left:0;top:.62em;width:8px;height:8px;border-radius:50%;background:var(--accent)}
.gallery{overflow:hidden;padding-top:30px}
.gallery-header{margin-bottom:22px}
.gallery-ribbons{display:grid;gap:18px}
.gallery-track{overflow:hidden}
.gallery-run{display:flex;gap:18px;width:max-content}
.track-left .gallery-run{animation:marqueeLeft 45s linear infinite}
.track-right .gallery-run{animation:marqueeRight 55s linear infinite}
.gallery-track:hover .gallery-run{animation-play-state:paused}
.gallery-panel{
  flex:0 0 clamp(280px,28vw,460px);
  border:0;
  padding:0;
  background:#ddd;
  cursor:pointer;
  box-shadow:var(--shadow);
}
.gallery-panel.alt{flex-basis:clamp(240px,24vw,390px)}
.gallery-panel img{width:100%;height:clamp(220px,24vw,320px);object-fit:cover;transition:transform .5s ease}
.gallery-panel:hover img{transform:scale(1.04)}
.contact-layout{
  display:grid;
  grid-template-columns:.94fr 1.06fr;
  gap:24px;
}
.contact-block{
  padding:32px;
  border-radius:34px;
  background:var(--surface);
  box-shadow:var(--shadow);
}
.contact-block h3{margin:0 0 12px;font-size:1.7rem;font-family:'Plus Jakarta Sans',system-ui,sans-serif}
.contact-block p{margin:0 0 12px;line-height:1.7;color:#37332f}
.map-wrap{min-height:420px;box-shadow:var(--shadow)}
.map-wrap iframe{width:100%;height:100%;border:0}
 
.site-footer{padding:6px 0 34px}
.footer-shell{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:var(--shadow);
  backdrop-filter:blur(14px);
  border-radius:30px;
  padding:18px 24px;
}
.footer-shell-minimal{
  background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.92));
}
.footer-minimal{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:22px;
}
.footer-logo img{
  height:48px;
  width:auto;
  object-fit:contain;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.08));
}
.footer-center{
  display:grid;
  justify-items:center;
  gap:10px;
}
.footer-socials{
  display:flex;
  align-items:center;
  gap:12px;
}
.social-link{
  width:44px;
  height:44px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.86);
  border:1px solid rgba(20,20,20,.08);
  box-shadow:0 16px 34px rgba(22,31,45,.08);
  transition:transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}
.social-link:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 40px rgba(22,31,45,.12);
}
.social-link svg{
  width:18px;
  height:18px;
  fill:var(--text);
}
.footer-credit{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:.92rem;
  font-weight:600;
}
.footer-credit img{
  height:22px;
  width:auto;
  display:block;
}
.footer-right{
  display:grid;
  justify-items:end;
  gap:6px;
  text-align:right;
}
.footer-right p{
  margin:0;
  color:var(--text);
  font-weight:700;
  letter-spacing:.02em;
}
.footer-legal{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.footer-legal a{
  color:var(--muted);
  font-weight:600;
  transition:opacity .2s ease;
}
.footer-legal a:hover{opacity:.72}
.lightbox{

  position:fixed;
  inset:0;
  background:rgba(7,7,7,.78);
  display:grid;
  place-items:center;
  padding:28px;
  opacity:0;
  visibility:hidden;
  transition:.2s ease;
  z-index:80;
}
.lightbox.is-open{opacity:1;visibility:visible}
.lightbox-image{max-width:min(1200px,92vw);max-height:86vh;box-shadow:0 20px 70px rgba(0,0,0,.35)}
.lightbox-close{
  position:absolute;
  top:18px;
  right:18px;
  width:48px;
  height:48px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#111;
  font-size:1.8rem;
  cursor:pointer;
}
@keyframes marqueeLeft{from{transform:translateX(0)}to{transform:translateX(calc(-50% - 9px))}}
@keyframes marqueeRight{from{transform:translateX(calc(-50% - 9px))}to{transform:translateX(0)}}
@media (max-width: 1100px){
  .about-layout,.contact-layout{grid-template-columns:1fr;gap:24px}
  .services-grid{grid-template-columns:1fr}
  .service-row,.service-row.is-wide{grid-template-columns:220px 1fr}
  .footer-minimal{grid-template-columns:1fr;justify-items:center;text-align:center}
  .footer-right{justify-items:center;text-align:center}
  .footer-legal{justify-content:center}
}
@media (max-width: 860px){
  .site-nav{
    position:absolute;
    top:calc(100% + 12px);
    right:20px;
    left:20px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    border-radius:26px;
    background:rgba(248,244,238,.96);
    border:1px solid rgba(22,21,20,.08);
    box-shadow:var(--shadow);
    padding:12px;
  }
  .site-nav a{padding:14px 16px}
  .site-nav.is-open{display:flex}
  .menu-toggle{display:inline-flex}
  .hero-inner{padding:150px 0 46px}
  .hero h1{font-size:clamp(2.5rem,12vw,4.6rem)}
  .about-visuals{grid-template-columns:1fr}
  .about-visuals figure:nth-child(1){margin-top:0}
  .about-visuals img{height:260px}
  .service-row,.service-row.is-wide{grid-template-columns:1fr;padding:14px}
  .service-image img,.service-row.is-wide .service-image img{min-height:220px;max-height:240px}
  .service-body ul{grid-template-columns:1fr}
  .gallery-panel,.gallery-panel.alt{flex-basis:74vw}
  .gallery-panel img{height:240px}
  .contact-block{padding:24px}
  .map-wrap{min-height:320px}
}
@media (max-width: 560px){
  :root{--frame:min(100% - 24px, 1480px)}
  .brand img{height:46px}
  .site-header{padding:12px 0}
  .hero-text{font-size:1rem}
  .btn{width:100%}
  .hero-actions,.contact-actions{flex-direction:column}
  .btn-contact{
    width:100%;
    min-width:0;
    justify-content:flex-start;
  }
  .gallery-run{gap:12px}
  .gallery-panel,.gallery-panel.alt{flex-basis:82vw}
  .gallery-panel img{height:210px}
  .footer-shell{padding:18px 16px}
  .footer-logo img{height:42px}
}


.section-intro{
  max-width:920px;
  margin:14px 0 0;
  color:#4c4741;
  line-height:1.8;
  font-size:clamp(1rem,1.15vw,1.08rem);
}
.service-area{
  padding-top:24px;
}
.area-chip-wrap{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.area-chip{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(22,21,20,.08);
  box-shadow:0 12px 28px rgba(22,21,20,.06);
  color:#2f2b27;
  font-weight:600;
}
@media (max-width: 560px){
  .section-intro{
    font-size:.98rem;
    line-height:1.7;
  }
  .area-chip-wrap{
    gap:10px;
  }
  .area-chip{
    min-height:38px;
    padding:0 14px;
    font-size:.94rem;
  }
}


.city-hubs{padding-top:24px}
.city-links-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.city-link-card{
  display:grid;
  gap:8px;
  padding:20px;
  border-radius:26px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(22,21,20,.08);
  box-shadow:0 16px 34px rgba(22,21,20,.06);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.city-link-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 44px rgba(22,21,20,.1);
  border-color:rgba(184,137,75,.3);
}
.city-link-kicker{
  font-size:.76rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  font-weight:700;
}
.city-link-card strong{
  font-size:1.26rem;
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
}
.city-link-card span:last-child{
  color:var(--accent);
  font-weight:700;
}

.hero-city{
  min-height:78svh;
}
.city-copy-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}
.city-copy-card,
.city-service-item{
  padding:26px;
  border-radius:28px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(22,21,20,.08);
  box-shadow:0 16px 34px rgba(22,21,20,.06);
}
.city-copy-card h3,
.city-service-item h3{
  margin:0 0 12px;
  font-size:1.28rem;
  font-family:'Plus Jakarta Sans',system-ui,sans-serif;
}
.city-copy-card p,
.city-service-item p{
  margin:0;
  line-height:1.8;
  color:#403b36;
}
.city-service-list{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
@media (max-width: 1100px){
  .city-links-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .city-service-list{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 860px){
  .city-copy-grid,
  .city-service-list,
  .city-links-grid{grid-template-columns:1fr}
  .hero-city{min-height:68svh}
}


.seo-hidden{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}


@media (max-width: 860px){
  .hero{
    background-position:80% center;
  }
  .hero-inner{
    padding:132px 0 38px;
  }
}
@media (max-width: 560px){
  .hero{
    background-position:84% center;
    min-height:92svh;
  }
}
