
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@400;500;700&display=swap');

:root{
  --bg:#f7f4ef;
  --paper:#fffdf9;
  --paper-2:#f1ece6;
  --ink:#302823;
  --muted:#6f655d;
  --brand:#60483b;
  --brand-dark:#3d2f29;
  --rose:#b98270;
  --taupe:#9a8573;
  --line:#ddd3c8;
  --wa:#25d366;
  --max:1180px;
  --shadow:0 16px 38px rgba(54,39,31,.10);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  overflow-x:hidden;
  background:var(--bg);
  color:var(--ink);
  font-family:'Roboto',Arial,sans-serif;
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
button{cursor:pointer}
.container{width:min(var(--max),92%);margin-inline:auto}

h1,h2,h3{
  margin:0;
  color:var(--brand);
  font-family:'Poppins',Arial,sans-serif;
  letter-spacing:-.025em;
}
h1{font-size:clamp(38px,4.4vw,58px);line-height:1.09;font-weight:700}
h2{font-size:clamp(31px,3.3vw,44px);line-height:1.16;font-weight:700}
h3{font-size:22px;line-height:1.26;font-weight:600}
p{margin:0 0 18px;color:var(--muted)}
.eyebrow{
  margin-bottom:12px;
  color:var(--taupe);
  font-family:'Poppins',Arial,sans-serif;
  font-size:11px;
  font-weight:700;
  letter-spacing:.075em;
  text-transform:uppercase;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:var(--bg);
  border-bottom:1px solid var(--line);
}
.nav{
  position:relative;
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo img{height:82px;width:auto}
.site-nav{
  display:flex;
  align-items:center;
  gap:26px;
}
.site-nav a{
  font-family:'Poppins',Arial,sans-serif;
  font-size:13px;
  font-weight:500;
  color:#453a34;
}
.site-nav a:hover,.site-nav a[aria-current="page"]{color:var(--rose)}
.header-cta{margin-left:auto}
.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  padding:0;
  border:0;
  background:transparent;
  border-radius:8px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}
.menu-toggle span{
  width:25px;
  height:2px;
  background:var(--ink);
  transition:.2s 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)}

.btn{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  padding:0 20px;
  border-radius:7px;
  border:1px solid transparent;
  font-family:'Poppins',Arial,sans-serif;
  font-size:13px;
  font-weight:600;
  transition:background .15s,border-color .15s,color .15s;
}
.btn-primary{background:var(--brand);color:white}
.btn-primary:hover{background:var(--brand-dark)}
.btn-outline{background:transparent;color:var(--brand);border-color:#c9bdb2}
.btn-outline:hover{background:#fff}
.btn-light{background:#fff;color:var(--brand)}
.wa-icon{width:18px;height:18px;flex:0 0 18px}

.hero{
  padding:0;
  background:var(--paper);
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  min-height:640px;
}
.hero-copy{
  padding:72px max(5vw,calc((100vw - var(--max))/2)) 66px max(5vw,calc((100vw - var(--max))/2));
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero-copy p{
  max-width:650px;
  margin:22px 0 28px;
  font-size:17px;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.trust-row{
  margin-top:28px;
  display:flex;
  flex-wrap:wrap;
  gap:10px 20px;
  color:#746a62;
  font-size:13px;
}
.hero-photo{position:relative;min-width:0;overflow:hidden}
.hero-photo img{width:100%;height:100%;object-fit:cover;object-position:center}
.photo-label{
  position:absolute;
  right:18px;
  bottom:18px;
  padding:8px 10px;
  border-radius:6px;
  background:rgba(48,40,35,.82);
  color:white;
  font-size:11px;
}

section{padding:72px 0}
.section-alt{background:var(--paper-2)}
.section-paper{background:var(--paper)}
.section-head{
  margin-bottom:32px;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:44px;
  align-items:end;
}
.section-head p{margin:0;max-width:640px}

.slider-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:25px;
}
.slider-copy{max-width:730px}
.slider-actions{display:flex;gap:8px}
.slider-btn{
  width:44px;height:44px;
  border:1px solid var(--line);
  background:white;
  color:var(--brand);
  border-radius:7px;
  font-size:20px;
}
.slider-track{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:minmax(300px,36%);
  gap:16px;
  overflow-x:auto;
  padding:2px 2px 10px;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
}
.slider-track::-webkit-scrollbar{display:none}
.work-card{
  scroll-snap-align:start;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:10px;
  background:white;
}
.work-card img{width:100%;height:300px;object-fit:cover}
.work-card-body{padding:16px}
.work-card .tag{
  color:var(--taupe);
  font-family:'Poppins',Arial,sans-serif;
  font-size:10px;
  font-weight:700;
  letter-spacing:.055em;
  text-transform:uppercase;
}
.work-card h3{font-size:20px;margin:5px 0 7px}
.work-card p{font-size:13px;margin:0}

.grid{display:grid;gap:16px}
.grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:10px;
  padding:24px;
}
.card p{font-size:14px}
.service-card{min-height:260px;display:flex;flex-direction:column;justify-content:space-between}
.service-no{
  display:block;
  margin-bottom:16px;
  color:#b3a291;
  font-family:'Poppins',Arial,sans-serif;
  font-size:28px;
  font-weight:600;
}
.text-link{
  color:var(--brand);
  font-weight:700;
  font-size:13px;
}
.text-link:hover{text-decoration:underline}

.facts{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.fact{padding:22px 0;border-top:2px solid #cabaa9}
.fact strong{
  display:block;
  color:var(--brand);
  font-family:'Poppins',Arial,sans-serif;
  font-size:20px;
  margin-bottom:5px;
}
.fact span{font-size:13px;color:var(--muted)}

.split{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:44px;
  align-items:center;
}
.photo-card{overflow:hidden;border-radius:10px;box-shadow:var(--shadow)}
.photo-card img{width:100%;height:480px;object-fit:cover}

.location{
  background:var(--taupe);
  color:white;
}
.location h2,.location h3{color:white}
.location p{color:#fffaf5}
.location .eyebrow{color:#f4ded0}
.location-box{
  max-width:720px;
  margin-top:24px;
  padding:20px;
  border:1px solid rgba(255,255,255,.45);
  border-radius:8px;
}
.location-box strong{font-family:'Poppins',Arial,sans-serif;font-size:20px}

.steps{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:22px;
}
.step{padding-top:18px;border-top:1px solid #cfc1b4}
.step b{display:block;color:#b4a290;font-size:26px;font-family:'Poppins',Arial,sans-serif}
.step h3{font-size:19px;margin:8px 0 7px}
.step p{font-size:13px;margin:0}

.faq{display:grid;gap:10px}
.faq details{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:8px;
  padding:17px 18px;
}
.faq summary{font-weight:700;color:var(--brand);cursor:pointer}
.faq p{padding-top:10px;margin:0;font-size:14px}

.cta-band{background:var(--brand);color:white}
.cta-inner{display:flex;align-items:center;justify-content:space-between;gap:36px}
.cta-band h2{color:white}
.cta-band p{color:#f4ece7;max-width:650px;margin-bottom:0}

.page-hero{padding:58px 0 50px;background:var(--paper)}
.breadcrumb{margin-bottom:18px;color:#8b7f76;font-size:12px}
.page-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,.95fr);
  gap:42px;
  align-items:center;
}
.page-hero p{font-size:16px;max-width:760px}
.page-photo{overflow:hidden;border-radius:10px;box-shadow:var(--shadow)}
.page-photo img{width:100%;height:440px;object-fit:cover}

.gallery{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.gallery-item{
  position:relative;
  min-height:300px;
  overflow:hidden;
  border-radius:10px;
  background:#e7dfd7;
}
.gallery-item.wide{grid-column:span 2}
.gallery-item img{width:100%;height:100%;object-fit:cover}
.caption{
  position:absolute;left:12px;bottom:12px;
  padding:7px 9px;
  background:rgba(48,40,35,.82);
  color:#fff;border-radius:5px;font-size:11px
}

.form{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:10px;
  padding:28px;
}
.field{display:grid;gap:7px;margin-bottom:15px}
.field label{
  font-family:'Poppins',Arial,sans-serif;
  font-size:11px;font-weight:700;text-transform:uppercase;letter-spacing:.04em
}
.field input,.field select,.field textarea{
  width:100%;
  border:1px solid #d3c8bd;
  border-radius:7px;
  padding:13px 14px;
  background:#fcfaf7;
  color:var(--ink);
}
.field textarea{min-height:125px;resize:vertical}
.btn-block{width:100%}

.site-footer{
  background:#2c231e;
  color:#d9d0c8;
  padding:46px 0 20px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .9fr;
  gap:34px;
}
.footer-logo{width:185px;filter:brightness(0) invert(1);opacity:.96}
.footer-title{
  color:white;
  font-family:'Poppins',Arial,sans-serif;
  font-weight:700;
  font-size:12px;
  margin-bottom:10px;
}
.footer-links{display:grid;gap:7px;font-size:12px}
.footer-links a:hover{color:white}
.footer-bottom{
  margin-top:28px;
  padding-top:16px;
  border-top:1px solid #4a3d36;
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-size:10px;
}

.whatsapp-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:990;
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--wa);
  box-shadow:0 12px 28px rgba(0,0,0,.22);
  border:3px solid white;
}
.whatsapp-float img{width:29px;height:29px}

.notice{
  padding:16px 18px;
  border-left:3px solid var(--rose);
  background:#f4ece7;
  color:#5f5149;
  font-size:14px;
}
.empty-service-photo{
  min-height:330px;
  display:grid;
  place-items:center;
  padding:40px;
  background:var(--paper-2);
  border:1px solid var(--line);
  border-radius:10px;
  text-align:center;
}

@media(max-width:1000px){
  .site-nav{gap:18px}
  .slider-track{grid-auto-columns:minmax(290px,55%)}
}
@media(max-width:900px){
  .nav{min-height:74px}
  .logo img{height:72px;width:auto}
  .header-cta{display:none}
  .menu-toggle{display:flex}
  .site-nav{
    position:absolute;
    top:100%;
    left:50%;
    width:100vw;
    transform:translateX(-50%);
    display:none;
    gap:0;
    padding:9px 4% 12px;
    background:var(--paper);
    border-bottom:1px solid var(--line);
    box-shadow:0 14px 25px rgba(48,40,35,.10);
  }
  .site-nav.is-open{
    display:grid;
  }
  .site-nav a{
    width:100%;
    padding:13px 4px;
    font-size:16px;
    border-bottom:1px solid #eee4db;
  }
  .site-nav a:last-child{border-bottom:0}
  .hero,.split,.page-hero-grid,.section-head{grid-template-columns:1fr}
  .hero{min-height:auto}
  .hero-copy{padding:48px 5% 42px}
  .hero-photo{min-height:440px}
  .section-head{gap:12px}
  .grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .steps{grid-template-columns:repeat(2,minmax(0,1fr))}
  .gallery{grid-template-columns:repeat(2,minmax(0,1fr))}
  .gallery-item.wide{grid-column:span 2}
  .cta-inner{align-items:flex-start;flex-direction:column}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
  body{font-size:15px}
  h1{font-size:34px;line-height:1.08}
  h2{font-size:28px}
  h3{font-size:20px}
  section{padding:52px 0}
  .hero-copy{padding:34px 5% 31px}
  .hero-copy p{font-size:15px;margin:17px 0 22px}
  .hero-actions{display:grid;grid-template-columns:1fr}
  .hero-actions .btn{width:100%}
  .trust-row{margin-top:22px;display:grid;gap:7px;font-size:12px}
  .hero-photo{min-height:360px}
  .photo-label{right:12px;bottom:12px;font-size:10px}
  .slider-top{align-items:flex-start;flex-direction:column}
  .slider-track{grid-auto-columns:88%}
  .work-card img{height:235px}
  .grid-2,.grid-3,.grid-4,.facts,.steps{grid-template-columns:1fr}
  .service-card{min-height:0}
  .photo-card img{height:350px}
  .page-hero{padding:42px 0}
  .page-photo img{height:330px}
  .gallery{grid-template-columns:1fr}
  .gallery-item.wide{grid-column:auto}
  .gallery-item{min-height:280px}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column}
  .whatsapp-float{right:14px;bottom:14px;width:56px;height:56px}
}
