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

:root{
  --bg:#11100f;
  --bg-dark:#090909;
  --card:#1c1a18;
  --card-soft:#24211f;
  --text:#f7f2ea;
  --muted:#bfb6aa;
  --warm:#d9b98a;
  --blue:#2f6fff;
  --blue2:#6ea3ff;
  --line:rgba(255,255,255,0.09);
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  background:
    radial-gradient(circle at top left,rgba(217,185,138,.10),transparent 28%),
    radial-gradient(circle at top right,rgba(47,111,255,.12),transparent 24%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

section{
  scroll-margin-top:120px;
}

/* NAVBAR */

.navbar{
  position:fixed;
  top:18px;
  left:50%;
  transform:translateX(-50%);
  width:min(1180px,calc(100% - 32px));
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 22px;
  border-radius:24px;
  background:rgba(12,12,12,.88);
  border:1px solid var(--line);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:0 18px 50px rgba(0,0,0,.28);
}

.navbar.scrolled{
  background:rgba(8,8,8,.96);
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
}

.logo img{
  width:44px;
  height:44px;
  object-fit:cover;
  border-radius:50%;
}

.logo span{
  font-size:1.05rem;
  letter-spacing:-.03em;
}

nav{
  display:flex;
  gap:24px;
}

nav a{
  color:var(--muted);
  font-size:.9rem;
  font-weight:800;
}

nav a:hover{
  color:white;
}

/* FLOATING CALL */

.floating-call{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  border-radius:999px;
  background:var(--blue);
  color:white;
  font-weight:900;
  font-size:.95rem;
  box-shadow:0 14px 36px rgba(47,111,255,.36);
}

/* HERO */

.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transform:scale(1.04);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(10,10,10,.90),rgba(10,10,10,.58),rgba(10,10,10,.30)),
    linear-gradient(0deg,var(--bg),transparent 38%);
}

.hero-content{
  position:relative;
  z-index:2;
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
  padding-top:100px;
}

.tag,
.eyebrow,
.section-header span{
  display:inline-flex;
  color:var(--warm);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.76rem;
  font-weight:900;
  margin-bottom:16px;
}

.tag{
  padding:10px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid var(--line);
  color:#ead8bb;
}

.hero h1{
  max-width:850px;
  font-size:clamp(3rem,6vw,5.2rem);
  line-height:.95;
  letter-spacing:-.07em;
  margin:20px 0;
}

.hero p{
  max-width:650px;
  color:#ddd5ca;
  font-size:1.15rem;
  line-height:1.7;
}

.hero-actions,
.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:none;
  cursor:pointer;
  padding:15px 24px;
  border-radius:16px;
  font-weight:900;
  transition:.25s ease;
}

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

.primary{
  background:var(--blue);
  color:white;
  box-shadow:0 14px 34px rgba(47,111,255,.30);
}

.secondary{
  background:rgba(255,255,255,.08);
  color:white;
  border:1px solid var(--line);
}

.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:26px;
}

.hero-points span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid var(--line);
  color:#e9e0d5;
  font-size:.9rem;
  font-weight:800;
}

/* TRUST */

.trust{
  width:min(1180px,calc(100% - 32px));
  margin:-58px auto 90px;
  position:relative;
  z-index:5;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.trust-card{
  background:linear-gradient(180deg,var(--card-soft),var(--card));
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
}

.trust-card h3{
  font-size:1.25rem;
  margin-bottom:8px;
}

.trust-card p{
  color:var(--muted);
  line-height:1.6;
}

/* SECTIONS */

.section,
.feature,
.hours,
.contact{
  width:min(1180px,calc(100% - 32px));
  margin:90px auto;
}

.section-header{
  margin-bottom:34px;
}

.section-header h2,
.feature-text h2,
.hours-box h2,
.contact-info h2{
  font-size:clamp(2.2rem,5vw,3.7rem);
  line-height:1;
  letter-spacing:-.055em;
}

.section-header p{
  max-width:520px;
  margin-top:12px;
  color:var(--muted);
  line-height:1.6;
}

/* SERVICES */

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

.service-card{
  background:linear-gradient(180deg,var(--card-soft),var(--card));
  border:1px solid var(--line);
  border-radius:26px;
  overflow:hidden;
  transition:.25s ease;
}

.service-card:hover{
  transform:translateY(-5px);
  border-color:rgba(217,185,138,.22);
}

.service-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.service-card > div{
  padding:22px;
}

.service-icon{
  display:block;
  font-size:1.8rem;
  margin-bottom:12px;
}

.service-card h3{
  font-size:1.45rem;
  letter-spacing:-.04em;
  margin-bottom:8px;
}

.service-card p{
  color:var(--muted);
  line-height:1.6;
  margin-bottom:14px;
}

.service-card strong{
  color:var(--blue2);
  font-size:1.05rem;
}

/* FEATURE */

.feature{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  align-items:center;
  padding:30px;
  border-radius:34px;
  background:linear-gradient(135deg,var(--card-soft),#171615);
  border:1px solid var(--line);
}

.feature-text p{
  margin:20px 0 24px;
  color:var(--muted);
  line-height:1.75;
}

.feature-image img{
  width:100%;
  height:390px;
  object-fit:cover;
  border-radius:24px;
}

/* PRICING */

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.price-card{
  background:linear-gradient(180deg,var(--card-soft),var(--card));
  border:1px solid var(--line);
  border-radius:24px;
  padding:26px;
  transition:.25s ease;
}

.price-card:hover{
  transform:translateY(-5px);
  border-color:rgba(47,111,255,.25);
}

.price-card h3{
  font-size:1.25rem;
  margin-bottom:10px;
}

.price-card p{
  color:var(--muted);
  line-height:1.55;
  min-height:44px;
}

.price-card strong{
  display:block;
  margin-top:16px;
  color:var(--blue2);
  font-size:1.55rem;
}

/* GALLERY */

.gallery-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.gallery-grid img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:24px;
  border:1px solid var(--line);
}

/* AREAS */

.areas{
  padding:34px;
  border-radius:30px;
  background:
    linear-gradient(135deg,rgba(217,185,138,.10),rgba(47,111,255,.08)),
    var(--card);
  border:1px solid var(--line);
}

.area-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.area-tags span{
  padding:12px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid var(--line);
  color:#e7ddd1;
  font-weight:800;
}

/* HOURS */

.hours-box{
  background:linear-gradient(180deg,var(--card-soft),var(--card));
  border:1px solid var(--line);
  border-radius:30px;
  padding:34px;
}

.hours-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-top:26px;
}

.hours-card{
  background:#11100f;
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
}

.hours-card h3{
  font-size:1.35rem;
  margin-bottom:8px;
}

.hours-card p{
  color:var(--muted);
  font-size:1.1rem;
}

.hours-note{
  margin-top:18px;
  padding:18px 20px;
  border-radius:18px;
  background:rgba(217,185,138,.10);
  border:1px solid rgba(217,185,138,.18);
  color:#ead8bb;
  line-height:1.6;
}

/* CONTACT */

.contact-box{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:36px;
  align-items:start;
  padding:34px;
  border-radius:34px;
  background:linear-gradient(135deg,var(--card-soft),#171615);
  border:1px solid var(--line);
}

.contact-info p{
  margin:16px 0 22px;
  color:var(--muted);
  line-height:1.75;
}

.contact-lines{
  display:grid;
  gap:12px;
}

.contact-line{
  padding:15px 16px;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:#eadfd2;
  font-weight:800;
}

.quote-form{
  display:grid;
  gap:14px;
  width:100%;
}

.quote-form input,
.quote-form select,
.quote-form textarea{
  width:100%;
  padding:16px 18px;
  border-radius:16px;
  border:1px solid var(--line);
  background:#11100f;
  color:white;
  outline:none;
  font-size:1rem;
}

.quote-form textarea{
  min-height:150px;
  resize:vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus{
  border-color:rgba(217,185,138,.35);
}

.direct-contact{
  display:none;
}

/* FOOTER */

footer{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
  padding:40px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
}

/* ANIMATION */

.hidden{
  opacity:0;
  transform:translateY(30px);
  transition:.7s ease;
}

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

/* TABLET */

@media(max-width:1000px){
  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .pricing-grid{
    grid-template-columns:repeat(2,1fr);
  }

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

/* MOBILE */

@media(max-width:768px){

  body{
    background:#11100f;
  }

  nav{
    display:none;
  }

  .navbar{
    top:14px;
    width:calc(100% - 28px);
    padding:13px 16px;
    border-radius:22px;
  }

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

  .logo span{
    font-size:1.05rem;
  }

  .floating-call{
    right:16px;
    bottom:16px;
    padding:12px 15px;
    font-size:.9rem;
    border-radius:999px;
  }

  .hero{
    min-height:82vh;
  }

  .hero-content{
    width:calc(100% - 36px);
    padding-top:120px;
  }

  .hero h1{
    font-size:2.75rem;
    line-height:.96;
    letter-spacing:-.055em;
  }

  .hero p{
    max-width:92%;
    font-size:1rem;
    line-height:1.75;
  }

  .hero-actions{
    flex-direction:column;
  }

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

  .hero-points span{
    width:100%;
    text-align:center;
  }

  .trust{
    width:calc(100% - 36px);
    margin:40px auto 70px;
    grid-template-columns:1fr;
  }

  .section,
  .feature,
  .hours,
  .contact{
    width:100%;
    margin:70px 0;
  }

  .section-header{
    padding:0 24px;
  }

  .section-header h2,
  .feature-text h2,
  .hours-box h2,
  .contact-info h2{
    font-size:2.35rem;
  }

  /* NAKO STYLE MOBILE SLIDER */

  .service-grid,
  .pricing-grid,
  .gallery-grid{
    display:flex;
    overflow-x:auto;
    gap:18px;
    padding:0 24px 18px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
  }

  .service-grid::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar,
  .gallery-grid::-webkit-scrollbar{
    display:none;
  }

  .service-card,
  .price-card{
    flex:0 0 82%;
    min-width:82%;
    max-width:82%;
    scroll-snap-align:center;
    border-radius:28px;
    opacity:.38;
    filter:blur(2px);
    transform:scale(.94);
    transition:
      opacity .35s ease,
      filter .35s ease,
      transform .35s ease;
  }

  .service-card.is-active,
  .price-card.is-active{
    opacity:1;
    filter:blur(0);
    transform:scale(1);
  }

  .service-card img{
    height:210px;
  }

  .gallery-grid img{
    flex:0 0 88%;
    min-width:88%;
    max-width:88%;
    height:250px;
    scroll-snap-align:center;
    opacity:.42;
    filter:blur(2px);
    transform:scale(.94);
    transition:.35s ease;
  }

  .gallery-grid img.is-active{
    opacity:1;
    filter:blur(0);
    transform:scale(1);
  }

  .feature{
    width:calc(100% - 36px);
    margin-left:auto;
    margin-right:auto;
    padding:22px;
    border-radius:28px;
  }

  .feature-image img{
    height:240px;
  }

  .areas{
    width:calc(100% - 36px);
    margin-left:auto;
    margin-right:auto;
    padding:24px;
  }

  .area-tags{
    flex-wrap:nowrap;
    overflow-x:auto;
    scrollbar-width:none;
  }

  .area-tags::-webkit-scrollbar{
    display:none;
  }

  .area-tags span{
    white-space:nowrap;
  }

  .hours{
    width:calc(100% - 36px);
    margin-left:auto;
    margin-right:auto;
  }

  .hours-box{
    padding:24px;
    border-radius:28px;
  }

  .hours-grid{
    grid-template-columns:1fr;
  }

  .contact{
    width:calc(100% - 36px);
    margin-left:auto;
    margin-right:auto;
  }

  .contact-box{
    grid-template-columns:1fr;
    padding:24px;
    border-radius:28px;
    gap:30px;
  }

  .quote-form{
    order:1;
  }

  .contact-info{
    order:2;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea{
    font-size:16px;
    border-radius:18px;
  }

  footer{
    width:calc(100% - 36px);
    text-align:center;
  }
}