:root{
  --bg:#fff5ea;
  --bg2:#ffe7d1;

  --panel:#ffffff;
  --panel-soft:#fffaf4;

  --text:#2a201b;
  --muted:#6f5e54;

  --line:rgba(80,40,20,0.18);
  --shadow:0 18px 40px rgba(120,60,20,0.18);

  --accent:#ff7a3d;
  --accent2:#ff3d77;
  --accent3:#f7b733;

  --radius:18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(255,122,61,0.25), transparent),
    radial-gradient(900px 500px at 90% 0%, rgba(255,61,119,0.18), transparent),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(10px);
  background:rgba(255,245,234,0.82);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
}

.logo{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#fff;
  font-weight:700;
  box-shadow:var(--shadow);
}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
}

.brand-name{ font-size:14px; }
.brand-sub{ font-size:12px; color:var(--muted); }

.nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.pill{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,122,61,0.14);
}

.hero{
  padding:54px 0 36px;
}

.hero h1{
  font-size:clamp(30px,3.8vw,46px);
  line-height:1.05;
}

.muted{ color:var(--muted); }

.btn{
  padding:12px 18px;
  border-radius:14px;
  border:none;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#fff;
  font-weight:600;
  cursor:pointer;
  box-shadow:var(--shadow);
}

.btn-ghost{
  background:#fff;
  color:var(--accent2);
  border:1px solid var(--line);
}

.section{ padding:42px 0; }

.card{
  background:var(--panel);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}

.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.price{
  font-size:30px;
  margin:8px 0;
}

.field{
  display:grid;
  gap:6px;
  margin:12px 0;
}

input,textarea,select{
  padding:12px;
  border-radius:12px;
  border:1px solid var(--line);
  font-size:14px;
}

input:focus,textarea:focus,select:focus{
  outline:none;
  border-color:var(--accent);
}

.checkbox{
  display:flex;
  gap:10px;
  margin:14px 0;
}

footer{
  border-top:1px solid var(--line);
  padding:20px 0;
  margin-top:40px;
}

@media(max-width:900px){
  .grid3{ grid-template-columns:1fr; }
}
