.grass-property-shell{
  --grass-form-bg:#f8f6f2;
  --grass-form-card:#ffffff;
  --grass-form-border:rgba(17,17,17,.08);
  --grass-form-text:#181818;
  --grass-form-muted:#6b6b6b;
  --grass-form-accent:#111111;
  --grass-form-shadow:0 24px 60px rgba(17,17,17,.08);
  max-width:1180px;
  margin:0 auto;
  color:var(--grass-form-text);
  font-family:inherit;
}
.grass-property-hero{
  background:linear-gradient(135deg,#fff 0%,#f6f1ea 52%,#f2ede6 100%);
  border:1px solid var(--grass-form-border);
  border-radius:30px;
  padding:32px;
  box-shadow:var(--grass-form-shadow);
  margin-bottom:22px;
}
.grass-property-hero__eyebrow{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#8b7e71;
  margin-bottom:12px;
}
.grass-property-hero h2{
  margin:0 0 12px;
  font-size:clamp(30px,4vw,46px);
  line-height:1.04;
  letter-spacing:-.03em;
}
.grass-property-hero p{
  margin:0;
  max-width:760px;
  color:var(--grass-form-muted);
  font-size:16px;
  line-height:1.7;
}
.grass-property-hero__badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}
.grass-property-hero__badges span{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(17,17,17,.08);
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
}
.grass-property-alert{
  border-radius:22px;
  padding:18px 20px;
  margin-bottom:20px;
  border:1px solid transparent;
}
.grass-property-alert strong{display:block;margin-bottom:8px;}
.grass-property-alert p,
.grass-property-alert ul{margin:0;color:#3e3e3e;line-height:1.6;}
.grass-property-alert ul{padding-left:18px;}
.grass-property-alert--success{background:#f7f5ef;border-color:rgba(17,17,17,.08);}
.grass-property-alert--error{background:#fff5f5;border-color:rgba(155,28,28,.15);}
.grass-property-form{display:block;}
.grass-property-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
}
.grass-property-card{
  background:var(--grass-form-card);
  border:1px solid var(--grass-form-border);
  border-radius:28px;
  padding:24px;
  box-shadow:var(--grass-form-shadow);
}
.grass-property-card__head{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:22px;
}
.grass-property-card__head span{
  width:44px;
  height:44px;
  border-radius:16px;
  background:#111;
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:700;
  flex:0 0 44px;
}
.grass-property-card__head h3{
  margin:0 0 4px;
  font-size:22px;
  line-height:1.1;
}
.grass-property-card__head p{
  margin:0;
  color:var(--grass-form-muted);
  line-height:1.55;
}
.grass-property-fields{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.grass-property-fields--compact{grid-template-columns:repeat(4,minmax(0,1fr));}
.grass-property-field,
.grass-property-upload{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.grass-property-field--full,
.grass-property-upload--full{grid-column:1/-1;}
.grass-property-field span,
.grass-property-upload span{
  font-size:13px;
  font-weight:700;
  color:#2a2a2a;
}
.grass-property-field input,
.grass-property-field select,
.grass-property-field textarea,
.grass-property-upload input[type="file"]{
  width:100%;
  border:1px solid rgba(17,17,17,.12);
  background:#fff;
  border-radius:16px;
  min-height:52px;
  padding:0 16px;
  color:#181818;
  box-sizing:border-box;
  font:inherit;
}
.grass-property-field textarea{
  min-height:128px;
  padding:14px 16px;
  resize:vertical;
}
.grass-property-field input:focus,
.grass-property-field select:focus,
.grass-property-field textarea:focus,
.grass-property-upload input[type="file"]:focus{
  outline:none;
  border-color:#111;
  box-shadow:0 0 0 4px rgba(17,17,17,.06);
}
.grass-property-upload input[type="file"]{padding:12px 16px;min-height:auto;}
.grass-property-upload small,
.grass-property-disclaimer{color:var(--grass-form-muted);line-height:1.55;}
.grass-property-choices{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 20px;
}
.grass-property-chip{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(17,17,17,.1);
  background:#faf8f4;
  cursor:pointer;
  transition:.18s ease;
}
.grass-property-chip input{
  position:absolute;
  inset:0;
  opacity:0;
  cursor:pointer;
}
.grass-property-chip span{
  padding:11px 16px;
  font-size:13px;
  color:#2a2a2a;
}
.grass-property-chip:hover,
.grass-property-chip.is-selected,
.grass-property-chip:has(input:checked){
  background:#111;
  border-color:#111;
}
.grass-property-chip:hover span,
.grass-property-chip.is-selected span,
.grass-property-chip:has(input:checked) span{color:#fff;}
.grass-property-switches{
  display:grid;
  gap:12px;
  margin-top:10px;
}
.grass-property-switches label{
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:#2d2d2d;
  line-height:1.55;
}
.grass-property-switches input{
  margin-top:3px;
  accent-color:#111;
}
.grass-property-submit{
  width:100%;
  border:none;
  border-radius:18px;
  min-height:58px;
  margin-top:22px;
  padding:0 20px;
  background:#111;
  color:#fff;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 18px 35px rgba(17,17,17,.16);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.grass-property-submit:hover{background:#262626;transform:translateY(-1px);box-shadow:0 22px 42px rgba(17,17,17,.18);}
.grass-property-disclaimer{margin:14px 0 0;font-size:13px;}
@media (max-width:980px){
  .grass-property-grid,
  .grass-property-fields,
  .grass-property-fields--compact{grid-template-columns:1fr;}
}
@media (max-width:640px){
  .grass-property-hero,
  .grass-property-card{padding:20px; border-radius:22px;}
  .grass-property-hero h2{font-size:28px;}
}
