:root{
  --bg:#f7f4ee;
  --panel:#ffffff;
  --panel-2:#f2ece2;
  --text:#1f2328;
  --muted:#666d75;
  --line:rgba(31,35,40,.10);
  --accent:#d4b07a;
  --accent-dark:#8f6b3a;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top right, rgba(212,176,122,.18), transparent 24%),
    linear-gradient(180deg,#fbf8f3 0%, #f3ede4 100%);
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1180px, calc(100% - 32px));margin:0 auto}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(12px);
  background:rgba(251,248,243,.92);
  border-bottom:1px solid var(--line);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand-logo{
  width:58px;
  height:58px;
  object-fit:contain;
  border-radius:16px;
  background:transparent;
}

.brand-title{
  font-weight:800;
  letter-spacing:.03em;
}

.brand-sub{
  color:var(--muted);
  font-size:.88rem;
}

.nav{
  display:flex;
  flex-wrap:wrap;
  gap:22px;
  color:#555c64;
  font-size:.96rem;
}

.nav a:hover{color:#111827}

/* Hero */
.hero{
  padding:72px 0 56px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:32px;
  align-items:center;
}

.eyebrow{
  display:inline-block;
  color:#8a6d45;
  text-transform:uppercase;
  letter-spacing:.24em;
  font-size:.78rem;
  margin-bottom:18px;
}

.hero h1{
  font-size:clamp(2.4rem,5vw,4.7rem);
  line-height:1.02;
  margin:0 0 18px;
}

.hero p{
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.7;
  max-width:660px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin:28px 0 22px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:18px;
  font-weight:700;
  border:none;
  cursor:pointer;
}

.btn-primary{
  background:linear-gradient(135deg,#d9b887,#c79d61);
  color:#ffffff;
  box-shadow:0 14px 30px rgba(199,157,97,.24);
}

.btn-secondary{
  border:1px solid rgba(31,35,40,.10);
  background:rgba(255,255,255,.72);
}

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

.hero-points span{
  padding:9px 14px;
  border:1px solid rgba(31,35,40,.10);
  background:rgba(255,255,255,.72);
  border-radius:999px;
  color:#d7d7db;
  font-size:.92rem;
}

/* Main hero card */
.hero-card{
  min-height:470px;
  border-radius:32px;
  padding:18px;
  background:url('assets/hero-panel-bg.png') center center / cover no-repeat;
  box-shadow:0 30px 70px rgba(108,86,51,.18);
  overflow:hidden;
  position:relative;
}

.hero-panel{
  height:100%;
  border-radius:24px;
  padding:28px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  background:transparent;
}

.hero-panel-image{
  background:transparent !important;
  position:relative;
  min-height:100%;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:28px;
}

.hero-text-overlay{
  position:relative;
  z-index:2;
  width:min(92%, 860px);
  margin-top:22px;
  border-radius:28px;
  padding:34px 36px;
  background:linear-gradient(135deg, rgba(255,255,255,.94), rgba(247,241,232,.96));
  border:1px solid rgba(255,255,255,.85);
  box-shadow:0 18px 35px rgba(114,93,61,.14);
}

.panel-kicker{
  text-transform:uppercase;
  letter-spacing:.28em;
  font-size:.78rem;
  color:rgba(15,15,18,.72);
  margin:0 0 10px;
}

.hero-panel h2,
.hero-panel-image h2{
  margin:0 0 10px;
  color:#0d0e11;
  font-size:2rem;
}

.hero-panel p,
.hero-panel-image p{
  color:rgba(20,20,24,.78);
  margin:0;
  max-width:none;
}

/* Sections */
.section{
  padding:78px 0;
}

.section-alt{
  background:rgba(255,255,255,.45);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section-heading{
  max-width:700px;
  margin-bottom:32px;
}

.section-heading h2,
.two-col h2,
#contact h2{
  margin:0 0 14px;
  font-size:clamp(2rem, 3vw, 3rem);
}

.section-heading p,
.two-col p,
#contact p{
  color:var(--muted);
  line-height:1.7;
}

/* Services */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.service-card{
  padding:24px;
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,240,231,.92));
  border:1px solid var(--line);
  box-shadow:0 14px 28px rgba(85,66,35,.08);
}

.service-card h3{
  margin:0 0 10px;
  font-size:1.2rem;
}

.service-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.gallery-card{
  overflow:hidden;
  border-radius:28px;
  background:var(--panel);
  border:1px solid var(--line);
}

.gallery-card img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
}

.gallery-info{
  padding:18px 18px 22px;
}

.gallery-info h3{
  margin:0 0 8px;
}

.gallery-info p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

/* Why us */
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:start;
}

.checklist{
  display:grid;
  gap:14px;
}

.check-item{
  padding:18px 18px 18px 50px;
  position:relative;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,240,231,.92));
  border:1px solid var(--line);
}

.check-item::before{
  content:"";
  position:absolute;
  left:18px;
  top:18px;
  width:18px;
  height:18px;
  border-radius:50%;
  background:linear-gradient(180deg, #ffffff, #9b9ba3);
  box-shadow:0 0 0 5px rgba(255,255,255,.05);
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:start;
}

.contact-card{
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,240,231,.92));
  border:1px solid var(--line);
  padding:24px;
}

.contact-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:16px 0;
  border-bottom:1px solid var(--line);
}

.contact-row:last-child{border-bottom:none}

.contact-label{
  color:var(--muted);
}

.contact-form-wrap{
  display:grid;
  gap:18px;
}

.contact-form{
  border-radius:28px;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,240,231,.92));
  border:1px solid var(--line);
  padding:24px;
  box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.contact-form label{
  display:block;
  margin:0 0 8px;
  color:var(--muted);
  font-size:.92rem;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  border:none;
  outline:none;
  border-radius:16px;
  background:rgba(255,255,255,.94);
  color:var(--text);
  padding:14px 16px;
  font:inherit;
  border:1px solid rgba(31,35,40,.10);
}

.contact-form textarea{
  min-height:140px;
  resize:vertical;
  margin-bottom:14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
  color:#98a0a9;
}

.form-btn{
  margin-top:10px;
  width:100%;
}

.call-now-link{
  display:block;
  margin-top:14px;
  text-align:center;
  color:#1f2328;
  font-weight:700;
  text-decoration:none;
}

.call-now-link:hover{
  text-decoration:underline;
}

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

.preview-grid img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(31,35,40,.10);
}

.upload-note{
  color:var(--muted);
  font-size:.88rem;
  line-height:1.6;
  margin:10px 0 0;
}

/* Socials */
.socials-bottom{
  width:100%;
  padding:54px 20px 48px;
  text-align:center;
  border-top:1px solid var(--line);
}

.socials-bottom h2{
  margin:0 0 26px;
  font-size:clamp(2rem,4vw,2.8rem);
}

.socials-grid-4{
  max-width:980px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}

.social-card{
  display:flex;
  align-items:center;
  gap:16px;
  padding:20px 22px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid rgba(31,35,40,.10);
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}

.social-card:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,.98);
  border-color:rgba(31,35,40,.14);
}

.icon-wrap{
  width:48px;
  height:48px;
  flex:0 0 48px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.social-svg{
  width:48px;
  height:48px;
  display:block;
}

.social-card span{
  font-size:1.1rem;
  font-weight:700;
  color:#1f2328;
}

.footer-under-socials,
.footer-wrap{
  margin-top:34px;
  padding-top:8px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  color:#6b7280;
  font-size:.95rem;
}

/* Footer */
.site-footer{
  padding:24px 0 36px;
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid,
  .two-col,
  .contact-grid,
  .services-grid,
  .gallery-grid{
    grid-template-columns:1fr;
  }

  .hero-card{min-height:360px}

  .socials-grid-4{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 760px){
  .nav-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  .nav{
    gap:14px;
  }

  .brand-title{font-size:.98rem}
  .brand-logo{width:48px;height:48px}

  .form-row{
    grid-template-columns:1fr;
  }

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

@media(max-width:640px){
  .socials-grid-4{
    grid-template-columns:1fr;
  }

  .footer-under-socials,
  .footer-wrap{
    justify-content:center;
    text-align:center;
  }

  .hero-text-overlay{
    width:100%;
    padding:24px 22px;
    margin-top:10px;
  }
}

.btn-secondary:hover,
.hero-points span:hover,
.service-card:hover,
.gallery-card:hover,
.check-item:hover,
.social-card:hover,
.contact-form:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 30px rgba(85,66,35,.10);
}

.service-card,
.gallery-card,
.check-item,
.contact-form,
.social-card,
.hero-points span,
.btn-secondary{
  transition:all .22s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color:rgba(199,157,97,.45);
  box-shadow:0 0 0 4px rgba(212,176,122,.14);
}
