:root{
  --cream:#f8f0e2;
  --dark:#063c2d;
  --red:#a52125;
  --gold:#b8872d;
  --ink:#171717;
  --muted:#6f675e;
  --card:#fffaf0;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,sans-serif;
  background:var(--cream);
  color:var(--ink);
}

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

.topbar{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:18px 6vw;
  background:rgba(248,240,226,.86);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(6,60,45,.08);
}

.brand{
  font-weight:800;
  letter-spacing:.18em;
  color:var(--dark);
  font-size:17px;
}

nav{
  display:flex;
  gap:24px;
  font-size:14px;
  font-weight:700;
  color:var(--dark);
}

.whatsapp,
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:13px 20px;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
}

.whatsapp{
  background:#23b05e;
  color:#fff;
}

.hero{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:32px;
  padding:36px 6vw 24px;
}

.hero-image-wrap{
  width:100%;
  max-width:1600px;
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(6,60,45,.16);
  background:#fff;
  margin:0 auto;
}

.hero-image{
  display:block;
  width:100%;
  height:auto;
  max-height:800px;
}

.eyebrow{
  margin:0 0 12px;
  color:var(--red);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:12px;
  font-weight:900;
}

.hero h1,
.section-title h2,
.quote-copy h2,
.cta h2{
  margin:0;
  color:var(--dark);
  font-family:"Playfair Display",serif;
  line-height:.98;
}

.hero h1{
  font-size:clamp(26px,3vw,48px);
}

.hero-content{
  max-width:900px;
  margin:0 auto;
}

.subhead{
  max-width:800px;
  margin:0 auto;
}

.subhead,
.quote-copy p,
.card p,
.cta p{
  color:var(--muted);
  line-height:1.7;
}

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

.primary{
  background:var(--dark);
  color:#fff;
}

.secondary{
  border-color:rgba(6,60,45,.18);
  color:var(--dark);
  background:#fff7;
}

.stores{
  margin:18px 6vw 0;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.stores span{
  padding:10px 14px;
  border-radius:999px;
  background:#fff7;
  border:1px solid rgba(6,60,45,.12);
  font-weight:800;
  color:var(--dark);
  font-size:13px;
}

.section{
  padding:78px 6vw 0;
}

.section-title{
  margin-bottom:24px;
}

.section-title h2,
.quote-copy h2,
.cta h2{
  font-size:clamp(36px,4vw,58px);
}

.cards{
  display:grid;
  gap:18px;
}

.four{
  grid-template-columns:repeat(4,1fr);
}

.card,
.quote-card,
.fee-grid div,
.timeline,
.cta{
  background:rgba(255,250,240,.88);
  border:1px solid rgba(6,60,45,.1);
  box-shadow:0 16px 50px rgba(6,60,45,.08);
  border-radius:28px;
}

.card{
  padding:26px;
}

.step{
  display:grid;
  place-items:center;
  width:42px;
  height:42px;
  border-radius:14px;
  background:var(--dark);
  color:#fff;
  font-weight:900;
  margin-bottom:18px;
}

.card h3{
  margin:0;
  color:var(--dark);
  font-size:21px;
}

.quote-section{
  padding:82px 6vw 0;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:28px;
  align-items:start;
}

.quote-card{
  padding:28px;
  display:grid;
  gap:16px;
}

label{
  display:grid;
  gap:8px;
  font-weight:800;
  color:var(--dark);
}

input,
select{
  width:100%;
  border:1px solid rgba(6,60,45,.15);
  border-radius:16px;
  padding:15px 14px;
  background:#fff;
  color:var(--ink);
  font:inherit;
  outline:none;
}

input:focus,
select:focus{
  border-color:var(--dark);
}

.estimate{
  border-radius:22px;
  background:#fff;
  padding:18px;
  display:grid;
  gap:12px;
}

.estimate div{
  display:flex;
  justify-content:space-between;
  gap:16px;
  color:var(--muted);
}

.estimate strong{
  color:var(--dark);
}

.estimate .total{
  border-top:1px solid rgba(6,60,45,.12);
  padding-top:14px;
  font-size:18px;
  font-weight:900;
  color:var(--dark);
}

small{
  color:var(--muted);
  line-height:1.5;
}

.full{
  width:100%;
  border:0;
  font-size:15px;
}

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

.fee-grid div{
  padding:22px;
  display:grid;
  gap:8px;
}

.fee-grid strong{
  color:var(--dark);
}

.fee-grid span{
  color:var(--muted);
  line-height:1.5;
}

.timeline{
  padding:20px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.timeline span{
  padding:15px;
  border-radius:18px;
  background:#fff;
  color:var(--muted);
  font-weight:800;
}

.timeline .done{
  background:rgba(6,60,45,.1);
  color:var(--dark);
}

.cta{
  margin:80px 6vw 0;
  padding:54px;
  text-align:center;
}

.cta p{
  font-size:18px;
}

.cta .button{
  margin-top:10px;
}

footer{
  padding:42px 6vw;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:var(--dark);
  font-size:14px;
}

footer strong{
  letter-spacing:.2em;
}

/* Tablet + mobile */
@media(max-width:900px){
  nav{
    display:none;
  }

  .topbar{
    padding:14px 20px;
  }

  .brand{
  letter-spacing:.05em;
  font-size:32px;
  font-weight:800;
}

  .whatsapp{
    padding:14px 24px;
    font-size:16px;
  }

  .hero,
  .quote-section{
    grid-template-columns:1fr;
  }

  .hero{
    padding:28px 20px 24px;
    gap:26px;
  }

  /* Keeps the Wassuna image ABOVE the headline on mobile */
  .hero-image-wrap{
    order:-1;
  }

  .hero-content{
    order:1;
  }

  .hero-image-wrap{
    border-radius:30px;
  }

  .hero h1{
    font-size:clamp(44px,13vw,68px);
  }

  .subhead{
    font-size:20px;
  }

  .hero-actions .button{
    width:100%;
    padding:17px 20px;
    font-size:17px;
  }

  .stores{
    margin-left:20px;
    margin-right:20px;
  }

  .section,
  .quote-section{
    padding-top:54px;
    padding-left:20px;
    padding-right:20px;
  }

  .four,
  .fee-grid,
  .timeline{
    grid-template-columns:1fr 1fr;
  }

  .cta{
    margin-left:20px;
    margin-right:20px;
    padding:34px 20px;
  }
}

/* Small mobile */
@media(max-width:560px){

  .topbar{
    gap:12px;
  }

  .subhead{
    font-size:16px;
    line-height:1.6;
  }

}
  .brand{
    font-size:28px;
    letter-spacing:.05em;
  }

  .whatsapp{
    padding:13px 20px;
    font-size:15px;
  }

  .hero{
    padding-left:20px;
    padding-right:20px;
    gap:18px;
  }

  .hero h1{
    font-size:32px;
  }

  .four,
  .fee-grid,
  .timeline{
    grid-template-columns:1fr;
  }

  .hero-actions .button{
    width:100%;
  }

  .section,
  .quote-section{
    padding-left:20px;
    padding-right:20px;
  }

  .stores,
  .cta{
    margin-left:20px;
    margin-right:20px;
  }

  footer{
    flex-direction:column;
  }
}