:root{
  --bg:#f5f1e8;
  --card:rgba(255,255,255,.92);
  --card2:rgba(255,255,255,.86);
  --line:rgba(35,35,35,.12);
  --text:#1b1b1b;
  --muted:rgba(30,30,30,.68);
  --soft:rgba(255,255,255,.68);
  --accent:#d7b46a;
}

*{box-sizing:border-box}

body{
  margin:0;
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  font-size:16px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.82),rgba(245,241,232,.92)),
    url('/assets/images/Kitchen Install.jpg') center top / cover fixed no-repeat;
}

.topbar{
  padding:28px 18px 24px;
  border-bottom:1px solid var(--line);
  text-align:center;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(8px);
}

.quote-logo{
  display:block;
  width:min(180px,48vw);
  height:auto;
  margin:0 auto 14px;
}

.brand-kspan{
  font-size:32px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-.5px;
}

.brand-title{
  margin-top:8px;
  font-size:22px;
  font-weight:700;
}

.brand-sub{
  margin-top:8px;
  font-size:15px;
  color:var(--muted);
}

.content{
  max-width:1100px;
  margin:0 auto;
  padding:24px 16px 60px;
}

.card{
  background:linear-gradient(180deg,var(--card),var(--card2));
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
  margin:0 0 18px;
  box-shadow:0 18px 44px rgba(40,33,24,.12);
  backdrop-filter:blur(10px);
}

.h1{
  font-size:28px;
  line-height:1.15;
  font-weight:800;
  margin:0 0 12px;
  letter-spacing:-.3px;
}

.p{
  color:var(--muted);
  line-height:1.55;
  font-size:16px;
  margin:8px 0;
}

.small{
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}

.hr{
  height:1px;
  background:var(--line);
  margin:18px 0;
}

.row{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.field{
  border:1px solid var(--line);
  background:var(--soft);
  border-radius:14px;
  padding:14px;
}

label{
  display:block;
  margin-bottom:8px;
  color:var(--muted);
  font-size:14px;
  font-weight:700;
}

input,select,textarea{
  width:100%;
  border:1px solid rgba(35,35,35,.14);
  background:rgba(255,255,255,.9);
  color:var(--text);
  border-radius:12px;
  padding:12px 13px;
  font:inherit;
  outline:none;
}

input:focus,select:focus,textarea:focus{
  border-color:rgba(150,112,38,.55);
  box-shadow:0 0 0 3px rgba(215,180,106,.22);
}

textarea{
  min-height:120px;
  resize:vertical;
}

input[type="file"]{
  background:rgba(255,255,255,.9);
}

.btn{
  border:0;
  border-radius:12px;
  padding:13px 20px;
  background:var(--accent);
  color:#111;
  font-weight:800;
  font-size:16px;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(90,70,30,.18);
}

.btn:disabled{
  opacity:.55;
  cursor:not-allowed;
}

#hm_chat_log > div > div{
  color:var(--text)!important;
  background:rgba(255,255,255,.72)!important;
  border-color:rgba(35,35,35,.10)!important;
}

@media(max-width:760px){
  body{
    background:
      linear-gradient(180deg,rgba(255,255,255,.88),rgba(245,241,232,.96)),
      url('/assets/images/Kitchen Install.jpg') center top / cover fixed no-repeat;
  }
  .brand-kspan{font-size:27px}
  .brand-title{font-size:20px}
  .card{padding:18px;border-radius:16px}
  .h1{font-size:24px}
  .row{grid-template-columns:1fr}
  .quote-logo{width:min(150px,58vw)}
}
