/* lands/static/lands/css/app.css
   CLEANED for Bootstrap coexistence

   Goals:
   - Keep LandSecure theme (.ls-*) + leaflets + hero + footer + whatsapp + accessibility
   - Avoid undefined variables (nav/primary/border)
   - Keep styles organized & maintainable
*/

/* =========================================================
   1) THEME TOKENS
   ========================================================= */
:root{
  /* Brand */
  --ls-brand: #0b6b3a;
  --ls-brand-600:#095c32;
  --ls-accent: #f2b705;
  --ls-accent-600:#d9a104;

  /* Neutrals */
  --ls-bg: #f4f7f5;
  --ls-surface: #ffffff;
  --ls-surface-2:#f7fbf8;
  --ls-text: #0f172a;
  --ls-muted: #64748b;

  /* Borders / Shadow */
  --ls-border: rgba(11,107,58,.12);
  --ls-border-soft: rgba(2,6,23,.10);
  --ls-shadow: 0 12px 30px rgba(2, 6, 23, .08);
  --ls-radius: 14px;

  /* Feedback */
  --ls-ok: #16a34a;
  --ls-warn: #f59e0b;
  --ls-danger: #dc2626;

  /* Navbar background (replaces old --nav) */
  --ls-nav: #0f172a;

  /* Aliases (backward compatibility if old CSS uses these) */
  --primary: var(--ls-brand);
  --border: var(--ls-border-soft);
  --nav: var(--ls-nav);
}

/* =========================================================
   2) BASE / TYPOGRAPHY
   ========================================================= */
body.ls-theme{
  background: var(--ls-bg);
  color: var(--ls-text);
}

.title{ color: var(--ls-text); }
.subtitle{ color: var(--ls-muted); }

/* =========================================================
   3) CARDS
   ========================================================= */
.card{
  background: var(--ls-surface);
  border: 1px solid var(--ls-border);
  border-radius: var(--ls-radius);
  box-shadow: var(--ls-shadow);
  overflow: hidden; /* helps the accent strip look clean */
}

/* Nice accent bar inside cards */
.card::before{
  content:"";
  display:block;
  height: 4px;
  background: linear-gradient(90deg, var(--ls-brand), var(--ls-accent));
}

/* Headers inside cards */
.card .header{
  border-bottom: 1px solid rgba(2,6,23,.06);
  padding-bottom: 10px;
  margin-bottom: 12px;
}

/* =========================================================
   4) FORMS (Bootstrap harmonization)
   ========================================================= */
label, .form-label{
  font-weight: 800;
  color: #0b1220;
  margin-bottom: 6px;
}

.help, .form-text{
  color: var(--ls-muted);
  font-size: 0.9rem;
}

/* Inputs */
.form-control,
.form-select,
textarea.form-control{
  border-radius: 12px;
  border: 1px solid rgba(2,6,23,.10);
  background: var(--ls-surface-2);
  transition: box-shadow .15s ease, border-color .15s ease, background .15s ease;
}

/* Focus state */
.form-control:focus,
.form-select:focus{
  border-color: rgba(11,107,58,.55);
  box-shadow: 0 0 0 .25rem rgba(11,107,58,.18);
  background: #fff;
}

/* Checkbox */
.form-check-input{
  border-color: rgba(2,6,23,.18);
}
.form-check-input:checked{
  background-color: var(--ls-brand);
  border-color: var(--ls-brand);
}
.form-check-input:focus{
  box-shadow: 0 0 0 .25rem rgba(11,107,58,.18);
}

/* =========================================================
   5) BUTTONS (Your custom .btn system)
   Note: Bootstrap uses .btn too; this intentionally overrides.
   ========================================================= */
.btn, .ls-login{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid transparent;
  transition: transform .08s ease, box-shadow .15s ease, background .15s ease;
}

.btn{
  background: var(--ls-brand);
  color: #fff;
}
.btn:hover{
  background: var(--ls-brand-600);
  box-shadow: 0 10px 18px rgba(11,107,58,.18);
}
.btn:active{ transform: translateY(1px); }

.btn.secondary{
  background: #0f172a;
  color: #fff;
}
.btn.secondary:hover{ background:#111c33; }

.btn.light{
  background: #fff;
  color: var(--ls-text);
  border-color: rgba(2,6,23,.10);
}
.btn.light:hover{
  background: #f8fafc;
  box-shadow: 0 10px 18px rgba(2,6,23,.08);
}

.btn.warn{
  background: var(--ls-accent);
  color: #1b1400;
}
.btn.warn:hover{
  background: var(--ls-accent-600);
}

/* =========================================================
   6) ALERTS / FLASH
   ========================================================= */
.alert, .flash{
  border-radius: 14px;
  border: 1px solid rgba(2,6,23,.08);
  background: #fff;
  padding: 12px 14px;
}

.alert.warn, .flash.warning{
  border-color: rgba(245,158,11,.35);
  background: rgba(245,158,11,.10);
}
.alert.ok, .flash.success{
  border-color: rgba(22,163,74,.28);
  background: rgba(22,163,74,.10);
}
.alert.danger, .flash.error{
  border-color: rgba(220,38,38,.28);
  background: rgba(220,38,38,.10);
}
.alert.muted{
  border-color: rgba(100,116,139,.18);
  background: rgba(100,116,139,.08);
}

/* =========================================================
   7) ACCESSIBILITY
   ========================================================= */
.skip-link{
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background: var(--ls-brand);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
}
.skip-link:focus{
  opacity: 1;
  pointer-events: auto;
  outline: 3px solid #fff;
}

/* =========================================================
   8) NAVBAR — Sleek Topbar + Responsive Menu
   ========================================================= */
.ls-topbar{
  background: var(--ls-nav);
  color: rgba(255,255,255,.88);
  font-size: 13px;
}
.ls-topbar-inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 10px 0;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
}
.ls-topbar-left{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.ls-topbar-right{ display:flex; gap:8px; align-items:center; }
.ls-topbar .dot{ opacity:.55; }
.ls-topbar .pill{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 800;
}

.ls-header{
  position: sticky;
  top: 0;
  z-index: 2000;
  background: #fff;
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.ls-nav{
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 14px 0;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ls-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: #0f172a;
  flex: 1 1 auto;
  min-width: 160px;
}
.ls-brand-text{
  font-weight: 900;
  letter-spacing: .2px;
}

.ls-menu{
  display:flex;
  align-items:center;
  gap: 6px;
}
.ls-menu a{
  display:inline-flex;
  align-items:center;
  color:#0f172a;
  font-weight: 800;
  font-size: 14px;
  padding: 10px 10px;
  border-radius: 10px;
  opacity: .88;
  transition: background 140ms ease, opacity 140ms ease;
}
.ls-menu a:hover{
  background: rgba(15,23,42,.06);
  opacity: 1;
  text-decoration:none;
}

.ls-actions{ display:flex; align-items:center; gap:10px; flex: 0 0 auto; }

.ls-login{
  padding: 8px 12px;
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 10px;
  color:#0f172a;
  font-weight: 800;
  font-size: 14px;
  background: #fff;
}

.ls-burger{
  display:none;
  width: 42px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,.12);
  background:#fff;
  cursor:pointer;
  padding: 0 10px;
  flex-direction: column;
  justify-content:center;
  gap: 5px;
}
.ls-burger span{
  display:block;
  height: 2px;
  background:#0f172a;
  border-radius: 2px;
}

.ls-mobile{
  display:none;
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 10px 0 18px 0;
  border-top: 1px solid rgba(15,23,42,.08);
}
.ls-mobile a{
  display:block;
  padding: 12px 0;
  text-decoration:none;
  color:#0f172a;
  font-weight: 800;
}
.ls-mobile.open{ display:block; }

@media (max-width: 991px){
  .ls-menu{ display:none; }
  .ls-login{ display:none; }
  .ls-burger{ display:flex; }
}

/* =========================================================
   9) HERO
   ========================================================= */
.ls-hero{
  position: relative;
  padding: 72px 0;
  background: url("/static/lands/img/hero.jpeg") center/cover no-repeat;
}
.ls-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
}
.ls-hero > .container{
  position: relative;
  z-index: 2;
}
.ls-hero h1,
.ls-hero p{
  color: #fff !important;
}
.ls-search-card{
  border-radius: 18px;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.92);
}

/* =========================================================
   10) FOOTER (safe)
   ========================================================= */
.footer{
  margin-top: 26px;
  background: var(--ls-nav);
  color: rgba(255,255,255,.75);
}
.footer-inner{
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 14px 0;
  text-align:center;
  font-size: 13px;
}
.footer-inner b{ color: #fff; }

/* =========================================================
   11) MAP PAGE (Leaflet)
   ========================================================= */
.map-shell{
  width: 100%;
  height: calc(100vh - 64px);
  position: relative;
}
.ls-map{
  width: 100%;
  height: 100%;
}

.toast{
  position: absolute;
  z-index: 9999;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,.75);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  max-width: 360px;
}

.area-label{
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(17, 24, 39, 0.25);
  border-radius: 8px;
  padding: 2px 6px;
  font-weight: 900;
  font-size: 12px;
  color: #111827;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  pointer-events: none;
  white-space: nowrap;
}

.ls-legend{
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  font-size: 13px;
  line-height: 1.6;
}
.ls-legend-title{ font-weight: 900; margin-bottom: 6px; color: #111827; }
.ls-legend-row{ display:flex; align-items:center; gap: 8px; color: #111827; }

.ls-swatch{ width: 12px; height: 12px; border-radius: 3px; display: inline-block; }
.ls-swatch.is-available{ background: green; }
.ls-swatch.is-allocated{ background: red; }
.ls-swatch.is-disputed{ background: orange; }

.ls-popup{ min-width: 240px; font-size: 13px; }
.ls-popup-title{ font-weight: 900; font-size: 14px; margin-bottom: 6px; }
.ls-popup-actions{
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.ls-popup-btn{
  display: inline-block;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  border: none;
  cursor: pointer;
}
.ls-popup-btn.dark{ background: #111827; color: #fff; }
.ls-popup-btn.green{ background: var(--ls-brand); color: #fff; }

.ls-popup-form{
  display: inline-flex;
  gap: 6px;
  align-items: center;
  margin-top: 2px;
}
.ls-popup-select{
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(2,6,23,.12);
  font-weight: 800;
  background: #fff;
}

/* Leaflet controls: reset anchor styles */
.leaflet-container .leaflet-bar,
.leaflet-container .leaflet-control{
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}
.leaflet-container .leaflet-bar a{
  text-decoration: none !important;
  color: #111827 !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 34px !important;
  line-height: 34px !important;
  padding: 0 10px !important;
  background: #ffffff !important;
  border: none !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
  width: auto !important;
}
.leaflet-container .leaflet-bar a:hover{ background: #f9fafb !important; }
.leaflet-container .leaflet-control-zoom a{
  width: 34px !important;
  padding: 0 !important;
}
.leaflet-container .leaflet-control-zoom a{ margin-bottom: 6px; }
.leaflet-container .leaflet-control-zoom a:last-child{ margin-bottom: 0; }

/* keep map layers behind navbar */
.leaflet-container,
.leaflet-pane,
.leaflet-top,
.leaflet-bottom{
  z-index: 1 !important;
}

/* =========================================================
   12) WHATSAPP FLOAT
   ========================================================= */
.whatsapp-float{
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  line-height: 55px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  text-decoration: none;
}
.whatsapp-float:hover{
  background-color: #1ebe5d;
  text-decoration: none;
}

/* =========================================================
   13) ACCOUNT DROPDOWN (LS)
   ========================================================= */
.ls-account{ position: relative; }
.ls-account-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(15,23,42,.12);
  background:#fff;
  border-radius: 12px;
  padding: 8px 12px;
  cursor:pointer;
  font-weight: 800;
}
.ls-account-name{ color:#0f172a; }
.ls-caret{ opacity:.7; }

.ls-account-menu{
  display:none;
  position:absolute;
  right:0;
  top: calc(100% + 10px);
  width: 220px;
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  padding: 8px;
  z-index: 5000;
}
.ls-account-menu.open{ display:block; }

.ls-account-menu a{
  display:block;
  padding: 10px 10px;
  border-radius: 10px;
  color:#111827;
  font-weight:800;
  text-decoration:none;
}
.ls-account-menu a:hover{ background: rgba(0,0,0,.06); }

.ls-divider{
  height:1px;
  background: rgba(0,0,0,.10);
  margin: 8px 0;
}

.ls-account-logout{
  width:100%;
  padding: 10px 10px;
  border-radius: 10px;
  border: none;
  cursor:pointer;
  background: #111827;
  color:#fff;
  font-weight:900;
}

/* =========================================================
   LANDSECURE PUBLIC HOME
   ========================================================= */

.ls-home-hero{
    position:relative;
    margin:-24px calc(50% - 50vw) 0;
    padding:90px 0 82px;
    overflow:hidden;
    background:
        linear-gradient(
            115deg,
            rgba(6,46,29,.96),
            rgba(11,107,58,.88)
        ),
        url("/static/lands/img/hero.jpeg")
        center/cover no-repeat;
}

.ls-home-hero-overlay{
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(242,183,5,.18),
            transparent 35%
        );
}

.ls-eyebrow,
.ls-section-kicker{
    display:inline-block;
    font-size:.76rem;
    font-weight:900;
    letter-spacing:.11em;
    text-transform:uppercase;
    color:var(--ls-accent);
}

.ls-home-title{
    max-width:820px;
    margin:15px 0 20px;
    color:#fff;
    font-size:clamp(2.6rem,5vw,4.8rem);
    font-weight:900;
    line-height:1.02;
    letter-spacing:-.04em;
}

.ls-home-title span{
    display:block;
    color:#f8d85b;
}

.ls-home-lead{
    max-width:760px;
    color:rgba(255,255,255,.86);
    font-size:1.12rem;
    line-height:1.8;
}

.ls-home-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:28px;
}

.ls-home-actions .btn{
    min-height:50px;
}

.ls-home-actions .btn-light{
    background:#fff;
    color:#0f172a;
}

.ls-home-actions .btn-outline-light,
.ls-home-cta .btn-outline-light{
    background:transparent;
    border:1px solid rgba(255,255,255,.65);
    color:#fff;
}

.ls-home-actions .btn-outline-light:hover,
.ls-home-cta .btn-outline-light:hover{
    background:#fff;
    color:#0f172a;
}

.ls-home-trust{
    display:flex;
    flex-wrap:wrap;
    gap:28px;
    margin-top:38px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.18);
}

.ls-home-trust div{
    display:flex;
    flex-direction:column;
    gap:2px;
}

.ls-home-trust strong{
    color:#fff;
    font-size:.95rem;
}

.ls-home-trust span{
    color:rgba(255,255,255,.62);
    font-size:.82rem;
}

.ls-hero-panel{
    padding:32px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:24px;
    background:rgba(3,30,18,.68);
    backdrop-filter:blur(12px);
    box-shadow:0 24px 60px rgba(0,0,0,.22);
}

.ls-hero-panel-badge{
    display:inline-flex;
    padding:6px 10px;
    margin-bottom:18px;
    border-radius:999px;
    background:rgba(242,183,5,.15);
    color:#f8d85b;
    font-size:.75rem;
    font-weight:900;
}

.ls-hero-panel h2{
    color:#fff;
    font-size:1.55rem;
    font-weight:800;
    line-height:1.35;
    margin-bottom:22px;
}

.ls-hero-check{
    display:flex;
    gap:11px;
    padding:12px 0;
    color:rgba(255,255,255,.87);
    border-bottom:1px solid rgba(255,255,255,.09);
}

.ls-hero-check:last-child{
    border-bottom:0;
}

.ls-hero-check span{
    color:#f8d85b;
    font-weight:900;
}

.ls-home-section{
    padding:78px 0;
}

.ls-section-heading{
    max-width:790px;
    margin:0 auto;
}

.ls-section-heading h2,
.ls-governance-section h2,
.ls-home-cta h2{
    margin-top:12px;
    font-size:clamp(1.9rem,3vw,2.8rem);
    line-height:1.18;
    font-weight:900;
    letter-spacing:-.025em;
}

.ls-section-heading p{
    margin-top:16px;
    color:var(--ls-muted);
    font-size:1.05rem;
    line-height:1.8;
}

.ls-feature-card{
    height:100%;
    padding:28px;
    border:1px solid rgba(15,23,42,.08);
    border-radius:18px;
    background:#fff;
    box-shadow:0 10px 28px rgba(15,23,42,.05);
    transition:transform .18s ease, box-shadow .18s ease;
}

.ls-feature-card:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(15,23,42,.09);
}

.ls-feature-icon{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    margin-bottom:18px;
    border-radius:13px;
    background:rgba(11,107,58,.10);
    color:var(--ls-brand);
    font-weight:900;
}

.ls-feature-card h3{
    font-size:1.08rem;
    font-weight:900;
    margin-bottom:11px;
}

.ls-feature-card p{
    margin:0;
    color:var(--ls-muted);
    line-height:1.7;
}

.ls-governance-section{
    margin:0 calc(50% - 50vw);
    padding:82px 0;
    background:#0f1d18;
    color:#fff;
}

.ls-governance-section h2{
    color:#fff;
}

.ls-governance-lead{
    margin-top:18px;
    color:rgba(255,255,255,.70);
    line-height:1.8;
}

.ls-governance-list{
    margin-top:30px;
}

.ls-governance-item{
    display:flex;
    gap:14px;
    padding:17px 0;
    border-bottom:1px solid rgba(255,255,255,.09);
}

.ls-governance-item > span{
    width:30px;
    height:30px;
    display:grid;
    place-items:center;
    flex:0 0 30px;
    border-radius:50%;
    background:rgba(242,183,5,.16);
    color:#f8d85b;
    font-weight:900;
}

.ls-governance-item strong{
    display:block;
    color:#fff;
    margin-bottom:4px;
}

.ls-governance-item p{
    margin:0;
    color:rgba(255,255,255,.62);
}

.ls-governance-panel{
    overflow:hidden;
    border:1px solid rgba(255,255,255,.10);
    border-radius:22px;
    background:rgba(255,255,255,.05);
}

.ls-governance-stat{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.ls-governance-stat:last-child{
    border-bottom:0;
}

.ls-governance-stat .number{
    color:#f8d85b;
    font-size:1.2rem;
    font-weight:900;
}

.ls-governance-stat strong{
    display:block;
    color:#fff;
}

.ls-governance-stat small{
    display:block;
    margin-top:3px;
    color:rgba(255,255,255,.60);
    line-height:1.5;
}

.ls-audience-card{
    height:100%;
    padding:22px;
    border-left:4px solid var(--ls-brand);
    border-radius:12px;
    background:#fff;
    box-shadow:0 8px 24px rgba(15,23,42,.05);
}

.ls-audience-card h3{
    font-size:1rem;
    font-weight:900;
}

.ls-audience-card p{
    margin:8px 0 0;
    color:var(--ls-muted);
    line-height:1.6;
}

.ls-home-cta{
    margin:0 calc(50% - 50vw) -24px;
    padding:70px 0;
    background:
        linear-gradient(
            120deg,
            #06341f,
            #0b6b3a
        );
}

.ls-home-cta-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:45px;
}

.ls-home-cta h2{
    max-width:760px;
    color:#fff;
}

.ls-home-cta p{
    max-width:700px;
    margin-top:14px;
    color:rgba(255,255,255,.72);
    line-height:1.7;
}

.ls-home-cta-actions{
    flex:0 0 auto;
    display:flex;
    flex-direction:column;
    gap:10px;
}

@media (max-width:991px){

    .ls-home-hero{
        padding:65px 0;
    }

    .ls-home-cta-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .ls-home-cta-actions{
        width:100%;
        flex-direction:row;
        flex-wrap:wrap;
    }
}

@media (max-width:575px){

    .ls-home-title{
        font-size:2.45rem;
    }

    .ls-home-trust{
        gap:18px;
    }

    .ls-home-actions .btn{
        width:100%;
    }

    .ls-hero-panel{
        padding:24px;
    }

    .ls-home-section{
        padding:58px 0;
    }

    .ls-home-cta-actions{
        flex-direction:column;
    }

    .ls-home-cta-actions .btn{
        width:100%;
    }
}

/* =========================================================
   LANDSECURE BASE LAYOUT ENHANCEMENTS
   ========================================================= */

.ls-topbar-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:rgba(255,255,255,.82);
  text-decoration:none;
  transition:color .15s ease;
}

.ls-topbar-link:hover{
  color:#fff;
}

.ls-topbar-separator{
  opacity:.45;
}

.ls-topbar-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 10px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:12px;
  font-weight:800;
}

.ls-brand-mark{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  flex:0 0 42px;
  border-radius:12px;
  background:linear-gradient(
    135deg,
    var(--ls-brand),
    var(--ls-brand-600)
  );
  color:#fff;
  font-size:.9rem;
  font-weight:900;
  letter-spacing:.04em;
  box-shadow:0 8px 18px rgba(11,107,58,.18);
}

.ls-brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1.08;
}

.ls-brand-text{
  font-size:1rem;
}

.ls-brand-subtitle{
  margin-top:4px;
  color:var(--ls-muted);
  font-size:.69rem;
  font-weight:700;
}

.ls-dashboard-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 12px;
  border-radius:10px;
  background:rgba(11,107,58,.08);
  color:var(--ls-brand);
  font-size:14px;
  font-weight:900;
  text-decoration:none;
}

.ls-dashboard-link:hover{
  background:rgba(11,107,58,.14);
  color:var(--ls-brand-600);
}

.ls-logout-form{
  margin:0;
}

.ls-flash-container{
  padding-top:16px;
}

.ls-mobile-logout-form{
  margin:0;
}

.ls-mobile-logout{
  width:100%;
  padding:12px 0;
  border:0;
  background:transparent;
  color:#0f172a;
  text-align:left;
  font-weight:800;
}


/* =========================================================
   PROFESSIONAL FOOTER
   ========================================================= */

.ls-footer{
  margin-top:0;
  padding:58px 0 22px;
  background:#081712;
  color:rgba(255,255,255,.68);
}

.ls-footer-brand{
  margin-bottom:12px;
  color:#fff;
  font-size:1.35rem;
  font-weight:900;
}

.ls-footer-description{
  max-width:450px;
  margin-bottom:14px;
  line-height:1.75;
}

.ls-footer-tagline{
  margin:0;
  color:#f8d85b;
  font-size:.92rem;
  font-weight:800;
}

.ls-footer-heading{
  margin-bottom:15px;
  color:#fff;
  font-size:.84rem;
  font-weight:900;
  letter-spacing:.07em;
  text-transform:uppercase;
}

.ls-footer-links,
.ls-footer-contact{
  margin:0;
  padding:0;
  list-style:none;
}

.ls-footer-links li,
.ls-footer-contact li{
  margin-bottom:10px;
}

.ls-footer-links a,
.ls-footer-contact a{
  color:rgba(255,255,255,.67);
  text-decoration:none;
  transition:color .15s ease;
}

.ls-footer-links a:hover,
.ls-footer-contact a:hover{
  color:#fff;
}

.ls-footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-top:42px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.46);
  font-size:.78rem;
}


/* =========================================================
   HEADER RESPONSIVE IMPROVEMENTS
   ========================================================= */

@media (max-width: 991px){

  .ls-dashboard-link{
    display:none;
  }

  .ls-brand-subtitle{
    display:none;
  }

  .ls-footer-bottom{
    flex-direction:column;
    gap:5px;
  }
}

@media (max-width: 575px){

  .ls-topbar-inner{
    align-items:flex-start;
  }

  .ls-topbar-right{
    display:none;
  }

  .ls-topbar-left{
    gap:6px;
  }

  .ls-topbar-separator{
    display:none;
  }

  .ls-topbar-link{
    width:100%;
  }

  .ls-brand-mark{
    width:38px;
    height:38px;
    flex-basis:38px;
  }

  .ls-footer{
    padding-top:45px;
  }
}

/* =========================================================
   FINAL LANDING PAGE POLISH
   ========================================================= */

/* Header spacing */
.ls-nav{
  min-height:64px;
}

.ls-brand{
  gap:11px;
}

/* Slightly cleaner brand lockup */
.ls-brand-text{
  font-size:1.02rem;
  letter-spacing:-.01em;
}

.ls-brand-subtitle{
  font-size:.66rem;
  letter-spacing:.02em;
}

/* Hero refinement */
.ls-home-hero{
  padding-top:88px;
  padding-bottom:82px;
}

.ls-home-title{
  max-width:760px;
}

.ls-home-lead{
  max-width:720px;
}

/* Improve hero panel visual balance */
.ls-hero-panel{
  max-width:500px;
  margin-left:auto;
}

.ls-hero-check{
  line-height:1.5;
}

/* Reduce excessive whitespace */
.ls-home-section{
  padding-top:68px;
  padding-bottom:68px;
}

.ls-section-heading{
  margin-bottom:8px;
}

/* Audience cards */
.ls-audience-card{
  min-height:135px;
}

/* Remove unnecessary space after audience area */
.ls-home-section:last-of-type{
  padding-bottom:58px;
}

/* Governance panel refinement */
.ls-governance-panel{
  box-shadow:0 20px 55px rgba(0,0,0,.16);
}

/* CTA spacing */
.ls-home-cta{
  padding-top:62px;
  padding-bottom:62px;
}

.ls-home-cta-inner{
  max-width:1180px;
  margin:0 auto;
}

/* Footer compactness */
.ls-footer{
  padding-top:48px;
}

.ls-footer-bottom{
  margin-top:32px;
}

/* Navigation hover feels more deliberate */
.ls-menu a{
  text-decoration:none;
}

.ls-menu a:hover{
  color:var(--ls-brand);
}

/* Staff login emphasis */
.ls-login{
  min-width:92px;
}

/* Top bar simplification */
.ls-topbar{
  background:#0d1830;
}

.ls-topbar-link{
  font-size:12.5px;
}

/* Slightly smaller hero headline on laptop widths */
@media (max-width: 1200px){
  .ls-home-title{
    font-size:clamp(2.7rem,4.7vw,4.25rem);
  }
}

/* Tablet */
@media (max-width: 991px){
  .ls-home-hero{
    padding-top:64px;
    padding-bottom:64px;
  }

  .ls-hero-panel{
    max-width:none;
    margin-left:0;
  }

  .ls-home-section{
    padding-top:58px;
    padding-bottom:58px;
  }
}

/* Mobile */
@media (max-width: 575px){
  .ls-home-title{
    font-size:2.25rem;
    line-height:1.05;
  }

  .ls-home-lead{
    font-size:1rem;
  }

  .ls-home-section{
    padding-top:48px;
    padding-bottom:48px;
  }

  .ls-governance-section{
    padding-top:56px;
    padding-bottom:56px;
  }

  .ls-home-cta{
    padding-top:52px;
    padding-bottom:52px;
  }

  .ls-footer{
    padding-top:40px;
  }
}

/* =========================================================
   PUBLIC LISTINGS PAGE
   ========================================================= */

.ls-listings-hero{
  padding:72px 0 64px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(242,183,5,.18),
      transparent 28%
    ),
    linear-gradient(
      120deg,
      #073720,
      #0b6b3a
    );
  color:#fff;
}

.ls-listings-hero h1{
  margin:12px 0 16px;
  max-width:850px;
  color:#fff;
  font-size:clamp(2.5rem,5vw,4.3rem);
  font-weight:900;
  line-height:1.02;
  letter-spacing:-.04em;
}

.ls-listings-hero h1 span{
  display:block;
  color:#f8d85b;
}

.ls-listings-hero p{
  max-width:700px;
  margin:0;
  color:rgba(255,255,255,.78);
  font-size:1.05rem;
  line-height:1.75;
}

.ls-listings-trust{
  display:inline-flex;
  flex-direction:column;
  gap:8px;
  padding:18px 22px;
  border:1px solid rgba(255,255,255,.15);
  border-radius:16px;
  background:rgba(0,0,0,.13);
  text-align:left;
}

.ls-listings-trust span{
  position:relative;
  padding-left:18px;
  color:rgba(255,255,255,.80);
  font-size:.88rem;
  font-weight:700;
}

.ls-listings-trust span::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#f8d85b;
}


.ls-listings-section{
  padding:64px 0 78px;
}

.ls-filter-panel{
  margin-top:-105px;
  position:relative;
  z-index:3;
  padding:28px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:20px;
  background:#fff;
  box-shadow:0 20px 55px rgba(15,23,42,.12);
}

.ls-filter-heading{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-end;
  margin-bottom:22px;
}

.ls-filter-kicker{
  display:block;
  margin-bottom:4px;
  color:var(--ls-brand);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-filter-heading h2{
  margin:0;
  font-size:1.4rem;
  font-weight:900;
}

.ls-clear-filter{
  color:var(--ls-muted);
  font-size:.85rem;
  font-weight:800;
  text-decoration:none;
}

.ls-clear-filter:hover{
  color:var(--ls-brand);
}

.ls-filter-actions{
  display:flex;
  gap:10px;
  margin-top:3px;
}

.ls-listings-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  margin:64px 0 24px;
}

.ls-listings-heading h2{
  margin:6px 0;
  font-size:2rem;
  font-weight:900;
  letter-spacing:-.025em;
}

.ls-listings-heading p{
  margin:0;
  color:var(--ls-muted);
}

.ls-published-heading{
  margin-top:70px;
}


/* Parcel card */

.ls-parcel-card{
  height:100%;
  display:flex;
  flex-direction:column;
  padding:24px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 28px rgba(15,23,42,.05);
  transition:
    transform .18s ease,
    box-shadow .18s ease;
}

.ls-parcel-card:hover{
  transform:translateY(-3px);
  box-shadow:0 18px 38px rgba(15,23,42,.09);
}

.ls-parcel-card-top{
  display:flex;
  justify-content:space-between;
  gap:15px;
  align-items:flex-start;
}

.ls-parcel-label{
  display:block;
  margin-bottom:4px;
  color:var(--ls-muted);
  font-size:.72rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.ls-parcel-card h3{
  margin:0;
  font-size:1.05rem;
  font-weight:900;
}

.ls-status-badge{
  display:inline-flex;
  padding:6px 9px;
  border-radius:999px;
  font-size:.68rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.ls-status-available{
  background:rgba(22,163,74,.11);
  color:#15803d;
}

.ls-parcel-divider{
  height:1px;
  margin:19px 0;
  background:rgba(15,23,42,.08);
}

.ls-parcel-meta{
  display:grid;
  gap:15px;
  flex-grow:1;
}

.ls-parcel-meta div{
  display:flex;
  flex-direction:column;
  gap:3px;
}

.ls-parcel-meta span{
  color:var(--ls-muted);
  font-size:.76rem;
}

.ls-parcel-meta strong{
  color:var(--ls-text);
  font-size:.9rem;
  font-weight:800;
}

.ls-parcel-actions{
  display:flex;
  gap:9px;
  margin-top:22px;
}


/* Property card */

.ls-property-card{
  height:100%;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  border:1px solid rgba(15,23,42,.08);
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 28px rgba(15,23,42,.06);
  transition:
    transform .18s ease,
    box-shadow .18s ease;
}

.ls-property-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 42px rgba(15,23,42,.11);
}

.ls-property-image{
  position:relative;
  height:225px;
  display:block;
  overflow:hidden;
  background:#e9f1ec;
}

.ls-property-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .3s ease;
}

.ls-property-card:hover .ls-property-image img{
  transform:scale(1.035);
}

.ls-property-placeholder{
  width:100%;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:
    linear-gradient(
      135deg,
      #0b6b3a,
      #06341f
    );
  color:#fff;
}

.ls-property-placeholder span{
  font-size:1.2rem;
  font-weight:900;
}

.ls-property-placeholder small{
  margin-top:5px;
  color:rgba(255,255,255,.65);
}

.ls-property-badges{
  position:absolute;
  inset:15px 15px auto 15px;
  display:flex;
  justify-content:space-between;
  gap:8px;
}

.ls-listing-type,
.ls-featured-badge{
  display:inline-flex;
  padding:6px 9px;
  border-radius:999px;
  font-size:.68rem;
  font-weight:900;
}

.ls-listing-type{
  background:rgba(6,23,18,.88);
  color:#fff;
}

.ls-featured-badge{
  margin-left:auto;
  background:#f8d85b;
  color:#312400;
}

.ls-property-body{
  flex-grow:1;
  padding:22px;
}

.ls-property-location{
  margin-bottom:7px;
  color:var(--ls-brand);
  font-size:.74rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.ls-property-body h3{
  margin:0 0 10px;
  font-size:1.13rem;
  font-weight:900;
  line-height:1.35;
}

.ls-property-body h3 a{
  color:var(--ls-text);
  text-decoration:none;
}

.ls-property-body h3 a:hover{
  color:var(--ls-brand);
}

.ls-property-price{
  margin-bottom:14px;
  color:var(--ls-text);
  font-size:1.35rem;
  font-weight:900;
}

.ls-property-price span{
  margin-right:3px;
  color:var(--ls-muted);
  font-size:.72rem;
  font-weight:800;
}

.ls-property-description{
  margin:0 0 18px;
  color:var(--ls-muted);
  font-size:.88rem;
  line-height:1.7;
}

.ls-property-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.ls-property-meta span{
  padding:6px 8px;
  border-radius:7px;
  background:#f3f6f4;
  color:#586477;
  font-size:.7rem;
  font-weight:700;
}

.ls-property-footer{
  padding:0 22px 22px;
}


/* Empty state */

.ls-empty-state{
  padding:65px 25px;
  text-align:center;
  border:1px dashed rgba(15,23,42,.15);
  border-radius:18px;
  background:#fff;
}

.ls-empty-icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  margin:0 auto 16px;
  border-radius:15px;
  background:rgba(11,107,58,.10);
  color:var(--ls-brand);
  font-weight:900;
}

.ls-empty-state h3{
  font-size:1.3rem;
  font-weight:900;
}

.ls-empty-state p{
  max-width:470px;
  margin:8px auto 20px;
  color:var(--ls-muted);
}


/* Pagination */

.ls-pagination-wrap{
  margin-top:28px;
}

.ls-pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.ls-page-link,
.ls-page-info{
  padding:9px 13px;
  border-radius:10px;
  font-size:.8rem;
  font-weight:800;
}

.ls-page-link{
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  color:var(--ls-text);
  text-decoration:none;
}

.ls-page-link:hover{
  border-color:rgba(11,107,58,.25);
  color:var(--ls-brand);
}

.ls-page-link.disabled{
  opacity:.45;
}

.ls-page-info{
  color:var(--ls-muted);
}


/* CTA */

.ls-listings-cta{
  padding:62px 0;
  background:#0f1d18;
  color:#fff;
}

.ls-listings-cta-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:35px;
}

.ls-listings-cta h2{
  max-width:760px;
  margin:9px 0;
  color:#fff;
  font-size:clamp(1.8rem,3vw,2.6rem);
  font-weight:900;
  line-height:1.2;
}

.ls-listings-cta p{
  max-width:720px;
  margin:0;
  color:rgba(255,255,255,.65);
  line-height:1.7;
}

.ls-listings-cta-actions{
  display:flex;
  gap:10px;
  flex:0 0 auto;
}


/* Responsive */

@media (max-width:991px){

  .ls-listings-hero{
    padding-bottom:115px;
  }

  .ls-filter-panel{
    margin-top:-75px;
  }

  .ls-listings-cta-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .ls-listings-cta-actions{
    width:100%;
  }
}

@media (max-width:575px){

  .ls-listings-hero{
    padding:54px 0 105px;
  }

  .ls-listings-hero h1{
    font-size:2.5rem;
  }

  .ls-filter-panel{
    padding:20px;
  }

  .ls-filter-heading{
    align-items:flex-start;
    flex-direction:column;
  }

  .ls-filter-actions{
    flex-direction:column;
  }

  .ls-filter-actions .btn{
    width:100%;
  }

  .ls-listings-heading{
    margin-top:48px;
  }

  .ls-parcel-actions{
    flex-direction:column;
  }

  .ls-property-image{
    height:205px;
  }

  .ls-listings-cta-actions{
    flex-direction:column;
  }

  .ls-listings-cta-actions .btn{
    width:100%;
  }
}

/* =========================================================
   PUBLIC LISTING DETAIL PAGE
   ========================================================= */

.ls-detail-header{
  padding:54px 0 46px;
  background:
    radial-gradient(
      circle at 85% 10%,
      rgba(242,183,5,.12),
      transparent 28%
    ),
    linear-gradient(
      120deg,
      #f4f7f5,
      #eef4f0
    );
  border-bottom:1px solid rgba(15,23,42,.07);
}

.ls-detail-back{
  display:inline-flex;
  margin-bottom:24px;
  color:var(--ls-brand);
  font-size:.83rem;
  font-weight:900;
  text-decoration:none;
}

.ls-detail-back:hover{
  color:var(--ls-brand-600);
}

.ls-detail-heading{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:35px;
}

.ls-detail-heading h1{
  max-width:790px;
  margin:9px 0 10px;
  color:var(--ls-text);
  font-size:clamp(2.2rem,4vw,3.6rem);
  line-height:1.08;
  font-weight:900;
  letter-spacing:-.035em;
}

.ls-detail-location{
  color:var(--ls-muted);
  font-size:1rem;
  font-weight:700;
}

.ls-detail-price-block{
  flex:0 0 auto;
  min-width:220px;
  text-align:right;
}

.ls-detail-price-label{
  display:inline-flex;
  margin-bottom:7px;
  padding:5px 9px;
  border-radius:999px;
  background:rgba(11,107,58,.10);
  color:var(--ls-brand);
  font-size:.7rem;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.ls-detail-price{
  color:var(--ls-text);
  font-size:2rem;
  font-weight:900;
  letter-spacing:-.02em;
}

.ls-detail-price small{
  margin-right:4px;
  color:var(--ls-muted);
  font-size:.8rem;
  font-weight:800;
}

.ls-detail-section{
  padding:54px 0 76px;
}


/* Image */

.ls-detail-image-card{
  position:relative;
  overflow:hidden;
  min-height:460px;
  border-radius:22px;
  background:#e8f0eb;
  box-shadow:0 18px 45px rgba(15,23,42,.09);
}

.ls-detail-image-card img{
  display:block;
  width:100%;
  height:460px;
  object-fit:cover;
}

.ls-detail-image-placeholder{
  height:460px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:
    linear-gradient(
      135deg,
      #0b6b3a,
      #06341f
    );
  color:#fff;
}

.ls-detail-placeholder-mark{
  width:60px;
  height:60px;
  display:grid;
  place-items:center;
  margin-bottom:13px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:17px;
  background:rgba(255,255,255,.09);
  font-weight:900;
}

.ls-detail-image-placeholder strong{
  font-size:1.2rem;
}

.ls-detail-image-placeholder span{
  margin-top:4px;
  color:rgba(255,255,255,.65);
  font-size:.85rem;
}

.ls-detail-image-badges{
  position:absolute;
  top:18px;
  left:18px;
  right:18px;
  display:flex;
  justify-content:space-between;
}


/* Content cards */

.ls-detail-card{
  margin-top:28px;
  padding:30px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 28px rgba(15,23,42,.05);
}

.ls-detail-card-heading{
  margin-bottom:18px;
}

.ls-detail-card-kicker,
.ls-detail-summary-kicker{
  display:block;
  margin-bottom:7px;
  color:var(--ls-brand);
  font-size:.7rem;
  font-weight:900;
  letter-spacing:.09em;
  text-transform:uppercase;
}

.ls-detail-card-heading h2{
  margin:0;
  color:var(--ls-text);
  font-size:1.45rem;
  font-weight:900;
}

.ls-detail-card-heading p{
  max-width:690px;
  margin:8px 0 0;
  color:var(--ls-muted);
  line-height:1.65;
}

.ls-detail-description{
  color:#3f4b5c;
  line-height:1.85;
}

.ls-detail-description p:last-child{
  margin-bottom:0;
}

.ls-detail-muted{
  margin:0;
  color:var(--ls-muted);
}


/* Linked parcel */

.ls-linked-parcel{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:20px;
  border:1px solid rgba(11,107,58,.11);
  border-radius:14px;
  background:#f5faf7;
}

.ls-linked-parcel-main{
  display:flex;
  flex-direction:column;
  gap:3px;
}

.ls-linked-label{
  color:var(--ls-muted);
  font-size:.72rem;
  font-weight:800;
}

.ls-linked-parcel-main strong{
  color:var(--ls-text);
  font-size:1.05rem;
}

.ls-linked-parcel-status{
  padding:6px 10px;
  border-radius:999px;
  background:rgba(22,163,74,.11);
  color:#15803d;
  font-size:.7rem;
  font-weight:900;
  text-transform:uppercase;
}


/* Sidebar */

.ls-detail-sidebar{
  position:sticky;
  top:105px;
  display:grid;
  gap:18px;
}

.ls-detail-summary-card,
.ls-detail-enquiry-card,
.ls-detail-record-card{
  padding:24px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 28px rgba(15,23,42,.05);
}

.ls-detail-summary-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:13px 0;
  border-bottom:1px solid rgba(15,23,42,.07);
}

.ls-detail-summary-row:last-child{
  border-bottom:0;
  padding-bottom:0;
}

.ls-detail-summary-row span{
  color:var(--ls-muted);
  font-size:.8rem;
}

.ls-detail-summary-row strong{
  max-width:55%;
  color:var(--ls-text);
  font-size:.82rem;
  text-align:right;
}

.ls-verified-text{
  color:var(--ls-brand) !important;
}

.ls-detail-enquiry-card{
  background:
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
  color:#fff;
}

.ls-detail-enquiry-card .ls-detail-summary-kicker{
  color:#f8d85b;
}

.ls-detail-enquiry-card h2{
  margin:5px 0 10px;
  color:#fff;
  font-size:1.45rem;
  font-weight:900;
}

.ls-detail-enquiry-card p{
  color:rgba(255,255,255,.72);
  font-size:.88rem;
  line-height:1.7;
}

.ls-detail-record-card p{
  margin:0 0 16px;
  color:var(--ls-muted);
  font-size:.87rem;
  line-height:1.65;
}


/* Trust section */

.ls-detail-trust{
  padding:55px 0;
  background:#0f1d18;
}

.ls-detail-trust-item{
  display:flex;
  gap:16px;
  height:100%;
}

.ls-detail-trust-item > span{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  flex:0 0 40px;
  border-radius:12px;
  background:rgba(242,183,5,.12);
  color:#f8d85b;
  font-size:.76rem;
  font-weight:900;
}

.ls-detail-trust-item strong{
  display:block;
  color:#fff;
  font-size:.95rem;
}

.ls-detail-trust-item p{
  margin:7px 0 0;
  color:rgba(255,255,255,.60);
  font-size:.83rem;
  line-height:1.65;
}


/* Responsive */

@media (max-width:991px){

  .ls-detail-heading{
    flex-direction:column;
    align-items:flex-start;
  }

  .ls-detail-price-block{
    min-width:0;
    text-align:left;
  }

  .ls-detail-sidebar{
    position:static;
  }
}

@media (max-width:575px){

  .ls-detail-header{
    padding:42px 0 36px;
  }

  .ls-detail-heading h1{
    font-size:2.25rem;
  }

  .ls-detail-section{
    padding:36px 0 55px;
  }

  .ls-detail-image-card,
  .ls-detail-image-card img,
  .ls-detail-image-placeholder{
    min-height:300px;
    height:300px;
  }

  .ls-detail-card{
    padding:22px;
  }

  .ls-linked-parcel{
    align-items:flex-start;
    flex-direction:column;
  }

  .ls-detail-summary-card,
  .ls-detail-enquiry-card,
  .ls-detail-record-card{
    padding:21px;
  }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */

.ls-about-hero,
.ls-contact-hero{
  padding:78px 0 72px;
  background:
    radial-gradient(
      circle at 83% 20%,
      rgba(242,183,5,.16),
      transparent 30%
    ),
    linear-gradient(
      120deg,
      #073720,
      #0b6b3a
    );
  color:#fff;
}

.ls-about-hero h1,
.ls-contact-hero h1{
  max-width:900px;
  margin:12px 0 18px;
  color:#fff;
  font-size:clamp(2.7rem,5vw,4.5rem);
  line-height:1.03;
  font-weight:900;
  letter-spacing:-.04em;
}

.ls-about-hero h1 span,
.ls-contact-hero h1 span{
  display:block;
  color:#f8d85b;
}

.ls-about-hero p,
.ls-contact-hero p{
  max-width:760px;
  margin:0;
  color:rgba(255,255,255,.76);
  font-size:1.05rem;
  line-height:1.8;
}

.ls-about-hero-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:27px;
}

.ls-about-section{
  padding:74px 0;
}

.ls-about-heading{
  margin:10px 0 18px;
  font-size:clamp(2rem,3.5vw,3rem);
  line-height:1.18;
  font-weight:900;
  letter-spacing:-.03em;
}

.ls-about-lead{
  color:var(--ls-muted);
  line-height:1.85;
}

.ls-about-principles{
  overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
  border-radius:20px;
  background:#fff;
  box-shadow:0 18px 42px rgba(15,23,42,.07);
}

.ls-about-principle{
  display:flex;
  gap:17px;
  padding:22px;
  border-bottom:1px solid rgba(15,23,42,.07);
}

.ls-about-principle:last-child{
  border-bottom:0;
}

.ls-about-principle > span{
  color:var(--ls-brand);
  font-size:.8rem;
  font-weight:900;
}

.ls-about-principle strong{
  display:block;
  margin-bottom:5px;
  font-weight:900;
}

.ls-about-principle p{
  margin:0;
  color:var(--ls-muted);
  line-height:1.6;
}

.ls-about-dark{
  padding:72px 0;
  background:#0f1d18;
}

.ls-about-dark h2{
  margin:9px 0 15px;
  color:#fff;
  font-size:2.1rem;
  font-weight:900;
}

.ls-about-dark p{
  margin:0;
  color:rgba(255,255,255,.66);
  line-height:1.8;
}

.ls-about-capability{
  height:100%;
  padding:25px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:17px;
  background:#fff;
  box-shadow:0 9px 26px rgba(15,23,42,.05);
}

.ls-about-capability > span{
  display:inline-flex;
  margin-bottom:17px;
  padding:7px 9px;
  border-radius:9px;
  background:rgba(11,107,58,.09);
  color:var(--ls-brand);
  font-size:.73rem;
  font-weight:900;
}

.ls-about-capability h3{
  font-size:1.05rem;
  font-weight:900;
}

.ls-about-capability p{
  margin:9px 0 0;
  color:var(--ls-muted);
  line-height:1.7;
}

.ls-about-users{
  padding:72px 0;
  background:#eef4f0;
}

.ls-about-users h2{
  margin:10px 0 16px;
  font-size:2.25rem;
  font-weight:900;
}

.ls-about-users p{
  color:var(--ls-muted);
  line-height:1.8;
}

.ls-about-user-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:13px;
}

.ls-about-user-grid div{
  padding:18px;
  border-radius:14px;
  background:#fff;
}

.ls-about-user-grid strong{
  display:block;
  font-weight:900;
}

.ls-about-user-grid span{
  display:block;
  margin-top:5px;
  color:var(--ls-muted);
  font-size:.83rem;
}

.ls-about-cta{
  padding:62px 0;
  background:linear-gradient(120deg,#06341f,#0b6b3a);
}

.ls-about-cta-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
}

.ls-about-cta h2{
  max-width:760px;
  margin:8px 0;
  color:#fff;
  font-size:2.35rem;
  font-weight:900;
}

.ls-about-cta p{
  margin:0;
  color:rgba(255,255,255,.68);
}

.ls-about-cta-actions{
  display:flex;
  gap:10px;
  flex:0 0 auto;
}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.ls-contact-section{
  padding:72px 0;
}

.ls-contact-info h2{
  margin:10px 0 16px;
  font-size:2.4rem;
  font-weight:900;
}

.ls-contact-info > p{
  margin-bottom:30px;
  color:var(--ls-muted);
  line-height:1.8;
}

.ls-contact-method{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:15px;
  padding:17px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:14px;
  background:#fff;
}

.ls-contact-method-icon{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  flex:0 0 40px;
  border-radius:11px;
  background:rgba(11,107,58,.09);
  color:var(--ls-brand);
  font-size:.72rem;
  font-weight:900;
}

.ls-contact-method span{
  display:block;
  margin-bottom:2px;
  color:var(--ls-muted);
  font-size:.72rem;
}

.ls-contact-method a{
  color:var(--ls-text);
  font-weight:900;
  text-decoration:none;
}

.ls-contact-method a:hover{
  color:var(--ls-brand);
}

.ls-contact-support-box{
  margin-top:25px;
  padding:22px;
  border-radius:16px;
  background:#0f1d18;
}

.ls-contact-support-box strong{
  color:#fff;
}

.ls-contact-support-box p{
  margin:7px 0 0;
  color:rgba(255,255,255,.66);
  font-size:.87rem;
  line-height:1.7;
}

.ls-contact-form-card{
  padding:34px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:22px;
  background:#fff;
  box-shadow:0 18px 45px rgba(15,23,42,.08);
}

.ls-contact-form-heading{
  margin-bottom:28px;
}

.ls-contact-form-kicker{
  display:block;
  margin-bottom:6px;
  color:var(--ls-brand);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.09em;
}

.ls-contact-form-heading h2{
  margin:0;
  font-size:1.75rem;
  font-weight:900;
}

.ls-contact-form-heading p{
  margin:8px 0 0;
  color:var(--ls-muted);
}

.ls-required{
  color:#dc2626;
}

.ls-contact-form-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:23px;
}

.ls-contact-note{
  margin-top:15px;
  color:var(--ls-muted);
  font-size:.79rem;
}

.ls-contact-success-action{
  margin-top:18px;
}

.ls-contact-bottom{
  padding:55px 0;
  background:#0f1d18;
}

.ls-contact-value{
  height:100%;
}

.ls-contact-value > span{
  display:block;
  margin-bottom:11px;
  color:#f8d85b;
  font-size:.75rem;
  font-weight:900;
}

.ls-contact-value strong{
  display:block;
  color:#fff;
}

.ls-contact-value p{
  margin:7px 0 0;
  color:rgba(255,255,255,.60);
  font-size:.83rem;
  line-height:1.65;
}


/* =========================================================
   ABOUT / CONTACT RESPONSIVE
   ========================================================= */

@media (max-width:991px){

  .ls-about-cta-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .ls-about-cta-actions{
    width:100%;
  }
}

@media (max-width:575px){

  .ls-about-hero,
  .ls-contact-hero{
    padding:54px 0;
  }

  .ls-about-hero h1,
  .ls-contact-hero h1{
    font-size:2.4rem;
  }

  .ls-about-section,
  .ls-about-dark,
  .ls-about-users,
  .ls-contact-section{
    padding:52px 0;
  }

  .ls-about-user-grid{
    grid-template-columns:1fr;
  }

  .ls-about-cta-actions,
  .ls-contact-form-actions{
    flex-direction:column;
  }

  .ls-about-cta-actions .btn,
  .ls-contact-form-actions .btn{
    width:100%;
  }

  .ls-contact-form-card{
    padding:22px;
  }

  .ls-about-cta h2{
    font-size:2rem;
  }
}

/* =========================================================
   STAFF LOGIN PAGE
   ========================================================= */

.ls-login-page{
  min-height:100vh;
  margin:0;
  background:#eef3f0;
  color:var(--ls-text);
}

.ls-login-shell{
  min-height:100vh;
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(460px,.95fr);
}


/* Left branding panel */

.ls-login-brand-panel{
  position:relative;
  display:flex;
  min-height:100vh;
  overflow:hidden;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(242,183,5,.18),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #062f1d,
      #0b6b3a
    );
  color:#fff;
}

.ls-login-brand-panel::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  right:-120px;
  bottom:-120px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:50%;
}

.ls-login-brand-panel::after{
  content:"";
  position:absolute;
  width:280px;
  height:280px;
  right:-40px;
  bottom:-50px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:50%;
}

.ls-login-brand-content{
  position:relative;
  z-index:2;
  width:min(680px,100%);
  display:flex;
  flex-direction:column;
  padding:56px 8vw 40px;
}


/* Brand */

.ls-login-brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  width:max-content;
  color:#fff;
  text-decoration:none;
}

.ls-login-brand:hover{
  color:#fff;
}

.ls-login-brand-mark{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.20);
  border-radius:14px;
  background:rgba(255,255,255,.11);
  color:#fff;
  font-size:.9rem;
  font-weight:900;
  letter-spacing:.04em;
  box-shadow:0 12px 28px rgba(0,0,0,.14);
}

.ls-login-brand > span:last-child{
  display:flex;
  flex-direction:column;
}

.ls-login-brand strong{
  color:#fff;
  font-size:1.05rem;
  font-weight:900;
}

.ls-login-brand small{
  margin-top:2px;
  color:rgba(255,255,255,.62);
  font-size:.7rem;
}


/* Main message */

.ls-login-message{
  margin:auto 0;
  padding:70px 0;
}

.ls-login-message .ls-section-kicker{
  color:#f8d85b;
}

.ls-login-message h1{
  max-width:650px;
  margin:15px 0 22px;
  color:#fff;
  font-size:clamp(2.7rem,5vw,4.5rem);
  line-height:1.02;
  font-weight:900;
  letter-spacing:-.045em;
}

.ls-login-message h1 span{
  display:block;
  color:#f8d85b;
}

.ls-login-message > p{
  max-width:630px;
  margin:0;
  color:rgba(255,255,255,.76);
  font-size:1.02rem;
  line-height:1.85;
}


/* Benefits */

.ls-login-benefits{
  display:grid;
  gap:12px;
}

.ls-login-benefits > div{
  display:flex;
  gap:13px;
  padding:14px 0;
  border-top:1px solid rgba(255,255,255,.10);
}

.ls-login-benefits > div > span{
  color:#f8d85b;
  font-size:.76rem;
  font-weight:900;
}

.ls-login-benefits p{
  margin:0;
  color:rgba(255,255,255,.65);
  font-size:.82rem;
  line-height:1.6;
}

.ls-login-benefits strong{
  display:block;
  margin-bottom:2px;
  color:#fff;
  font-size:.86rem;
}


/* Left footer */

.ls-login-brand-footer{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-top:36px;
  padding-top:17px;
  border-top:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.45);
  font-size:.7rem;
}


/* Right form panel */

.ls-login-form-panel{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:48px;
  background:#f8faf9;
}

.ls-login-form-wrap{
  width:100%;
  max-width:465px;
}

.ls-login-mobile-brand{
  display:none;
  margin-bottom:40px;
}

.ls-login-mobile-brand .ls-login-brand{
  color:var(--ls-text);
}

.ls-login-mobile-brand .ls-login-brand strong{
  color:var(--ls-text);
}

.ls-login-mobile-brand .ls-login-brand small{
  color:var(--ls-muted);
}

.ls-login-mobile-brand .ls-login-brand-mark{
  border:0;
  background:linear-gradient(
    135deg,
    var(--ls-brand),
    var(--ls-brand-600)
  );
}


/* Form heading */

.ls-login-form-kicker{
  display:block;
  margin-bottom:8px;
  color:var(--ls-brand);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.11em;
}

.ls-login-form-heading h2{
  margin:0;
  color:var(--ls-text);
  font-size:2.15rem;
  font-weight:900;
  letter-spacing:-.03em;
}

.ls-login-form-heading p{
  margin:9px 0 0;
  color:var(--ls-muted);
  line-height:1.65;
}


/* Form */

.ls-login-form{
  margin-top:30px;
}

.ls-login-field{
  margin-bottom:20px;
}

.ls-login-field > label,
.ls-login-password-label label{
  margin-bottom:7px;
  color:#334155;
  font-size:.82rem;
  font-weight:900;
}

.ls-login-form .form-control,
.ls-login-form .form-select{
  min-height:50px;
  border:1px solid #d8e0dc;
  border-radius:11px;
  background:#fff;
  font-size:.9rem;
  box-shadow:none;
}

.ls-login-form .form-control:focus,
.ls-login-form .form-select:focus{
  border-color:rgba(11,107,58,.50);
  box-shadow:0 0 0 .2rem rgba(11,107,58,.09);
}

.ls-login-help{
  display:block;
  margin-top:6px;
  color:var(--ls-muted);
  font-size:.72rem;
}


/* Password */

.ls-password-wrap{
  position:relative;
}

.ls-password-wrap .form-control{
  padding-right:70px;
}

.ls-password-toggle{
  position:absolute;
  top:50%;
  right:12px;
  transform:translateY(-50%);
  padding:4px 6px;
  border:0;
  background:transparent;
  color:var(--ls-brand);
  font-size:.75rem;
  font-weight:900;
}


/* Submit */

.ls-login-submit{
  width:100%;
  min-height:52px;
  margin-top:5px;
  font-weight:900;
}


/* Security notice */

.ls-login-security-note{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-top:20px;
  padding:14px;
  border-radius:11px;
  background:#eef6f1;
}

.ls-security-icon{
  width:23px;
  height:23px;
  display:grid;
  place-items:center;
  flex:0 0 23px;
  border-radius:50%;
  background:rgba(11,107,58,.11);
  color:var(--ls-brand);
  font-size:.7rem;
  font-weight:900;
}

.ls-login-security-note p{
  margin:0;
  color:#627067;
  font-size:.72rem;
  line-height:1.55;
}


/* Bottom links */

.ls-login-bottom-links{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-top:25px;
  padding-top:20px;
  border-top:1px solid rgba(15,23,42,.07);
}

.ls-login-bottom-links a{
  color:var(--ls-muted);
  font-size:.78rem;
  font-weight:800;
  text-decoration:none;
}

.ls-login-bottom-links a:hover{
  color:var(--ls-brand);
}


/* Messages */

.ls-login-messages{
  margin-top:22px;
}


/* Responsive */

@media (max-width: 991px){

  .ls-login-shell{
    display:block;
  }

  .ls-login-brand-panel{
    display:none;
  }

  .ls-login-form-panel{
    min-height:100vh;
    padding:38px 24px;
  }

  .ls-login-mobile-brand{
    display:block;
  }
}

@media (max-width: 575px){

  .ls-login-form-panel{
    align-items:flex-start;
    padding:28px 20px;
  }

  .ls-login-form-heading h2{
    font-size:1.9rem;
  }

  .ls-login-bottom-links{
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }
}

/* =========================================================
   INTERNAL APPLICATION SHELL
   ========================================================= */

.ls-internal-body{
  margin:0;
  background:#f3f6f4;
  color:var(--ls-text);
}

.ls-app-shell{
  min-height:100vh;
  display:flex;
}


/* Sidebar */

.ls-app-sidebar{
  position:fixed;
  inset:0 auto 0 0;
  z-index:1040;
  width:270px;
  background:
    linear-gradient(
      180deg,
      #081712,
      #0d2419
    );
  color:#fff;
  box-shadow:8px 0 30px rgba(0,0,0,.08);
}

.ls-app-sidebar-inner{
  height:100%;
  display:flex;
  flex-direction:column;
  overflow-y:auto;
}


/* Brand */

.ls-app-brand-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:21px 18px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.ls-app-brand{
  display:flex;
  align-items:center;
  gap:11px;
  color:#fff;
  text-decoration:none;
}

.ls-app-brand:hover{
  color:#fff;
}

.ls-app-brand-mark{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  flex:0 0 42px;
  border-radius:12px;
  background:linear-gradient(
    135deg,
    #0b6b3a,
    #14a05a
  );
  color:#fff;
  font-size:.82rem;
  font-weight:900;
  letter-spacing:.04em;
}

.ls-app-brand-copy{
  display:flex;
  flex-direction:column;
}

.ls-app-brand-copy strong{
  color:#fff;
  font-size:.95rem;
  font-weight:900;
}

.ls-app-brand-copy small{
  margin-top:2px;
  color:rgba(255,255,255,.48);
  font-size:.67rem;
}

.ls-app-sidebar-close{
  display:none;
  border:0;
  background:transparent;
  color:rgba(255,255,255,.7);
  font-size:1.7rem;
}


/* User Card */

.ls-app-user-card{
  display:flex;
  align-items:center;
  gap:11px;
  margin:18px;
  padding:13px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  background:rgba(255,255,255,.04);
}

.ls-app-user-avatar,
.ls-app-account-avatar{
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(242,183,5,.16);
  color:#f8d85b;
  font-weight:900;
}

.ls-app-user-avatar{
  width:38px;
  height:38px;
  flex:0 0 38px;
}

.ls-app-user-info{
  min-width:0;
  display:flex;
  flex-direction:column;
}

.ls-app-user-info strong{
  overflow:hidden;
  color:#fff;
  font-size:.82rem;
  font-weight:900;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.ls-app-user-info span{
  margin-top:2px;
  color:rgba(255,255,255,.48);
  font-size:.67rem;
}


/* Navigation */

.ls-app-nav{
  padding:0 13px 20px;
}

.ls-app-nav-label{
  margin:22px 9px 8px;
  color:rgba(255,255,255,.30);
  font-size:.61rem;
  font-weight:900;
  letter-spacing:.10em;
}

.ls-app-nav-link{
  display:flex;
  align-items:center;
  gap:11px;
  min-height:43px;
  padding:8px 10px;
  margin-bottom:3px;
  border-radius:10px;
  color:rgba(255,255,255,.72);
  font-size:.82rem;
  font-weight:800;
  text-decoration:none;
  transition:
    background .15s ease,
    color .15s ease;
}

.ls-app-nav-link:hover{
  background:rgba(255,255,255,.07);
  color:#fff;
}

.ls-app-nav-icon{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  flex:0 0 28px;
  border-radius:8px;
  background:rgba(255,255,255,.055);
  color:rgba(255,255,255,.46);
  font-size:.60rem;
  font-weight:900;
}

.ls-app-nav-link:hover .ls-app-nav-icon{
  background:rgba(242,183,5,.12);
  color:#f8d85b;
}


/* Sidebar Footer */

.ls-app-sidebar-footer{
  display:flex;
  flex-direction:column;
  margin-top:auto;
  padding:18px;
  border-top:1px solid rgba(255,255,255,.07);
}

.ls-app-sidebar-footer span{
  color:rgba(255,255,255,.55);
  font-size:.70rem;
  font-weight:800;
}

.ls-app-sidebar-footer small{
  margin-top:3px;
  color:rgba(255,255,255,.27);
  font-size:.62rem;
}


/* Main application area */

.ls-app-main{
  width:calc(100% - 270px);
  min-height:100vh;
  margin-left:270px;
}


/* Top bar */

.ls-app-topbar{
  position:sticky;
  top:0;
  z-index:1020;
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  padding:11px 28px;
  border-bottom:1px solid rgba(15,23,42,.07);
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
  box-shadow:0 5px 20px rgba(15,23,42,.035);
}

.ls-app-topbar-left,
.ls-app-topbar-right{
  display:flex;
  align-items:center;
  gap:15px;
}

.ls-app-menu-toggle{
  display:none;
  width:39px;
  height:39px;
  border:1px solid rgba(15,23,42,.09);
  border-radius:10px;
  background:#fff;
  color:var(--ls-text);
  font-size:1rem;
}

.ls-app-page-heading{
  display:flex;
  flex-direction:column;
}

.ls-app-page-heading span{
  color:var(--ls-muted);
  font-size:.65rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.07em;
}

.ls-app-page-heading strong{
  margin-top:1px;
  color:var(--ls-text);
  font-size:.95rem;
  font-weight:900;
}


/* Community */

.ls-app-community-badge{
  display:flex;
  flex-direction:column;
  padding-right:15px;
  border-right:1px solid rgba(15,23,42,.07);
}

.ls-app-community-badge span{
  color:var(--ls-muted);
  font-size:.62rem;
}

.ls-app-community-badge strong{
  max-width:180px;
  overflow:hidden;
  color:var(--ls-text);
  font-size:.77rem;
  font-weight:900;
  text-overflow:ellipsis;
  white-space:nowrap;
}


/* Account */

.ls-app-account-btn{
  display:flex;
  align-items:center;
  gap:9px;
  padding:6px 8px;
  border:0;
  border-radius:10px;
  background:transparent;
}

.ls-app-account-btn:hover{
  background:#f3f6f4;
}

.ls-app-account-avatar{
  width:35px;
  height:35px;
  flex:0 0 35px;
  background:rgba(11,107,58,.10);
  color:var(--ls-brand);
}

.ls-app-account-copy{
  display:flex;
  flex-direction:column;
  text-align:left;
}

.ls-app-account-copy strong{
  max-width:150px;
  overflow:hidden;
  color:var(--ls-text);
  font-size:.76rem;
  font-weight:900;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.ls-app-account-copy small{
  color:var(--ls-muted);
  font-size:.61rem;
}

.ls-app-account-menu{
  min-width:230px;
  padding:8px;
  border:1px solid rgba(15,23,42,.08);
  border-radius:13px;
  box-shadow:0 18px 40px rgba(15,23,42,.12);
}

.ls-app-account-menu-header{
  display:flex;
  flex-direction:column;
  padding:8px 9px;
}

.ls-app-account-menu-header strong{
  font-size:.83rem;
  font-weight:900;
}

.ls-app-account-menu-header span{
  margin-top:2px;
  color:var(--ls-muted);
  font-size:.68rem;
}

.ls-app-account-menu .dropdown-item{
  border-radius:8px;
  font-size:.78rem;
  font-weight:700;
}


/* Content */

.ls-app-content{
  padding:28px;
}

.ls-app-flash-wrap{
  padding:18px 28px 0;
}


/* Overlay */

.ls-app-overlay{
  position:fixed;
  inset:0;
  z-index:1035;
  display:none;
  background:rgba(3,10,7,.48);
}

.ls-app-overlay.open{
  display:block;
}

.ls-no-scroll{
  overflow:hidden;
}


/* =========================================================
   INTERNAL COMMON COMPONENTS
   ========================================================= */

.ls-internal-page-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:20px;
  margin-bottom:24px;
}

.ls-internal-page-header h1{
  margin:4px 0 6px;
  font-size:1.8rem;
  font-weight:900;
  letter-spacing:-.025em;
}

.ls-internal-page-header p{
  margin:0;
  color:var(--ls-muted);
}

.ls-internal-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.ls-internal-card{
  border:1px solid rgba(15,23,42,.07);
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 22px rgba(15,23,42,.04);
}

.ls-stat-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:15px;
}

.ls-stat-card{
  padding:20px;
  border:1px solid rgba(15,23,42,.07);
  border-radius:15px;
  background:#fff;
  box-shadow:0 7px 20px rgba(15,23,42,.04);
}

.ls-stat-card span{
  display:block;
  color:var(--ls-muted);
  font-size:.7rem;
  font-weight:800;
}

.ls-stat-card strong{
  display:block;
  margin-top:7px;
  color:var(--ls-text);
  font-size:1.75rem;
  font-weight:900;
  letter-spacing:-.025em;
}


/* Responsive */

@media (max-width:1200px){

  .ls-stat-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:991px){

  .ls-app-sidebar{
    transform:translateX(-100%);
    transition:transform .22s ease;
  }

  .ls-app-sidebar.open{
    transform:translateX(0);
  }

  .ls-app-sidebar-close{
    display:block;
  }

  .ls-app-main{
    width:100%;
    margin-left:0;
  }

  .ls-app-menu-toggle{
    display:grid;
    place-items:center;
  }

  .ls-app-content{
    padding:22px;
  }

  .ls-app-topbar{
    padding:10px 20px;
  }

  .ls-app-flash-wrap{
    padding-left:22px;
    padding-right:22px;
  }
}

@media (max-width:575px){

  .ls-app-sidebar{
    width:min(86vw,290px);
  }

  .ls-app-topbar{
    padding:9px 14px;
  }

  .ls-app-community-badge{
    display:none;
  }

  .ls-app-account-copy{
    display:none;
  }

  .ls-app-content{
    padding:18px 14px;
  }

  .ls-app-flash-wrap{
    padding-left:14px;
    padding-right:14px;
  }

  .ls-internal-page-header{
    align-items:flex-start;
    flex-direction:column;
  }

  .ls-internal-actions{
    width:100%;
  }

  .ls-internal-actions .btn{
    flex:1;
  }

  .ls-stat-grid{
    grid-template-columns:1fr;
  }
}

/* =========================================================
   ADMINISTRATIVE DASHBOARD
   ========================================================= */

.ls-dashboard-kicker{
  display:block;
  color:var(--ls-brand);
  font-size:.64rem;
  font-weight:900;
  letter-spacing:.11em;
  text-transform:uppercase;
}


/* Filter */

.ls-dashboard-filter{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:22px;
  margin-bottom:20px;
  padding:18px 20px;
  border:1px solid rgba(15,23,42,.07);
  border-radius:15px;
  background:#fff;
  box-shadow:0 7px 20px rgba(15,23,42,.035);
}

.ls-dashboard-filter-heading{
  display:flex;
  flex-direction:column;
}

.ls-dashboard-filter-heading span{
  color:var(--ls-muted);
  font-size:.62rem;
  font-weight:800;
  letter-spacing:.07em;
}

.ls-dashboard-filter-heading strong{
  margin-top:3px;
  color:var(--ls-text);
  font-size:.94rem;
  font-weight:900;
}

.ls-dashboard-filter-form{
  display:flex;
  align-items:end;
  gap:9px;
}

.ls-dashboard-filter-control{
  min-width:250px;
}

.ls-dashboard-filter-control label{
  display:block;
  margin-bottom:5px;
  color:var(--ls-muted);
  font-size:.67rem;
  font-weight:800;
}

.ls-dashboard-filter-control .form-select{
  min-height:42px;
  border:1px solid #dce4df;
  border-radius:10px;
  font-size:.8rem;
  box-shadow:none;
}

.ls-dashboard-reset{
  min-height:42px;
}


/* Stats */

.ls-dashboard-stat-grid{
  margin-bottom:23px;
}

.ls-stat-card{
  position:relative;
  overflow:hidden;
}

.ls-stat-card::after{
  content:"";
  position:absolute;
  width:80px;
  height:80px;
  right:-28px;
  bottom:-30px;
  border-radius:50%;
  background:rgba(15,23,42,.025);
}

.ls-stat-card-primary{
  background:
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
}

.ls-stat-card-primary span,
.ls-stat-card-primary strong,
.ls-stat-card-primary p{
  color:#fff;
}

.ls-stat-card-primary p{
  color:rgba(255,255,255,.60);
}

.ls-stat-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.ls-stat-card-top small{
  width:27px;
  height:27px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:rgba(15,23,42,.04);
  color:var(--ls-muted);
  font-size:.57rem;
  font-weight:900;
}

.ls-stat-card-primary .ls-stat-card-top small{
  background:rgba(255,255,255,.09);
  color:#f8d85b;
}

.ls-stat-card p{
  position:relative;
  z-index:1;
  margin:7px 0 0;
  color:var(--ls-muted);
  font-size:.72rem;
  line-height:1.55;
}

.ls-stat-success{
  color:#138647 !important;
}

.ls-stat-danger{
  color:#c2413b !important;
}

.ls-stat-warning{
  color:#b7791f !important;
}


/* Main panels */

.ls-dashboard-panel{
  overflow:hidden;
  border:1px solid rgba(15,23,42,.07);
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 22px rgba(15,23,42,.04);
}

.ls-dashboard-panel-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:20px;
  padding:22px 22px 17px;
  border-bottom:1px solid rgba(15,23,42,.06);
}

.ls-dashboard-panel-header h2,
.ls-dashboard-small-header h2{
  margin:4px 0;
  color:var(--ls-text);
  font-size:1rem;
  font-weight:900;
}

.ls-dashboard-panel-header p{
  margin:0;
  color:var(--ls-muted);
  font-size:.74rem;
}

.ls-dashboard-panel-link{
  flex:0 0 auto;
  color:var(--ls-brand);
  font-size:.72rem;
  font-weight:900;
  text-decoration:none;
}

.ls-dashboard-panel-link:hover{
  color:var(--ls-brand-600);
}


/* Table */

.ls-dashboard-table{
  margin:0;
}

.ls-dashboard-table thead th{
  padding:12px 18px;
  border-bottom:1px solid rgba(15,23,42,.07);
  background:#f7f9f8;
  color:#718078;
  font-size:.62rem;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.ls-dashboard-table tbody td{
  padding:14px 18px;
  border-color:rgba(15,23,42,.055);
  color:#46534c;
  font-size:.78rem;
  vertical-align:middle;
}

.ls-dashboard-table tbody tr:last-child td{
  border-bottom:0;
}

.ls-dashboard-table tbody tr:hover{
  background:#fafcfb;
}

.ls-parcel-code-cell{
  display:flex;
  align-items:center;
  gap:10px;
}

.ls-parcel-code-icon{
  width:31px;
  height:31px;
  display:grid;
  place-items:center;
  flex:0 0 31px;
  border-radius:8px;
  background:rgba(11,107,58,.08);
  color:var(--ls-brand);
  font-size:.55rem;
  font-weight:900;
}

.ls-parcel-code-cell div{
  min-width:0;
  display:flex;
  flex-direction:column;
}

.ls-parcel-code-cell a{
  color:var(--ls-text);
  font-weight:900;
  text-decoration:none;
}

.ls-parcel-code-cell a:hover{
  color:var(--ls-brand);
}

.ls-parcel-code-cell small{
  margin-top:2px;
  color:var(--ls-muted);
  font-size:.64rem;
}

.ls-table-muted{
  color:var(--ls-muted);
}

.ls-table-action{
  color:var(--ls-brand);
  font-size:.7rem;
  font-weight:900;
  text-decoration:none;
}


/* Status badges */

.ls-status-badge{
  display:inline-flex;
  align-items:center;
  padding:5px 8px;
  border-radius:999px;
  font-size:.59rem;
  font-weight:900;
  letter-spacing:.025em;
  text-transform:uppercase;
}

.ls-status-pending{
  background:#eef1f3;
  color:#64748b;
}

.ls-status-available{
  background:#e9f7ef;
  color:#15803d;
}

.ls-status-allocated{
  background:#fceceb;
  color:#b42318;
}

.ls-status-disputed{
  background:#fff4d9;
  color:#996515;
}

.ls-status-neutral{
  background:#eef1f3;
  color:#64748b;
}


/* Empty */

.ls-dashboard-empty{
  padding:55px 25px;
  text-align:center;
}

.ls-dashboard-empty > span{
  width:45px;
  height:45px;
  display:grid;
  place-items:center;
  margin:0 auto 12px;
  border-radius:12px;
  background:rgba(11,107,58,.08);
  color:var(--ls-brand);
  font-size:.7rem;
  font-weight:900;
}

.ls-dashboard-empty h3{
  margin:0;
  font-size:.95rem;
  font-weight:900;
}

.ls-dashboard-empty p{
  margin:6px 0 0;
  color:var(--ls-muted);
  font-size:.75rem;
}


/* Side panels */

.ls-dashboard-side-stack{
  display:grid;
  gap:18px;
}

.ls-dashboard-small-header{
  padding:21px 21px 13px;
}

.ls-dashboard-summary-list{
  padding:0 21px 14px;
}

.ls-dashboard-summary-list > div{
  display:flex;
  justify-content:space-between;
  gap:15px;
  padding:12px 0;
  border-top:1px solid rgba(15,23,42,.06);
}

.ls-dashboard-summary-list span{
  color:var(--ls-muted);
  font-size:.72rem;
}

.ls-dashboard-summary-list strong{
  max-width:58%;
  color:var(--ls-text);
  font-size:.75rem;
  font-weight:900;
  text-align:right;
}

.ls-summary-success{
  color:#15803d !important;
}


/* Quick links */

.ls-dashboard-quick-panel{
  padding-bottom:7px;
}

.ls-dashboard-quick-links{
  padding:0 13px;
}

.ls-dashboard-quick-links a{
  display:grid;
  grid-template-columns:32px 1fr auto;
  align-items:center;
  gap:10px;
  padding:11px 8px;
  border-top:1px solid rgba(15,23,42,.055);
  color:var(--ls-text);
  text-decoration:none;
}

.ls-dashboard-quick-links > a > span{
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:#f2f6f3;
  color:var(--ls-brand);
  font-size:.56rem;
  font-weight:900;
}

.ls-dashboard-quick-links a div{
  display:flex;
  flex-direction:column;
}

.ls-dashboard-quick-links strong{
  font-size:.75rem;
  font-weight:900;
}

.ls-dashboard-quick-links small{
  margin-top:1px;
  color:var(--ls-muted);
  font-size:.62rem;
}

.ls-dashboard-quick-links b{
  color:#9ba7a0;
  font-size:.8rem;
}

.ls-dashboard-quick-links a:hover strong{
  color:var(--ls-brand);
}


/* Governance */

.ls-dashboard-governance{
  padding:22px;
  border-radius:16px;
  background:
    linear-gradient(
      145deg,
      #082118,
      #0d3826
    );
}

.ls-dashboard-governance > span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.59rem;
  font-weight:900;
  letter-spacing:.09em;
}

.ls-dashboard-governance strong{
  display:block;
  color:#fff;
  font-size:.9rem;
  font-weight:900;
}

.ls-dashboard-governance p{
  margin:8px 0 0;
  color:rgba(255,255,255,.57);
  font-size:.7rem;
  line-height:1.6;
}


/* Responsive */

@media (max-width:991px){

  .ls-dashboard-filter{
    align-items:flex-start;
    flex-direction:column;
  }

  .ls-dashboard-filter-form{
    width:100%;
  }

  .ls-dashboard-filter-control{
    flex:1;
    min-width:0;
  }
}

@media (max-width:575px){

  .ls-dashboard-filter-form{
    align-items:stretch;
    flex-direction:column;
  }

  .ls-dashboard-panel-header{
    flex-direction:column;
  }

  .ls-dashboard-table{
    min-width:650px;
  }
}

/* =========================================================
   CHIEF DASHBOARD
   ========================================================= */

.ls-chief-community-banner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  overflow:hidden;
  margin-bottom:20px;
  padding:26px 28px;
  border-radius:17px;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(248,216,91,.20),
      transparent 27%
    ),
    linear-gradient(
      135deg,
      #092c1d,
      #0b6b3a
    );
  box-shadow:0 12px 28px rgba(6,47,29,.12);
}

.ls-chief-community-banner::after{
  content:"";
  position:absolute;
  width:190px;
  height:190px;
  right:-80px;
  bottom:-100px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:50%;
}

.ls-chief-community-content{
  position:relative;
  z-index:1;
}

.ls-chief-community-content > span{
  display:block;
  margin-bottom:8px;
  color:#f8d85b;
  font-size:.62rem;
  font-weight:900;
  letter-spacing:.11em;
}

.ls-chief-community-content h2{
  margin:0;
  color:#fff;
  font-size:1.75rem;
  font-weight:900;
  letter-spacing:-.025em;
}

.ls-chief-community-content p{
  max-width:620px;
  margin:8px 0 0;
  color:rgba(255,255,255,.65);
  font-size:.77rem;
  line-height:1.65;
}

.ls-chief-community-mark{
  position:relative;
  z-index:1;
  width:92px;
  height:92px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  flex:0 0 92px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:23px;
  background:rgba(255,255,255,.07);
}

.ls-chief-community-mark span{
  color:#fff;
  font-size:1.25rem;
  font-weight:900;
}

.ls-chief-community-mark small{
  margin-top:3px;
  color:#f8d85b;
  font-size:.57rem;
  font-weight:800;
}


/* Governance Card */

.ls-chief-governance-card{
  padding:24px;
  border-radius:17px;
  background:
    linear-gradient(
      145deg,
      #151c31,
      #0f1b35
    );
  color:#fff;
  box-shadow:0 12px 28px rgba(15,27,53,.10);
}

.ls-chief-governance-label{
  display:block;
  margin-bottom:8px;
  color:#f8d85b;
  font-size:.59rem;
  font-weight:900;
  letter-spacing:.10em;
}

.ls-chief-governance-card h3{
  margin:0;
  color:#fff;
  font-size:1rem;
  font-weight:900;
  line-height:1.4;
}

.ls-chief-governance-card p{
  margin:10px 0 0;
  color:rgba(255,255,255,.62);
  font-size:.72rem;
  line-height:1.65;
}

.ls-chief-governance-rule{
  height:1px;
  margin:17px 0;
  background:rgba(255,255,255,.09);
}

.ls-chief-governance-card small{
  display:block;
  color:rgba(255,255,255,.42);
  font-size:.65rem;
  line-height:1.55;
}

.ls-chief-warning-text{
  color:#b7791f !important;
}


/* Mobile */

@media (max-width:575px){

  .ls-chief-community-banner{
    align-items:flex-start;
    flex-direction:column;
    padding:22px;
  }

  .ls-chief-community-mark{
    width:72px;
    height:72px;
    flex-basis:72px;
    border-radius:18px;
  }

  .ls-chief-community-content h2{
    font-size:1.45rem;
  }
}

/* =========================================================
   ELDER DASHBOARD
   ========================================================= */

.ls-elder-community-banner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  overflow:hidden;
  margin-bottom:20px;
  padding:24px 27px;
  border:1px solid rgba(11,107,58,.10);
  border-radius:17px;
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(248,216,91,.20),
      transparent 25%
    ),
    #ffffff;
  box-shadow:0 8px 22px rgba(15,23,42,.04);
}

.ls-elder-community-banner::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:5px;
  background:#0b6b3a;
}

.ls-elder-community-banner > div:first-child{
  position:relative;
  z-index:1;
}

.ls-elder-community-banner span{
  display:block;
  margin-bottom:6px;
  color:var(--ls-brand);
  font-size:.61rem;
  font-weight:900;
  letter-spacing:.10em;
}

.ls-elder-community-banner h2{
  margin:0;
  color:var(--ls-text);
  font-size:1.55rem;
  font-weight:900;
  letter-spacing:-.025em;
}

.ls-elder-community-banner p{
  max-width:620px;
  margin:7px 0 0;
  color:var(--ls-muted);
  font-size:.75rem;
  line-height:1.6;
}

.ls-elder-community-icon{
  width:72px;
  height:72px;
  display:grid;
  place-items:center;
  flex:0 0 72px;
  border-radius:19px;
  background:rgba(11,107,58,.08);
  color:var(--ls-brand);
  font-size:1rem;
  font-weight:900;
}


/* Stewardship card */

.ls-elder-stewardship{
  padding:23px;
  border:1px solid rgba(11,107,58,.10);
  border-radius:17px;
  background:
    linear-gradient(
      145deg,
      #f7faf8,
      #eef6f1
    );
}

.ls-elder-stewardship > span{
  display:block;
  margin-bottom:7px;
  color:var(--ls-brand);
  font-size:.59rem;
  font-weight:900;
  letter-spacing:.10em;
}

.ls-elder-stewardship h3{
  margin:0;
  color:var(--ls-text);
  font-size:.95rem;
  font-weight:900;
  line-height:1.4;
}

.ls-elder-stewardship p{
  margin:9px 0 0;
  color:var(--ls-muted);
  font-size:.71rem;
  line-height:1.65;
}


@media (max-width:575px){

  .ls-elder-community-banner{
    align-items:flex-start;
    flex-direction:column;
    padding:21px;
  }

  .ls-elder-community-icon{
    width:60px;
    height:60px;
    flex-basis:60px;
    border-radius:16px;
  }

  .ls-elder-community-banner h2{
    font-size:1.35rem;
  }
}

/* =========================================================
   SURVEYOR DASHBOARD
   ========================================================= */

.ls-surveyor-banner{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:30px;
  position:relative;
  overflow:hidden;
  margin-bottom:20px;
  padding:25px 27px;
  border-radius:17px;
  background:
    radial-gradient(
      circle at 82% 0%,
      rgba(248,216,91,.20),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #0f1b35,
      #102a3b
    );
  box-shadow:0 12px 30px rgba(15,27,53,.10);
}

.ls-surveyor-banner > div:first-child{
  position:relative;
  z-index:1;
}

.ls-surveyor-banner > div:first-child > span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.6rem;
  font-weight:900;
  letter-spacing:.11em;
}

.ls-surveyor-banner h2{
  margin:0;
  color:#fff;
  font-size:1.55rem;
  font-weight:900;
}

.ls-surveyor-banner p{
  max-width:650px;
  margin:8px 0 0;
  color:rgba(255,255,255,.63);
  font-size:.75rem;
  line-height:1.6;
}

.ls-surveyor-banner-action{
  position:relative;
  z-index:1;
}

.ls-surveyor-banner-action a{
  min-width:215px;
  display:grid;
  grid-template-columns:1fr auto;
  column-gap:14px;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.13);
  border-radius:13px;
  background:rgba(255,255,255,.07);
  color:#fff;
  text-decoration:none;
  transition:.2s ease;
}

.ls-surveyor-banner-action a:hover{
  background:rgba(255,255,255,.11);
  transform:translateY(-1px);
}

.ls-surveyor-banner-action strong{
  font-size:.76rem;
  font-weight:900;
}

.ls-surveyor-banner-action small{
  grid-column:1;
  margin-top:2px;
  color:rgba(255,255,255,.48);
  font-size:.61rem;
}

.ls-surveyor-banner-action b{
  grid-column:2;
  grid-row:1 / span 2;
  align-self:center;
  color:#f8d85b;
}


/* Notifications */

.ls-surveyor-notification-actions{
  display:flex;
  align-items:center;
  gap:8px;
}

.ls-surveyor-notification-actions form{
  margin:0;
}

.ls-notification-count{
  display:inline-flex;
  align-items:center;
  padding:5px 8px;
  border-radius:999px;
  background:#e7f6ed;
  color:#147a3e;
  font-size:.6rem;
  font-weight:900;
}

.ls-notification-count-zero{
  background:#eef1f3;
  color:#68756e;
}

.ls-surveyor-notification-list{
  padding:7px 18px 15px;
}

.ls-surveyor-notification{
  display:grid;
  grid-template-columns:35px 1fr auto;
  align-items:flex-start;
  gap:11px;
  padding:14px 4px;
  border-bottom:1px solid rgba(15,23,42,.06);
}

.ls-surveyor-notification:last-child{
  border-bottom:0;
}

.ls-surveyor-notification-icon{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:9px;
  background:rgba(11,107,58,.08);
  color:var(--ls-brand);
  font-size:.58rem;
  font-weight:900;
}

.ls-surveyor-notification-copy{
  min-width:0;
}

.ls-surveyor-notification-copy strong{
  display:block;
  color:var(--ls-text);
  font-size:.75rem;
  font-weight:900;
}

.ls-surveyor-notification-copy p{
  margin:3px 0;
  color:var(--ls-muted);
  font-size:.69rem;
  line-height:1.5;
}

.ls-surveyor-notification-copy small{
  color:#9aa59f;
  font-size:.59rem;
}


/* Subdivided status */

.ls-status-subdivided{
  background:#eef0fb;
  color:#525bb7;
}


/* Quality card */

.ls-surveyor-quality-card{
  padding:23px;
  border-radius:17px;
  background:
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
  box-shadow:0 12px 28px rgba(7,55,32,.10);
}

.ls-surveyor-quality-card > span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.59rem;
  font-weight:900;
  letter-spacing:.10em;
}

.ls-surveyor-quality-card h3{
  margin:0;
  color:#fff;
  font-size:.95rem;
  font-weight:900;
  line-height:1.45;
}

.ls-surveyor-quality-card p{
  margin:9px 0 0;
  color:rgba(255,255,255,.60);
  font-size:.7rem;
  line-height:1.65;
}


@media (max-width:991px){

  .ls-surveyor-banner{
    grid-template-columns:1fr;
  }

  .ls-surveyor-banner-action a{
    width:100%;
  }
}


@media (max-width:575px){

  .ls-surveyor-banner{
    padding:21px;
  }

  .ls-surveyor-banner h2{
    font-size:1.35rem;
  }

  .ls-surveyor-notification{
    grid-template-columns:34px 1fr;
  }

  .ls-surveyor-notification > .ls-table-action{
    grid-column:2;
    justify-self:start;
  }

  .ls-surveyor-notification-actions{
    align-items:flex-start;
    flex-direction:column;
  }
}

/* =========================================================
   FINANCE DASHBOARD
   ========================================================= */

.ls-finance-filter-panel{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:end;
  gap:24px;
  margin-bottom:20px;
  padding:20px 22px;
  border:1px solid rgba(15,23,42,.07);
  border-radius:16px;
  background:#fff;
  box-shadow:0 8px 22px rgba(15,23,42,.035);
}

.ls-finance-filter-form{
  display:flex;
  align-items:end;
  gap:10px;
}

.ls-finance-filter-form > div{
  min-width:190px;
}

.ls-finance-filter-form label{
  display:block;
  margin-bottom:6px;
  color:var(--ls-text);
  font-size:.66rem;
  font-weight:900;
}

.ls-finance-scope{
  min-width:220px;
  padding-left:20px;
  border-left:1px solid rgba(15,23,42,.08);
}

.ls-finance-scope > span{
  display:block;
  color:var(--ls-brand);
  font-size:.56rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-finance-scope strong{
  display:block;
  margin-top:3px;
  color:var(--ls-text);
  font-size:.85rem;
}

.ls-finance-scope small{
  display:block;
  margin-top:2px;
  color:var(--ls-muted);
  font-size:.62rem;
}


/* Summary */

.ls-finance-stat-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
  margin-bottom:20px;
}

.ls-finance-stat-primary{
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(248,216,91,.15),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
}

.ls-finance-stat-primary .ls-stat-card-top span,
.ls-finance-stat-primary .ls-stat-card-top small,
.ls-finance-stat-primary p{
  color:rgba(255,255,255,.62);
}

.ls-finance-stat-primary strong{
  color:#fff;
}

.ls-finance-status-card{
  padding:19px;
  border:1px solid rgba(15,23,42,.07);
  border-radius:16px;
  background:#fff;
  box-shadow:0 7px 20px rgba(15,23,42,.035);
}

.ls-finance-status-list{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-top:15px;
}

.ls-finance-status-list > div{
  display:grid;
  grid-template-columns:8px 1fr auto;
  align-items:center;
  gap:8px;
  padding:7px 0;
  border-bottom:1px solid rgba(15,23,42,.05);
}

.ls-finance-status-list > div:last-child{
  border-bottom:0;
}

.ls-finance-status-list span{
  color:var(--ls-muted);
  font-size:.68rem;
}

.ls-finance-status-list strong{
  color:var(--ls-text);
  font-size:.72rem;
}

.ls-finance-dot{
  width:7px;
  height:7px;
  border-radius:50%;
}

.ls-finance-dot-danger{
  background:#c94c4c;
}

.ls-finance-dot-warning{
  background:#d8a126;
}

.ls-finance-dot-success{
  background:#25985b;
}


/* Chart */

.ls-finance-chart-wrap{
  position:relative;
  height:320px;
  padding:8px 18px 20px;
}


/* Table amounts */

.ls-finance-amount-warning{
  display:inline-flex;
  padding:5px 8px;
  border-radius:999px;
  background:#fff4db;
  color:#976500;
  font-size:.65rem;
  font-weight:900;
}

.ls-finance-reference{
  color:var(--ls-brand);
  font-weight:800;
}

.ls-finance-paid-amount{
  color:#18794a;
}

.ls-finance-table-empty{
  padding:30px 10px;
  color:var(--ls-muted);
  text-align:center;
  font-size:.72rem;
}


/* Defaulters */

.ls-finance-defaulter-list{
  padding:4px 18px 15px;
}

.ls-finance-defaulter{
  display:grid;
  grid-template-columns:30px 1fr auto;
  align-items:center;
  gap:10px;
  padding:13px 0;
  border-bottom:1px solid rgba(15,23,42,.06);
}

.ls-finance-defaulter:last-child{
  border-bottom:0;
}

.ls-finance-rank{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:8px;
  background:#f2f4f3;
  color:#5e6b64;
  font-size:.62rem;
  font-weight:900;
}

.ls-finance-defaulter-copy{
  min-width:0;
}

.ls-finance-defaulter-copy strong{
  display:block;
  overflow:hidden;
  color:var(--ls-text);
  font-size:.7rem;
  font-weight:900;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.ls-finance-defaulter-copy small{
  display:block;
  margin-top:2px;
  color:var(--ls-muted);
  font-size:.59rem;
}

.ls-finance-defaulter-balance{
  text-align:right;
}

.ls-finance-defaulter-balance small{
  display:block;
  color:var(--ls-muted);
  font-size:.54rem;
}

.ls-finance-defaulter-balance strong{
  display:block;
  margin-top:2px;
  color:#bb3b3b;
  font-size:.69rem;
}

.ls-finance-mini-empty{
  margin:5px 18px 18px;
  padding:17px;
  border-radius:11px;
  background:#f7f9f8;
}

.ls-finance-mini-empty strong{
  display:block;
  color:var(--ls-text);
  font-size:.72rem;
}

.ls-finance-mini-empty span{
  display:block;
  margin-top:3px;
  color:var(--ls-muted);
  font-size:.63rem;
}


/* Accountability */

.ls-finance-governance-card{
  padding:23px;
  border-radius:17px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(248,216,91,.17),
      transparent 35%
    ),
    #0f1b35;
}

.ls-finance-governance-card > span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.58rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-finance-governance-card h3{
  margin:0;
  color:#fff;
  font-size:.96rem;
  font-weight:900;
  line-height:1.42;
}

.ls-finance-governance-card p{
  margin:9px 0 0;
  color:rgba(255,255,255,.58);
  font-size:.69rem;
  line-height:1.65;
}

.ls-finance-danger-text{
  color:#bc3c3c !important;
}


/* Responsive */

@media (max-width:1199px){

  .ls-finance-stat-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}


@media (max-width:767px){

  .ls-finance-filter-panel{
    grid-template-columns:1fr;
  }

  .ls-finance-scope{
    padding-top:15px;
    padding-left:0;
    border-top:1px solid rgba(15,23,42,.08);
    border-left:0;
  }

  .ls-finance-filter-form{
    align-items:stretch;
    flex-direction:column;
  }

  .ls-finance-filter-form > div{
    min-width:0;
  }

  .ls-finance-chart-wrap{
    height:270px;
  }
}


@media (max-width:575px){

  .ls-finance-stat-grid{
    grid-template-columns:1fr;
  }

  .ls-finance-defaulter{
    grid-template-columns:28px 1fr;
  }

  .ls-finance-defaulter-balance{
    grid-column:2;
    text-align:left;
  }
}

/* =========================================================
   HR DASHBOARD
   ========================================================= */

.ls-hr-banner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  overflow:hidden;
  margin-bottom:20px;
  padding:27px;
  border-radius:17px;
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(248,216,91,.18),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #0f1b35,
      #173149
    );
  box-shadow:0 12px 30px rgba(15,27,53,.10);
}

.ls-hr-banner > div:first-child{
  max-width:720px;
}

.ls-hr-banner span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.59rem;
  font-weight:900;
  letter-spacing:.11em;
}

.ls-hr-banner h2{
  margin:0;
  color:#fff;
  font-size:1.55rem;
  font-weight:900;
  letter-spacing:-.025em;
}

.ls-hr-banner p{
  margin:8px 0 0;
  color:rgba(255,255,255,.61);
  font-size:.74rem;
  line-height:1.65;
}

.ls-hr-banner-mark{
  width:74px;
  height:74px;
  display:grid;
  place-items:center;
  flex:0 0 74px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  background:rgba(255,255,255,.07);
  color:#f8d85b;
  font-size:1rem;
  font-weight:900;
}


/* HR function cards */

.ls-hr-module-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:13px;
  padding:3px 18px 19px;
}

.ls-hr-module-card{
  position:relative;
  min-height:152px;
  padding:18px;
  border:1px solid rgba(15,23,42,.065);
  border-radius:13px;
  background:#fafcfb;
  transition:.2s ease;
}

.ls-hr-module-card:hover{
  border-color:rgba(11,107,58,.18);
  background:#fff;
  box-shadow:0 8px 20px rgba(15,23,42,.04);
  transform:translateY(-1px);
}

.ls-hr-module-card > span{
  display:grid;
  place-items:center;
  width:29px;
  height:29px;
  margin-bottom:13px;
  border-radius:8px;
  background:rgba(11,107,58,.08);
  color:var(--ls-brand);
  font-size:.57rem;
  font-weight:900;
}

.ls-hr-module-card h3{
  margin:0;
  color:var(--ls-text);
  font-size:.8rem;
  font-weight:900;
}

.ls-hr-module-card p{
  margin:6px 0 0;
  color:var(--ls-muted);
  font-size:.67rem;
  line-height:1.6;
}


/* Status */

.ls-hr-status-card{
  padding:22px;
  border:1px solid rgba(11,107,58,.10);
  border-radius:17px;
  background:#f4faf6;
}

.ls-hr-status-card > span{
  display:block;
  margin-bottom:7px;
  color:var(--ls-brand);
  font-size:.57rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-hr-status-card h3{
  margin:0;
  color:var(--ls-text);
  font-size:.9rem;
  font-weight:900;
}

.ls-hr-status-card p{
  margin:8px 0 15px;
  color:var(--ls-muted);
  font-size:.67rem;
  line-height:1.6;
}

.ls-hr-status-indicator{
  display:flex;
  align-items:center;
  gap:8px;
  padding-top:12px;
  border-top:1px solid rgba(11,107,58,.10);
}

.ls-hr-status-indicator i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#25985b;
  box-shadow:0 0 0 4px rgba(37,152,91,.10);
}

.ls-hr-status-indicator strong{
  color:#147a3e;
  font-size:.65rem;
}


/* Governance */

.ls-hr-governance-card{
  padding:22px;
  border-radius:17px;
  background:
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
}

.ls-hr-governance-card > span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.57rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-hr-governance-card h3{
  margin:0;
  color:#fff;
  font-size:.91rem;
  font-weight:900;
  line-height:1.45;
}

.ls-hr-governance-card p{
  margin:8px 0 0;
  color:rgba(255,255,255,.60);
  font-size:.67rem;
  line-height:1.65;
}


@media (max-width:767px){

  .ls-hr-module-grid{
    grid-template-columns:1fr;
  }

  .ls-hr-banner{
    align-items:flex-start;
    flex-direction:column;
  }
}

/* =========================================================
   HRM DASHBOARD
   ========================================================= */

.ls-hr-dashboard-banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  margin-bottom:18px;
  padding:25px 27px;
  border-radius:18px;
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(248,216,91,.18),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #0f1b35,
      #18334c
    );
  box-shadow:0 10px 28px rgba(15,27,53,.09);
}

.ls-hr-dashboard-banner > div:first-child{
  max-width:720px;
}

.ls-hr-dashboard-banner span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.58rem;
  font-weight:900;
  letter-spacing:.11em;
}

.ls-hr-dashboard-banner h2{
  margin:0;
  color:#fff;
  font-size:1.45rem;
  font-weight:900;
  letter-spacing:-.025em;
}

.ls-hr-dashboard-banner p{
  margin:7px 0 0;
  color:rgba(255,255,255,.62);
  font-size:.7rem;
  line-height:1.65;
}

.ls-hr-dashboard-mark{
  width:73px;
  height:73px;
  display:grid;
  place-items:center;
  flex:0 0 73px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  background:rgba(255,255,255,.07);
  color:#f8d85b;
  font-size:1rem;
  font-weight:900;
}


/* Statistics */

.ls-hr-stat-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:15px;
  margin-bottom:15px;
}

.ls-hr-stat-featured{
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(248,216,91,.15),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
}

.ls-hr-stat-featured .ls-stat-card-top span,
.ls-hr-stat-featured .ls-stat-card-top small,
.ls-hr-stat-featured p{
  color:rgba(255,255,255,.62);
}

.ls-hr-stat-featured strong{
  color:#fff;
}


/* Secondary status strip */

.ls-hr-status-strip{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  margin-bottom:20px;
  overflow:hidden;
  border:1px solid rgba(15,23,42,.065);
  border-radius:14px;
  background:#fff;
}

.ls-hr-status-strip > div{
  display:flex;
  align-items:center;
  gap:9px;
  padding:13px 15px;
  border-right:1px solid rgba(15,23,42,.06);
}

.ls-hr-status-strip > div:last-child{
  border-right:0;
}

.ls-hr-status-strip small{
  display:block;
  color:var(--ls-muted);
  font-size:.56rem;
}

.ls-hr-status-strip strong{
  display:block;
  margin-top:1px;
  color:var(--ls-text);
  font-size:.78rem;
  font-weight:900;
}

.ls-hr-status-icon{
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  flex:0 0 26px;
  border-radius:8px;
  font-size:.6rem;
  font-weight:900;
}

.ls-hr-status-icon.warning{
  background:#fff4da;
  color:#9a6c00;
}

.ls-hr-status-icon.muted{
  background:#f0f2f1;
  color:#69736e;
}

.ls-hr-status-icon.progress{
  background:#e8f1ff;
  color:#346eab;
}

.ls-hr-status-icon.success{
  background:#e9f7ef;
  color:#19864a;
}

.ls-hr-status-icon.danger{
  background:#fcecec;
  color:#bd3e3e;
}


/* Person cell */

.ls-hr-person{
  display:flex;
  align-items:center;
  gap:9px;
}

.ls-hr-person > span{
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  flex:0 0 32px;
  border-radius:9px;
  background:rgba(11,107,58,.08);
  color:var(--ls-brand);
  font-size:.68rem;
  font-weight:900;
}

.ls-hr-person strong{
  display:block;
  color:var(--ls-text);
  font-size:.69rem;
  font-weight:900;
}

.ls-hr-person small{
  display:block;
  margin-top:2px;
  color:var(--ls-muted);
  font-size:.58rem;
}

.ls-hr-role-chip{
  display:inline-flex;
  padding:5px 8px;
  border-radius:999px;
  background:#edf5f0;
  color:#176940;
  font-size:.59rem;
  font-weight:800;
}


/* Staff statuses */

.ls-status-active{
  background:#e8f7ef;
  color:#187c46;
}

.ls-status-suspended{
  background:#fff3da;
  color:#986500;
}

.ls-status-resigned{
  background:#edf0ef;
  color:#65706a;
}

.ls-status-deceased{
  background:#f5eded;
  color:#795858;
}


/* Task list */

.ls-hr-task-list{
  padding:0 18px 16px;
}

.ls-hr-task-row{
  display:grid;
  grid-template-columns:30px 1fr auto;
  align-items:center;
  gap:10px;
  padding:13px 0;
  border-bottom:1px solid rgba(15,23,42,.055);
}

.ls-hr-task-row:last-child{
  border-bottom:0;
}

.ls-hr-task-status span{
  width:27px;
  height:27px;
  display:grid;
  place-items:center;
  border-radius:8px;
  font-size:.65rem;
  font-weight:900;
}

.ls-hr-task-status .open{
  background:#fff3d9;
  color:#996700;
}

.ls-hr-task-status .progress{
  background:#e9f2ff;
  color:#316da8;
}

.ls-hr-task-status .done{
  background:#e7f7ee;
  color:#198048;
}

.ls-hr-task-status .cancelled{
  background:#f5eded;
  color:#a04848;
}

.ls-hr-task-copy strong{
  display:block;
  color:var(--ls-text);
  font-size:.7rem;
  font-weight:900;
}

.ls-hr-task-copy > div{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:3px;
}

.ls-hr-task-copy span{
  color:var(--ls-muted);
  font-size:.58rem;
}

.ls-hr-task-state{
  color:var(--ls-muted);
  font-size:.59rem;
  font-weight:800;
}


/* Appointment list */

.ls-hr-appointment-list{
  padding:0 18px 15px;
}

.ls-hr-appointment{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:11px 0;
  border-bottom:1px solid rgba(15,23,42,.055);
}

.ls-hr-appointment:last-child{
  border-bottom:0;
}

.ls-hr-appointment strong{
  display:block;
  color:var(--ls-text);
  font-size:.67rem;
}

.ls-hr-appointment span{
  display:block;
  margin-top:2px;
  color:var(--ls-muted);
  font-size:.58rem;
}

.ls-hr-appointment > small{
  flex:0 0 auto;
  color:var(--ls-muted);
  font-size:.56rem;
}


/* Governance card */

.ls-hr-governance-panel{
  padding:22px;
  border-radius:17px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(248,216,91,.13),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
}

.ls-hr-governance-panel > span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.56rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-hr-governance-panel h3{
  margin:0;
  color:#fff;
  font-size:.9rem;
  font-weight:900;
  line-height:1.45;
}

.ls-hr-governance-panel p{
  margin:8px 0 0;
  color:rgba(255,255,255,.60);
  font-size:.66rem;
  line-height:1.65;
}


/* Responsive */

@media (max-width:1199px){

  .ls-hr-stat-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .ls-hr-status-strip{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .ls-hr-status-strip > div{
    border-bottom:1px solid rgba(15,23,42,.06);
  }
}


@media (max-width:767px){

  .ls-hr-status-strip{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}


@media (max-width:575px){

  .ls-hr-dashboard-banner{
    align-items:flex-start;
    flex-direction:column;
  }

  .ls-hr-stat-grid,
  .ls-hr-status-strip{
    grid-template-columns:1fr;
  }

  .ls-hr-status-strip > div{
    border-right:0;
  }

  .ls-hr-task-row{
    grid-template-columns:30px 1fr;
  }

  .ls-hr-task-state{
    grid-column:2;
  }
}

/* =========================================================
   INTERNAL APPLICATION LAYOUT + FOOTER FIX
   ========================================================= */


/* ---------------------------------------------------------
   Main internal application area
   --------------------------------------------------------- */

.ls-main{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}


/* ---------------------------------------------------------
   Page content
   IMPORTANT:
   Do not force this area to fill the whole viewport.
   That was causing the large blank space before the footer.
   --------------------------------------------------------- */

.ls-internal-content{
    width:100%;
    padding:24px;
    min-height:auto;
    flex:0 0 auto;
}


/* ---------------------------------------------------------
   SIMPLE INTERNAL FOOTER
   --------------------------------------------------------- */

.ls-internal-footer-simple{
    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    margin-top:28px;
    padding:14px 4px 8px;

    border:0;
    border-top:1px solid rgba(15, 23, 42, .08);

    background:transparent;

    color:#7b857f;

    font-size:.55rem;
    line-height:1.5;
}


/* Right-hand footer items */

.ls-internal-footer-simple > div{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    flex-wrap:wrap;
    gap:8px;
}


/* Small gold separators */

.ls-internal-footer-simple i{
    width:3px;
    height:3px;

    display:block;
    flex:0 0 3px;

    border-radius:50%;

    background:#d2a927;
}


/* ---------------------------------------------------------
   Optional slightly stronger copyright text
   --------------------------------------------------------- */

.ls-internal-footer-simple > span{
    color:#68736d;
    font-weight:700;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width:991px){

    .ls-internal-content{
        padding:20px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width:767px){

    .ls-internal-content{
        padding:17px;
    }

    .ls-internal-footer-simple{
        align-items:flex-start;
        flex-direction:column;

        gap:6px;

        margin-top:24px;
        padding:13px 0 6px;
    }

    .ls-internal-footer-simple > div{
        justify-content:flex-start;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width:575px){

    .ls-internal-content{
        padding:15px;
    }

    .ls-internal-footer-simple{
        font-size:.52rem;
    }

}

/* =========================================================
   HR STAFF REGISTER
   ========================================================= */

.ls-staff-register-summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;

  margin-bottom:18px;
  padding:20px 23px;

  border:1px solid rgba(15,23,42,.065);
  border-radius:16px;

  background:
    radial-gradient(
      circle at 95% 0,
      rgba(11,107,58,.07),
      transparent 30%
    ),
    #ffffff;
}

.ls-staff-register-summary > div:first-child > span{
  display:block;
  margin-bottom:5px;

  color:var(--ls-brand);
  font-size:.56rem;
  font-weight:900;
  letter-spacing:.11em;
}

.ls-staff-register-summary h2{
  margin:0;

  color:var(--ls-text);

  font-size:1.08rem;
  font-weight:900;
}

.ls-staff-register-summary p{
  margin:5px 0 0;

  color:var(--ls-muted);

  font-size:.66rem;
}


/* Counter */

.ls-staff-register-count{
  min-width:95px;
  padding:12px 18px;

  border-radius:12px;

  background:#f3f8f5;

  text-align:center;
}

.ls-staff-register-count small{
  display:block;

  color:var(--ls-muted);

  font-size:.53rem;
  font-weight:700;
}

.ls-staff-register-count strong{
  display:block;

  margin-top:2px;

  color:var(--ls-brand);

  font-size:1.35rem;
  font-weight:900;
}


/* =========================================================
   STAFF TABLE
   ========================================================= */

.ls-staff-table{
  margin-bottom:0;
}

.ls-staff-table tbody tr{
  transition:.15s ease;
}

.ls-staff-table tbody tr:hover{
  background:#fbfdfc;
}

.ls-staff-name{
  display:block;

  color:var(--ls-text);

  font-size:.69rem;
  font-weight:900;

  text-decoration:none;
}

.ls-staff-name:hover{
  color:var(--ls-brand);
}


/* Contact */

.ls-staff-contact{
  color:#4e5d55;

  font-size:.64rem;
  font-weight:700;
}


/* Community */

.ls-staff-community{
  display:flex;
  align-items:center;
  gap:7px;

  color:#536058;

  font-size:.63rem;
  font-weight:700;
}

.ls-staff-community-dot{
  width:6px;
  height:6px;

  flex:0 0 6px;

  border-radius:50%;

  background:#0b6b3a;

  box-shadow:
    0 0 0 3px rgba(11,107,58,.08);
}


/* Empty */

.ls-staff-empty{
  padding:48px 20px;
}

.ls-staff-empty .btn{
  margin-top:9px;
}


/* =========================================================
   GOVERNANCE NOTE
   ========================================================= */

.ls-staff-governance-note{
  display:flex;
  align-items:flex-start;
  gap:13px;

  margin-top:18px;
  padding:17px 19px;

  border:1px solid rgba(11,107,58,.08);
  border-radius:14px;

  background:#f7faf8;
}

.ls-staff-governance-icon{
  width:34px;
  height:34px;

  display:grid;
  place-items:center;

  flex:0 0 34px;

  border-radius:10px;

  background:
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );

  color:#f8d85b;

  font-size:.56rem;
  font-weight:900;
}

.ls-staff-governance-note strong{
  display:block;

  color:var(--ls-text);

  font-size:.67rem;
  font-weight:900;
}

.ls-staff-governance-note p{
  margin:4px 0 0;

  color:var(--ls-muted);

  font-size:.61rem;
  line-height:1.55;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:767px){

  .ls-staff-register-summary{
    align-items:flex-start;
    flex-direction:column;
  }

  .ls-staff-register-count{
    width:100%;
    text-align:left;
  }

}

/* =========================================================
   HR STAFF DETAIL
   ========================================================= */

.ls-staff-profile-banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  margin-bottom:20px;
  padding:21px 23px;
  border:1px solid rgba(15,23,42,.065);
  border-radius:17px;
  background:
    radial-gradient(
      circle at 95% 0,
      rgba(11,107,58,.08),
      transparent 32%
    ),
    #fff;
}

.ls-staff-profile-identity{
  display:flex;
  align-items:center;
  gap:14px;
}

.ls-staff-profile-avatar{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  flex:0 0 58px;
  border-radius:16px;
  background:linear-gradient(145deg,#073720,#0b6b3a);
  color:#f8d85b;
  font-size:1.1rem;
  font-weight:900;
}

.ls-staff-profile-identity h2{
  margin:2px 0 7px;
  color:var(--ls-text);
  font-size:1.15rem;
  font-weight:900;
}

.ls-staff-profile-meta{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:7px;
}

.ls-staff-profile-community{
  min-width:150px;
  padding-left:20px;
  border-left:1px solid rgba(15,23,42,.08);
}

.ls-staff-profile-community small{
  display:block;
  color:var(--ls-muted);
  font-size:.54rem;
}

.ls-staff-profile-community strong{
  display:block;
  margin-top:3px;
  color:var(--ls-text);
  font-size:.75rem;
  font-weight:900;
}


/* Detail grid */

.ls-staff-detail-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:0;
  padding:0 18px 10px;
}

.ls-staff-detail-item{
  padding:14px 12px;
  border-bottom:1px solid rgba(15,23,42,.055);
}

.ls-staff-detail-item span{
  display:block;
  margin-bottom:3px;
  color:var(--ls-muted);
  font-size:.55rem;
}

.ls-staff-detail-item strong{
  display:block;
  color:var(--ls-text);
  font-size:.68rem;
  font-weight:800;
}


/* Additional information */

.ls-staff-additional-info{
  margin:4px 18px 18px;
  padding:16px;
  border-radius:12px;
  background:#f8faf9;
}

.ls-staff-additional-info > div + div{
  margin-top:13px;
  padding-top:13px;
  border-top:1px solid rgba(15,23,42,.055);
}

.ls-staff-additional-info span{
  display:block;
  margin-bottom:3px;
  color:var(--ls-muted);
  font-size:.55rem;
  font-weight:700;
}

.ls-staff-additional-info p{
  margin:0;
  color:#45534b;
  font-size:.65rem;
  line-height:1.55;
}


/* Table detail */

.ls-staff-table-title{
  display:block;
  color:var(--ls-text);
  font-size:.67rem;
  font-weight:900;
}

.ls-staff-table-note{
  display:block;
  margin-top:3px;
  max-width:280px;
  color:var(--ls-muted);
  font-size:.56rem;
  line-height:1.45;
}

.ls-staff-date-range strong{
  display:block;
  color:#46534c;
  font-size:.62rem;
}

.ls-staff-date-range small{
  display:block;
  margin-top:2px;
  color:var(--ls-muted);
  font-size:.55rem;
}

.ls-evidence-ref{
  display:inline-block;
  padding:4px 7px;
  border-radius:6px;
  background:#f2f4f3;
  color:#536058;
  font-size:.57rem;
  font-weight:800;
}

.ls-staff-appointed-by{
  color:#4c5a52;
  font-size:.61rem;
  font-weight:700;
}


/* Task status */

.ls-task-open{
  background:#fff3d8;
  color:#956600;
}

.ls-task-progress{
  background:#e8f1ff;
  color:#316ca7;
}

.ls-task-cancelled{
  background:#f6ecec;
  color:#a44747;
}

.ls-staff-related-link{
  color:var(--ls-brand);
  font-size:.61rem;
  font-weight:800;
  text-decoration:none;
}

.ls-staff-related-link:hover{
  text-decoration:underline;
}

.ls-staff-related-record,
.ls-staff-due-date{
  color:#4f5c55;
  font-size:.61rem;
  font-weight:700;
}


/* Appointment form */

.ls-staff-appointment-form{
  padding:0 18px 18px;
}

.ls-staff-appointment-form .ls-form-group{
  margin-bottom:13px;
}

.ls-staff-appointment-form label{
  display:block;
  margin-bottom:5px;
  color:#37453d;
  font-size:.6rem;
  font-weight:800;
}

.ls-staff-appointment-form input,
.ls-staff-appointment-form select,
.ls-staff-appointment-form textarea{
  width:100%;
  min-height:39px;
  padding:8px 10px;
  border:1px solid #dce2de;
  border-radius:8px;
  background:#fff;
  color:#27332d;
  font-size:.64rem;
  outline:none;
  transition:.15s ease;
}

.ls-staff-appointment-form textarea{
  min-height:78px;
  resize:vertical;
}

.ls-staff-appointment-form input:focus,
.ls-staff-appointment-form select:focus,
.ls-staff-appointment-form textarea:focus{
  border-color:rgba(11,107,58,.45);
  box-shadow:0 0 0 3px rgba(11,107,58,.07);
}

.ls-form-help{
  display:block;
  margin-top:4px;
  color:#8a948e;
  font-size:.53rem;
}

.ls-form-error{
  margin-top:4px;
  color:#b23838;
  font-size:.55rem;
  font-weight:700;
}


/* Governance */

.ls-staff-governance-card{
  padding:22px;
  border-radius:17px;
  background:linear-gradient(145deg,#073720,#0b6b3a);
}

.ls-staff-governance-card > span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.56rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-staff-governance-card h3{
  margin:0;
  color:#fff;
  font-size:.9rem;
  font-weight:900;
  line-height:1.45;
}

.ls-staff-governance-card p{
  margin:8px 0 0;
  color:rgba(255,255,255,.61);
  font-size:.65rem;
  line-height:1.6;
}


/* Responsive */

@media(max-width:767px){

  .ls-staff-profile-banner{
    align-items:flex-start;
    flex-direction:column;
  }

  .ls-staff-profile-community{
    width:100%;
    padding:12px 0 0;
    border-left:0;
    border-top:1px solid rgba(15,23,42,.08);
  }

  .ls-staff-detail-grid{
    grid-template-columns:1fr;
  }

}

/* =========================================================
   HR STAFF FORM
   ========================================================= */

.ls-staff-form-wrap{
  padding:4px 20px 22px;
}


/* Form grid */

.ls-staff-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px 18px;
}

.ls-staff-form-grid .ls-form-group{
  min-width:0;
}

.ls-staff-form-grid .ls-form-full{
  grid-column:1 / -1;
}


/* Labels */

.ls-staff-form-grid label{
  display:block;

  margin-bottom:6px;

  color:#334139;

  font-size:.61rem;
  font-weight:800;
}


/* Fields */

.ls-staff-form-grid input,
.ls-staff-form-grid select,
.ls-staff-form-grid textarea{
  width:100%;

  min-height:42px;

  padding:9px 11px;

  border:1px solid #d9e0dc;
  border-radius:9px;

  background:#ffffff;

  color:#27332d;

  font-size:.66rem;

  outline:none;

  transition:
    border-color .15s ease,
    box-shadow .15s ease,
    background .15s ease;
}

.ls-staff-form-grid textarea{
  min-height:95px;
  resize:vertical;
}

.ls-staff-form-grid input:hover,
.ls-staff-form-grid select:hover,
.ls-staff-form-grid textarea:hover{
  border-color:#c9d4cd;
}

.ls-staff-form-grid input:focus,
.ls-staff-form-grid select:focus,
.ls-staff-form-grid textarea:focus{
  border-color:rgba(11,107,58,.48);

  box-shadow:
    0 0 0 3px rgba(11,107,58,.07);
}


/* Checkbox */

.ls-staff-form-grid input[type="checkbox"]{
  width:auto;
  min-height:auto;
  margin-right:6px;
}


/* Help + error */

.ls-required{
  color:#bf3e3e;
}

.ls-form-help{
  display:block;

  margin-top:4px;

  color:#89938d;

  font-size:.53rem;
  line-height:1.45;
}

.ls-form-error{
  margin-top:5px;

  color:#b63f3f;

  font-size:.55rem;
  font-weight:700;
}


/* Buttons */

.ls-staff-form-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;

  margin-top:22px;
  padding-top:18px;

  border-top:1px solid rgba(15,23,42,.06);
}


/* =========================================================
   SIDE INFO CARD
   ========================================================= */

.ls-staff-form-info-card{
  padding:22px;

  border-radius:17px;

  background:
    radial-gradient(
      circle at 100% 0,
      rgba(248,216,91,.14),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
}

.ls-staff-form-info-card > span{
  display:block;

  margin-bottom:7px;

  color:#f8d85b;

  font-size:.56rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-staff-form-info-card h3{
  margin:0;

  color:#fff;

  font-size:.9rem;
  font-weight:900;
  line-height:1.45;
}

.ls-staff-form-info-card p{
  margin:8px 0 0;

  color:rgba(255,255,255,.62);

  font-size:.65rem;
  line-height:1.65;
}


/* =========================================================
   GUIDANCE
   ========================================================= */

.ls-staff-form-guidance{
  padding:0 18px 16px;
}

.ls-staff-form-guidance > div{
  display:flex;
  align-items:flex-start;
  gap:10px;

  padding:10px 0;

  border-bottom:1px solid rgba(15,23,42,.055);
}

.ls-staff-form-guidance > div:last-child{
  border-bottom:0;
}

.ls-staff-form-guidance span{
  width:26px;
  height:26px;

  display:grid;
  place-items:center;

  flex:0 0 26px;

  border-radius:8px;

  background:#edf5f0;

  color:#176b40;

  font-size:.54rem;
  font-weight:900;
}

.ls-staff-form-guidance p{
  margin:2px 0 0;

  color:#5a675f;

  font-size:.62rem;
  line-height:1.5;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:767px){

  .ls-staff-form-grid{
    grid-template-columns:1fr;
  }

  .ls-staff-form-grid .ls-form-full{
    grid-column:auto;
  }

  .ls-staff-form-actions{
    align-items:stretch;
    flex-direction:column-reverse;
  }

  .ls-staff-form-actions .btn{
    width:100%;
  }

}

/* =========================================================
   HR STAFF ROLES
   ========================================================= */

.ls-role-summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;

  margin-bottom:18px;
  padding:20px 23px;

  border:1px solid rgba(15,23,42,.065);
  border-radius:16px;

  background:
    radial-gradient(
      circle at 95% 0,
      rgba(11,107,58,.07),
      transparent 30%
    ),
    #fff;
}

.ls-role-summary > div:first-child > span{
  display:block;
  margin-bottom:5px;

  color:var(--ls-brand);

  font-size:.56rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-role-summary h2{
  margin:0;

  color:var(--ls-text);

  font-size:1.05rem;
  font-weight:900;
}

.ls-role-summary p{
  margin:5px 0 0;

  color:var(--ls-muted);

  font-size:.65rem;
  line-height:1.5;
}

.ls-role-summary-count{
  min-width:95px;
  padding:12px 18px;

  border-radius:12px;

  background:#f3f8f5;

  text-align:center;
}

.ls-role-summary-count small{
  display:block;

  color:var(--ls-muted);

  font-size:.53rem;
}

.ls-role-summary-count strong{
  display:block;

  margin-top:2px;

  color:var(--ls-brand);

  font-size:1.35rem;
  font-weight:900;
}


/* Role cell */

.ls-role-name-cell{
  display:flex;
  align-items:center;
  gap:9px;
}

.ls-role-name-cell > span{
  width:30px;
  height:30px;

  display:grid;
  place-items:center;

  flex:0 0 30px;

  border-radius:8px;

  background:#edf5f0;

  color:#176b40;

  font-size:.6rem;
  font-weight:900;
}

.ls-role-name-cell strong{
  color:var(--ls-text);

  font-size:.68rem;
  font-weight:900;
}

.ls-role-description{
  display:block;
  max-width:420px;

  color:#59665f;

  font-size:.62rem;
  line-height:1.5;
}


/* Bottom guidance */

.ls-role-guidance{
  display:flex;
  align-items:flex-start;
  gap:13px;

  margin-top:18px;
  padding:17px 19px;

  border:1px solid rgba(11,107,58,.08);
  border-radius:14px;

  background:#f7faf8;
}

.ls-role-guidance-icon{
  width:34px;
  height:34px;

  display:grid;
  place-items:center;

  flex:0 0 34px;

  border-radius:10px;

  background:linear-gradient(145deg,#073720,#0b6b3a);

  color:#f8d85b;

  font-size:.55rem;
  font-weight:900;
}

.ls-role-guidance strong{
  display:block;

  color:var(--ls-text);

  font-size:.67rem;
  font-weight:900;
}

.ls-role-guidance p{
  margin:4px 0 0;

  color:var(--ls-muted);

  font-size:.61rem;
  line-height:1.55;
}


/* =========================================================
   ROLE FORM
   ========================================================= */

.ls-role-form-wrap{
  padding:4px 20px 22px;
}

.ls-role-form-wrap .ls-form-group{
  margin-bottom:16px;
}

.ls-role-form-wrap label{
  display:block;

  margin-bottom:6px;

  color:#334139;

  font-size:.61rem;
  font-weight:800;
}

.ls-role-form-wrap input,
.ls-role-form-wrap select,
.ls-role-form-wrap textarea{
  width:100%;

  min-height:42px;

  padding:9px 11px;

  border:1px solid #d9e0dc;
  border-radius:9px;

  background:#fff;

  color:#27332d;

  font-size:.66rem;

  outline:none;
}

.ls-role-form-wrap textarea{
  min-height:110px;
  resize:vertical;
}

.ls-role-form-wrap input[type="checkbox"]{
  width:auto;
  min-height:auto;
}

.ls-role-form-wrap input:focus,
.ls-role-form-wrap select:focus,
.ls-role-form-wrap textarea:focus{
  border-color:rgba(11,107,58,.48);

  box-shadow:
    0 0 0 3px rgba(11,107,58,.07);
}


/* Info */

.ls-role-info-card{
  padding:22px;

  border-radius:17px;

  background:
    radial-gradient(
      circle at 100% 0,
      rgba(248,216,91,.14),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
}

.ls-role-info-card > span{
  display:block;

  margin-bottom:7px;

  color:#f8d85b;

  font-size:.56rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-role-info-card h3{
  margin:0;

  color:#fff;

  font-size:.9rem;
  font-weight:900;
  line-height:1.45;
}

.ls-role-info-card p{
  margin:8px 0 0;

  color:rgba(255,255,255,.62);

  font-size:.65rem;
  line-height:1.6;
}


/* Examples */

.ls-role-example-list{
  padding:0 18px 16px;
}

.ls-role-example-list > div{
  display:flex;
  align-items:center;
  gap:9px;

  padding:10px 0;

  border-bottom:1px solid rgba(15,23,42,.055);
}

.ls-role-example-list > div:last-child{
  border-bottom:0;
}

.ls-role-example-list span{
  width:26px;
  height:26px;

  display:grid;
  place-items:center;

  flex:0 0 26px;

  border-radius:8px;

  background:#edf5f0;

  color:#176b40;

  font-size:.53rem;
  font-weight:900;
}

.ls-role-example-list strong{
  color:#47554d;

  font-size:.63rem;
  font-weight:800;
}


/* Responsive */

@media(max-width:767px){

  .ls-role-summary{
    align-items:flex-start;
    flex-direction:column;
  }

  .ls-role-summary-count{
    width:100%;
    text-align:left;
  }

}

/* =========================================================
   HR TASK REGISTER
   ========================================================= */

.ls-task-summary-banner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  margin-bottom:18px;
  padding:20px 23px;
  border:1px solid rgba(15,23,42,.065);
  border-radius:16px;
  background:
    radial-gradient(
      circle at 95% 0,
      rgba(11,107,58,.07),
      transparent 30%
    ),
    #fff;
}

.ls-task-summary-banner > div:first-child > span{
  display:block;
  margin-bottom:5px;
  color:var(--ls-brand);
  font-size:.56rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-task-summary-banner h2{
  margin:0;
  color:var(--ls-text);
  font-size:1.05rem;
  font-weight:900;
}

.ls-task-summary-banner p{
  margin:5px 0 0;
  color:var(--ls-muted);
  font-size:.65rem;
  line-height:1.5;
}

.ls-task-summary-count{
  min-width:95px;
  padding:12px 18px;
  border-radius:12px;
  background:#f3f8f5;
  text-align:center;
}

.ls-task-summary-count small{
  display:block;
  color:var(--ls-muted);
  font-size:.53rem;
}

.ls-task-summary-count strong{
  display:block;
  margin-top:2px;
  color:var(--ls-brand);
  font-size:1.35rem;
  font-weight:900;
}


/* Task table */

.ls-task-register-table{
  margin-bottom:0;
}

.ls-task-title-cell{
  display:flex;
  align-items:flex-start;
  gap:9px;
}

.ls-task-title-icon{
  width:29px;
  height:29px;
  display:grid;
  place-items:center;
  flex:0 0 29px;
  border-radius:8px;
  background:#edf5f0;
  color:#176b40;
  font-size:.66rem;
  font-weight:900;
}

.ls-task-title-cell strong{
  display:block;
  color:var(--ls-text);
  font-size:.67rem;
  font-weight:900;
}

.ls-task-title-cell small{
  display:block;
  max-width:280px;
  margin-top:3px;
  color:var(--ls-muted);
  font-size:.56rem;
  line-height:1.45;
}


/* Staff link */

.ls-task-staff{
  display:flex;
  align-items:center;
  gap:7px;
  text-decoration:none;
}

.ls-task-staff > span{
  width:25px;
  height:25px;
  display:grid;
  place-items:center;
  flex:0 0 25px;
  border-radius:7px;
  background:#f2f5f3;
  color:#176b40;
  font-size:.52rem;
  font-weight:900;
}

.ls-task-staff strong{
  color:#435149;
  font-size:.61rem;
  font-weight:800;
}

.ls-task-staff:hover strong{
  color:var(--ls-brand);
}


/* Related parcel/dispute */

.ls-task-related-records{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.ls-task-related-records a,
.ls-task-related-records > span:not(.ls-table-muted){
  color:#5a665f;
  font-size:.58rem;
  text-decoration:none;
}

.ls-task-related-records a:hover{
  color:var(--ls-brand);
}

.ls-task-related-records strong{
  font-weight:900;
}


/* Dates */

.ls-task-date strong{
  color:#48564e;
  font-size:.61rem;
  font-weight:800;
}

.ls-task-created{
  color:var(--ls-muted);
  font-size:.58rem;
}


/* Governance note */

.ls-task-governance-note{
  display:flex;
  align-items:flex-start;
  gap:13px;
  margin-top:18px;
  padding:17px 19px;
  border:1px solid rgba(11,107,58,.08);
  border-radius:14px;
  background:#f7faf8;
}

.ls-task-governance-icon{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  flex:0 0 34px;
  border-radius:10px;
  background:linear-gradient(145deg,#073720,#0b6b3a);
  color:#f8d85b;
  font-size:.55rem;
  font-weight:900;
}

.ls-task-governance-note strong{
  display:block;
  color:var(--ls-text);
  font-size:.67rem;
  font-weight:900;
}

.ls-task-governance-note p{
  margin:4px 0 0;
  color:var(--ls-muted);
  font-size:.61rem;
  line-height:1.55;
}


/* =========================================================
   HR TASK FORM
   ========================================================= */

.ls-task-form-wrap{
  padding:4px 20px 22px;
}

.ls-task-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px 18px;
}

.ls-task-form-full{
  grid-column:1 / -1;
}

.ls-task-form-grid label{
  display:block;
  margin-bottom:6px;
  color:#334139;
  font-size:.61rem;
  font-weight:800;
}

.ls-task-form-grid input,
.ls-task-form-grid select,
.ls-task-form-grid textarea{
  width:100%;
  min-height:42px;
  padding:9px 11px;
  border:1px solid #d9e0dc;
  border-radius:9px;
  background:#fff;
  color:#27332d;
  font-size:.66rem;
  outline:none;
  transition:.15s ease;
}

.ls-task-form-grid textarea{
  min-height:105px;
  resize:vertical;
}

.ls-task-form-grid input:focus,
.ls-task-form-grid select:focus,
.ls-task-form-grid textarea:focus{
  border-color:rgba(11,107,58,.48);
  box-shadow:0 0 0 3px rgba(11,107,58,.07);
}


/* Task info panel */

.ls-task-form-info-card{
  padding:22px;
  border-radius:17px;
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(248,216,91,.14),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #073720,
      #0b6b3a
    );
}

.ls-task-form-info-card > span{
  display:block;
  margin-bottom:7px;
  color:#f8d85b;
  font-size:.56rem;
  font-weight:900;
  letter-spacing:.1em;
}

.ls-task-form-info-card h3{
  margin:0;
  color:#fff;
  font-size:.9rem;
  font-weight:900;
  line-height:1.45;
}

.ls-task-form-info-card p{
  margin:8px 0 0;
  color:rgba(255,255,255,.62);
  font-size:.65rem;
  line-height:1.6;
}


/* Guidance */

.ls-task-guidance{
  padding:0 18px 16px;
}

.ls-task-guidance > div{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:10px 0;
  border-bottom:1px solid rgba(15,23,42,.055);
}

.ls-task-guidance > div:last-child{
  border-bottom:0;
}

.ls-task-guidance span{
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  flex:0 0 26px;
  border-radius:8px;
  background:#edf5f0;
  color:#176b40;
  font-size:.53rem;
  font-weight:900;
}

.ls-task-guidance p{
  margin:2px 0 0;
  color:#5a675f;
  font-size:.62rem;
  line-height:1.5;
}


/* Responsive */

@media(max-width:767px){

  .ls-task-summary-banner{
    align-items:flex-start;
    flex-direction:column;
  }

  .ls-task-summary-count{
    width:100%;
    text-align:left;
  }

  .ls-task-form-grid{
    grid-template-columns:1fr;
  }

  .ls-task-form-full{
    grid-column:auto;
  }

}