@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root{
  --lar-bg:#000;
  --lar-stroke:rgba(218,165,32,.22);
  --lar-stroke2:rgba(255,215,0,.18);
  --lar-gold2:#f3d36a;
  --lar-text:#f7e7b2;
  --lar-muted:rgba(247,231,178,.82);
  --lar-muted2:rgba(247,231,178,.66);
}

.lar-wrap{
  background: var(--lar-bg);
  color: var(--lar-text);
  font-family: 'Bebas Neue', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  font-size: 18px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lar-wrap *{
  font-family: 'Bebas Neue', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  border-radius: 0 !important;
}

.lar-header{ padding: 0 0 16px; }
.lar-title{
  color: var(--lar-gold2);
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.15;
  letter-spacing: .3px;
}

.lar-card{
  border: 1px solid var(--lar-stroke);
  background: var(--lar-bg);
  padding: 18px;
  max-width: 980px;
}

.lar-grid{
  display: grid;
  gap: 14px;
  margin-top: 14px;
}
.lar-grid-2{ grid-template-columns: 1fr 1fr; }
.lar-grid-3{ grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 900px){
  .lar-grid-2, .lar-grid-3{ grid-template-columns: 1fr; }
}

.lar-field label{
  display:block;
  color: var(--lar-muted);
  font-size: 16px;
  margin: 0 0 8px;
}

.lar-field input,
.lar-field select,
.lar-field textarea{
  width: 100%;
  background: #000;
  color: var(--lar-text);
  border: 1px solid var(--lar-stroke2);
  padding: 12px 14px;
  font-size: 18px;
  outline: none;
}

.lar-field textarea{
  min-height: 110px;
  resize: vertical;
}

.lar-check{
  display:flex;
  align-items:center;
  gap: 10px;
  border: 1px solid rgba(243,211,106,.14);
  padding: 12px 14px;
  background:#000;
  margin-top: 14px;
  color: var(--lar-muted);
  transition: background .12s ease, border-color .12s ease, color .12s ease;
}

.lar-check input{ width:auto; transform: scale(1.2); }

.lar-hint{ margin-top: 8px; color: var(--lar-muted2); font-size: 16px; }

.lar-estimate{
  margin-top: 14px;
  border: 1px solid rgba(243,211,106,.18);
  padding: 14px 14px;
  background:#000;
}
.lar-estimate-title{ color: var(--lar-muted); font-size: 16px; margin-bottom: 6px; }
.lar-estimate-value{ color: var(--lar-gold2); font-size: 30px; line-height: 1.2; }
.lar-estimate-sub{ margin-top: 6px; color: var(--lar-muted); font-size: 16px; }

.lar-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.lar-actions button{
  border: 1px solid rgba(243,211,106,.25);
  background:#000;
  color: var(--lar-text);
  padding: 12px 16px;
  font-size: 18px;
  cursor: pointer;
  transition: background .12s ease, border-color .12s ease, color .12s ease;
}
.lar-actions button:disabled{ opacity:.55; cursor:not-allowed; }

.lar-actions button:hover{
  background: var(--lar-gold2) !important;
  border-color: var(--lar-gold2) !important;
  color: #000 !important;
}

.lar-actions button:focus{
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(243,211,106,.35) !important;
}

.lar-check:hover{
  border-color: var(--lar-gold2) !important;
  background: rgba(243,211,106,.12) !important;
  color: var(--lar-text) !important;
}
.lar-check:hover label{ color: var(--lar-text) !important; }

.lar-status{ margin-top: 12px; color: var(--lar-muted); font-size: 16px; min-height: 22px; }

.lar-hp{
  position:absolute;
  left:-10000px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
