/* =========
   Global site styles (Home + shared)
   ========= */

:root{
  --bg: #bdbdbd;
  --panel: #ffffff;
  --ink: #111;
  --muted: #4a4a4a;
  --line: rgba(0,0,0,.12);

  /* Match header/footer to logo */
  --logo-bg: #1d1b1e;
  --logo-bg-soft: #121114;

  --headerInk: #ffffff;
  --headerLine: rgba(255,255,255,.12);
  --headerHover: rgba(255,255,255,.08);

  /* Store/visualizer vars */
  --text: #111;
  --btn-bg: #fff;
  --btn-hover: #f3f3f3;
  --door-x: 0px;
  --door-y: 0px;
  --door-w: 320px;
  --door-h: 200px;
}

*{ box-sizing: border-box; }
html, body{ height:100%; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background:
    repeating-linear-gradient(135deg, rgba(0,0,0,.06) 0 14px, rgba(0,0,0,.03) 14px 28px),
    var(--bg);
}

/* Skip link */
.skip-link{
  position:absolute;
  left:-9999px;
  top:10px;
  background:#000;
  color:#fff;
  padding:10px 12px;
  border-radius:10px;
  z-index:9999;
}
.skip-link:focus{ left:10px; }

/* Page frame */
.strip{
  width:min(1240px, 100%);
  margin:0 auto;
  background: var(--panel);
  box-shadow: 0 18px 55px rgba(0,0,0,.18);
  min-height: 100vh;
}

/* ===== Header ===== */
.site-header{
  background: var(--logo-bg);
  border-bottom: 1px solid var(--headerLine);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 16px;
}

.brand-lockup{
  display:flex;
  align-items:center;
  text-decoration:none;
  gap: 12px;
  flex: 0 0 auto;
  line-height: 0;
}

.brand-logo{
  height: 56px;
  width: auto;
  display:block;
}

.brand-name{ display:none; }

.nav-tabs{
  display:flex;
  align-items:center;
  gap: 6px;
}

.nav-tab{
  color: var(--headerInk);
  text-decoration:none;
  background: transparent;
  border: 0;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
}

.nav-tab:hover,
.nav-tab:focus-visible{
  background: var(--headerHover);
  outline:none;
}

.nav-tab[aria-current="page"]{
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.nav-item{ position: relative; }

/* Desktop dropdown */
.nav-menu{
  position:absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 240px;
  background: var(--logo-bg-soft);
  border: 1px solid var(--headerLine);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,.45);

  display:none;
}

/* Support either JS strategy */
.nav-item.open > .nav-menu,
.nav-menu.open,
.nav-menu.is-open{
  display:block;
}

.nav-menu a{
  display:block;
  color: var(--headerInk);
  text-decoration:none;
  padding: 10px 10px;
  border-radius: 10px;
  font-weight: 600;
}

.nav-menu a:hover,
.nav-menu a:focus-visible{
  background: var(--headerHover);
  outline: none;
}

/* Mobile toggle */
.mobile-toggle{
  display:none;
  color: var(--headerInk);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  cursor:pointer;
}

.mobile-menu{
  display:none;
  padding: 10px 12px 14px;
  border-top: 1px solid var(--headerLine);
  background: var(--logo-bg);
}
.mobile-menu.open{ display:block; }

.nav-btn{
  display:block;
  width:100%;
  text-align:left;
  color: var(--headerInk);
  background: transparent;
  border: 0;
  text-decoration:none;
  font-weight: 700;
  padding: 12px 10px;
  border-radius: 12px;
  cursor:pointer;
  font: inherit;
}

.nav-btn:hover,
.nav-btn:focus-visible{
  background: var(--headerHover);
  outline:none;
}

.nav-btn[aria-current="page"]{
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

.nav-btn.sub{
  padding-left: 18px;
  font-weight: 600;
}

.mobile-submenu{
  display:none;
  padding: 2px 0 10px;
}
.mobile-submenu.open{ display:block; }

/* ===== Home content ===== */
.hero img{
  width:100%;
  height:auto;
  display:block;
}

.showcase{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 14px 16px 16px;
}

.showcase-card{
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow:hidden;
  background: #fff;
}

.showcase-media{
  height: 130px;
  background: linear-gradient(135deg, rgba(0,0,0,.12), rgba(0,0,0,.02)); /* fallback */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* REAL image textures (root-absolute so it works everywhere) */
.showcase-media--hot{
  background-image: url("/assets/img/texture-hot.jpg");
}
.showcase-media--season{
  background-image: url("/assets/img/texture-season.jpg");
}
.showcase-media--stock{
  background-image: url("/assets/img/texture-stock.jpg");
}

.showcase-meta{ padding: 12px 12px 14px; }

.showcase-title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.showcase-sub{
  margin-top: 4px;
  color: var(--muted);
}

.service-area{
  padding: 18px 16px 6px;
  text-align:center;
}

.service-area__inner{
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.service-area__title{
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
}

.service-area__line{
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.assurance{
  padding: 18px 16px 26px;
}

.assurance-title{
  margin: 18px auto 8px;
  max-width: 980px;
  font-size: 30px;
  line-height: 1.12;
}

.assurance-lead{
  margin: 0 auto 14px;
  max-width: 980px;
  color: #2b2b2b;
  line-height: 1.55;
}

.assurance-panels{
  max-width: 980px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.assurance-panel{
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 14px 12px;
  background: #fff;
}

.assurance-panel h3{
  margin: 0 0 8px;
  font-size: 16px;
}

.assurance-panel p{
  margin: 0;
  line-height: 1.55;
  color: #2b2b2b;
}

/* Footer */
.site-footer{
  background: var(--logo-bg);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 16px;
}

.footer-inner{
  max-width: 980px;
  margin: 0 auto;
  color: rgba(255,255,255,.78);
}

/* Responsive */
@media (max-width: 980px){
  .nav-tabs{ display:none; }
  .mobile-toggle{ display:inline-flex; }
  .showcase{ grid-template-columns: 1fr; }
  .assurance-panels{ grid-template-columns: 1fr; }
  .assurance-title{ font-size: 26px; }
}

/* ===== Store + Visualizer page ===== */
.page{
  padding: 18px 16px 28px;
}

.page-hero{
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto 14px;
  border: 1px solid rgba(0,0,0,.12);
  background: linear-gradient(135deg, rgba(192,20,28,.08), rgba(0,0,0,.02));
  padding: 18px 18px 16px;
}

.page-hero h1{
  margin: 0 0 6px;
  font-size: 26px;
  line-height: 1.15;
  color: #111;
}

.page-hero p{
  margin: 0;
  color: #2b2b2b;
  max-width: 95ch;
  line-height: 1.45;
}

.sv-grid{
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
}

.sv-card{
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  padding: 16px 16px 14px;
}

.sv-card h2{
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: .2px;
  color: #111;
  text-transform: uppercase;
}

.sv-card p{
  margin: 0 0 10px;
  color: #2b2b2b;
  font-size: 14px;
  line-height: 1.45;
}

.sv-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.sv-actions a{
  display: inline-block;
  border: 1px solid var(--line);
  background: var(--btn-bg);
  color: var(--text);
  padding: 8px 10px;
  font-weight: 900;
  text-decoration: none;
}

.sv-actions a:hover{ background: var(--btn-hover); }

.sv-embed{
  border: 1px dashed rgba(0,0,0,.25);
  background: rgba(0,0,0,.02);
  padding: 14px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(16,17,20,.75);
}

.sv-note{
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
  padding: 10px 12px;
  font-size: 13px;
  color: rgba(16,17,20,.75);
}

@media (max-width: 980px){
  .sv-grid{ grid-template-columns: 1fr; }
  .page-hero{ width: calc(100% - 32px); }
  .sv-grid{ width: calc(100% - 32px); }
}

/* =========================================================
   Store & Visualizer
   ========================================================= */
.sv-main{ padding-bottom: 24px; }

.sv-hero{ border-bottom: 1px solid var(--line); }

#svStage.sv-stage{
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #0f1115;
  border-bottom: 1px solid var(--line);
  height: clamp(300px, 52vw, 620px);
}

#svStage.sv-stage > img#houseImage{
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block;
  object-fit: contain !important;
  object-position: 50% 50%;
}

.sv-banner{
  position: absolute;
  left: 16px;
  bottom: 16px;
  max-width: min(520px, calc(100% - 32px));
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  padding: 12px 14px;
}

.sv-banner h1{
  margin: 0 0 6px;
  font-size: 26px;
  line-height: 1.1;
}

.sv-banner p{
  margin: 0;
  color: rgba(16,17,20,.80);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
}

.sv-controls{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 16px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.sv-btn{
  border: 1px solid var(--line);
  background: var(--btn-bg);
  padding: 10px 12px;
  font-weight: 800;
  cursor: pointer;
}
.sv-btn:hover{ background: var(--btn-hover); }
.sv-upload input{ display:none; }

.sv-readout{
  margin-left: auto;
  font-weight: 800;
  color: rgba(16,17,20,.78);
  font-size: 13px;
}

#doorBox.door-box{
  position: absolute;
  left: var(--door-x);
  top: var(--door-y);
  width: var(--door-w);
  height: var(--door-h);
  transform: translate(-50%, -50%);
  border: 2px dashed rgba(255,255,255,.85);
  outline: 1px solid rgba(0,0,0,.18);
  box-shadow: 0 0 0 1px rgba(0,0,0,.25) inset;
  pointer-events: none;
}

#doorBox .handle{
  position: absolute;
  width: 14px;
  height: 14px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(0,0,0,.35);
  box-shadow: 0 1px 2px rgba(0,0,0,.25);
  pointer-events: none;
}
#doorBox .handle.tl{ left:-7px; top:-7px; }
#doorBox .handle.tr{ right:-7px; top:-7px; }
#doorBox .handle.bl{ left:-7px; bottom:-7px; }
#doorBox .handle.br{ right:-7px; bottom:-7px; }

.sv-editing #doorBox.door-box,
.sv-editing #doorBox .handle{
  pointer-events: auto;
  cursor: move;
}

@media (max-width: 980px){
  #svStage.sv-stage{ height: clamp(260px, 62vw, 520px); }
  .sv-banner h1{ font-size: 22px; }
}

/* Metallic accent bars: bottom of header, top of footer */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
}

/* bottom bar under nav */
.site-header::after{
  content:"";
  display:block;
  height: 6px;
  background:
    linear-gradient(to bottom,
      rgba(255,255,255,.22),
      rgba(255,255,255,.06) 35%,
      rgba(0,0,0,.55) 70%,
      rgba(0,0,0,.85)
    );
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(0,0,0,.55);
}

/* top bar above footer */
.site-footer{
  position: relative;
}

.site-footer::before{
  content:"";
  display:block;
  height: 6px;
  margin: -16px -16px 16px; /* matches your footer padding so the bar spans full width */
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,.85),
      rgba(0,0,0,.55) 30%,
      rgba(255,255,255,.06) 65%,
      rgba(255,255,255,.18)
    );
  border-top: 1px solid rgba(0,0,0,.6);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* =========================
   Custom Doors catalog page
   ========================= */

.page--catalog .page-hero{
  width: min(1100px, calc(100% - 48px));
}

.catalog-wrap{
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto 26px;
}

.catalog-layout{
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 14px;
  align-items: start;
}

/* Sidebar */
.catalog-sidebar{
  position: sticky;
  top: 92px; /* leaves room for sticky header */
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  background: #fff;
  padding: 14px;
}

.sidebar-title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  margin-bottom: 8px;
}

.sidebar-sub{
  color: rgba(16,17,20,.78);
  line-height: 1.4;
  font-weight: 600;
  font-size: 13px;
}

.sidebar-nav{
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.sidebar-link{
  display: block;
  text-decoration: none;
  color: #111;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  border-radius: 12px;
  padding: 10px 10px;
  font-weight: 800;
}

.sidebar-link:hover,
.sidebar-link:focus-visible{
  background: rgba(0,0,0,.04);
  outline: none;
}

.sidebar-actions{
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.sidebar-note{
  margin-top: 12px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
  border-radius: 12px;
  padding: 10px 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(16,17,20,.78);
  line-height: 1.4;
}

/* Right panel */
.catalog-main{
  min-width: 0;
}

.category-section{
  scroll-margin-top: 110px; /* anchor offset for sticky header */
  padding: 12px 0 18px;
  border-top: 1px solid rgba(0,0,0,.10);
}

.category-section:first-child{
  border-top: 0;
  padding-top: 0;
}

.category-head h2{
  margin: 0 0 6px;
  font-size: 22px;
}

.category-head p{
  margin: 0 0 12px;
  color: rgba(16,17,20,.78);
  font-weight: 600;
  line-height: 1.45;
  max-width: 90ch;
}

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

.product-card{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  background: #fff;
  padding: 14px 14px 12px;
}

.product-card h3{
  margin: 0 0 8px;
  font-size: 16px;
}

.product-desc{
  margin: 0 0 10px;
  line-height: 1.45;
  color: rgba(16,17,20,.84);
  font-weight: 600;
}

.product-spec{
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(16,17,20,.78);
}

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

/* Buttons (site-wide safe) */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  color: #111;
  font-weight: 900;
  text-decoration: none;
}

.btn:hover,
.btn:focus-visible{
  background: rgba(0,0,0,.04);
  outline: none;
}

.btn.primary{
  background: #111;
  border-color: #111;
  color: #fff;
}

.btn.primary:hover,
.btn.primary:focus-visible{
  background: #000;
}

/* Responsive */
@media (max-width: 980px){
  .page--catalog .page-hero{
    width: calc(100% - 32px);
  }
  .catalog-wrap{
    width: calc(100% - 32px);
  }
  .catalog-layout{
    grid-template-columns: 1fr;
  }
  .catalog-sidebar{
    position: static;
  }
  .sidebar-nav{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-grid{
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Department page: Custom Doors (storefront look)
   Namespace: .dept / .prod / .chip
   ========================================================= */

.dept{
  padding: 18px 16px 28px;
}

.dept-wrap{
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

.dept-crumbs{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  color: rgba(16,17,20,.72);
  font-size: 13px;
  margin-bottom: 12px;
}
.dept-crumbs a{
  color: rgba(16,17,20,.78);
  text-decoration: none;
}
.dept-crumbs a:hover{ text-decoration: underline; }
.dept-crumbs span{ opacity: .85; }

.dept-hero{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  padding: 16px 16px 14px;
  background:
    linear-gradient(135deg, rgba(29,27,30,.06), rgba(0,0,0,.01));
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.dept-hero h1{
  margin: 0 0 6px;
  font-size: 30px;
  line-height: 1.08;
}
.dept-hero p{
  margin: 0;
  max-width: 92ch;
  color: rgba(16,17,20,.80);
  font-weight: 650;
  line-height: 1.45;
}
.dept-hero-right{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.dept-shell{
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 14px;
  align-items: start;
}

.dept-side{
  position: sticky;
  top: 96px; /* below sticky header */
}

.dept-panel{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}
.dept-panel + .dept-panel{ margin-top: 12px; }

.dept-panel-title{
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
  color: rgba(16,17,20,.80);
}

.dept-label{
  display: block;
  font-weight: 850;
  font-size: 12px;
  color: rgba(16,17,20,.74);
  margin-bottom: 6px;
}

.dept-input{
  width: 100%;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 14px;
  padding: 11px 12px;
  font-weight: 750;
  outline: none;
}
.dept-input:focus{
  border-color: rgba(0,0,0,.38);
  box-shadow: 0 0 0 3px rgba(0,0,0,.08);
}

.dept-small{
  margin-top: 8px;
  color: rgba(16,17,20,.68);
  font-weight: 650;
  font-size: 12px;
  line-height: 1.35;
}

.dept-cats{
  display: grid;
  gap: 8px;
}

.dept-cat{
  width: 100%;
  text-align: left;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  padding: 10px 10px;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dept-cat:hover{
  background: rgba(0,0,0,.03);
}
.dept-cat.is-active{
  background: #111;
  border-color: #111;
  color: #fff;
}

.dept-pill{
  font-weight: 950;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.08);
  color: rgba(16,17,20,.78);
}
.dept-cat.is-active .dept-pill{
  background: rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
}

.dept-note{
  margin-top: 10px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.02);
  border-radius: 14px;
  padding: 10px 10px;
  font-size: 13px;
  font-weight: 650;
  color: rgba(16,17,20,.74);
  line-height: 1.45;
}

/* Main / toolbar */
.dept-main{
  min-width: 0;
}

.dept-toolbar{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  background: #fff;
  padding: 12px 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}

.dept-results{
  font-weight: 900;
  color: rgba(16,17,20,.84);
}

.dept-sort{
  display: flex;
  align-items: center;
  gap: 8px;
}

.dept-select{
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 800;
}

/* Sections */
.dept-section{
  margin-top: 14px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
  overflow: hidden;
}

.dept-section-head{
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(0,0,0,.10);
  background:
    linear-gradient(135deg, rgba(29,27,30,.05), rgba(0,0,0,.01));
}
.dept-section-head h2{
  margin: 0 0 6px;
  font-size: 18px;
}
.dept-section-head p{
  margin: 0;
  color: rgba(16,17,20,.76);
  font-weight: 650;
  line-height: 1.45;
}

/* Product grid */
.prod-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
}

.prod{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  background: #fff;
  padding: 12px 12px 12px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.prod-top{
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.prod-sku{
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .10em;
  color: rgba(16,17,20,.55);
  text-transform: uppercase;
}

.prod h3{
  margin: 0;
  font-size: 16px;
}

.prod-desc{
  margin: 0 0 10px;
  color: rgba(16,17,20,.80);
  font-weight: 650;
  line-height: 1.45;
}

.prod-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.chip{
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.02);
  border-radius: 999px;
  padding: 5px 9px;
  font-weight: 850;
  font-size: 12px;
  color: rgba(16,17,20,.78);
}

.prod-specs{
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 8px;
  color: rgba(16,17,20,.74);
  font-weight: 650;
  font-size: 13px;
}
.prod-specs div{
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
}
.prod-specs dt{
  font-weight: 950;
  color: rgba(16,17,20,.80);
}
.prod-specs dd{
  margin: 0;
}

.prod-actions{
  margin-top: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* Empty state */
.dept-empty{
  margin-top: 14px;
  border: 1px dashed rgba(0,0,0,.25);
  border-radius: 18px;
  padding: 16px;
  background: rgba(0,0,0,.02);
  color: rgba(16,17,20,.72);
  font-weight: 750;
}

/* Mobile */
@media (max-width: 980px){
  .dept-wrap{ width: calc(100% - 32px); }
  .dept-hero{ grid-template-columns: 1fr; }
  .dept-shell{ grid-template-columns: 1fr; }
  .dept-side{ position: static; }
  .prod-grid{ grid-template-columns: 1fr; }
}

/* Slight “department page” feel by strengthening buttons on this page only */
.dept .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  color: #111;
  font-weight: 950;
  text-decoration: none;
}
.dept .btn:hover{ background: rgba(0,0,0,.04); }
.dept .btn.primary{
  background: #111;
  border-color: #111;
  color: #fff;
}
.dept .btn.primary:hover{ background: #000; }

/* =========================================================
   Careers page (Installers > Careers)
   ========================================================= */

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

.career-note{
  margin-top: 12px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  padding: 10px 10px;
  background: linear-gradient(135deg, rgba(29,27,30,.06), rgba(0,0,0,.01));
  color: rgba(16,17,20,.82);
  line-height: 1.45;
  font-weight: 650;
}
.career-note strong{
  display: block;
  margin-bottom: 6px;
  font-weight: 950;
}

.career-muted{
  margin: 0;
  color: rgba(16,17,20,.78);
  font-weight: 650;
  line-height: 1.55;
}
.career-muted a{ color: rgba(16,17,20,.86); }

.career-section-body{
  padding: 14px;
}

.career-panel[hidden]{ display: none !important; }

.career-h3{
  margin: 0 0 8px;
  font-size: 16px;
}

.career-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 10px;
}

.career-kv{
  display: grid;
  gap: 8px;
  margin-top: 10px;
}
.career-kv > div{
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 10px;
  align-items: start;
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 8px;
}
.career-kv > div:first-child{
  border-top: 0;
  padding-top: 0;
}
.career-kv span:first-child{
  font-weight: 950;
  color: rgba(16,17,20,.82);
}
.career-kv span:last-child{
  color: rgba(16,17,20,.78);
  font-weight: 650;
  line-height: 1.45;
}

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

.career-full{ grid-column: 1 / -1; }

.career-form textarea.dept-input{
  min-height: 140px;
  resize: vertical;
  line-height: 1.45;
  font-weight: 650;
}

.career-check{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 700;
  color: rgba(16,17,20,.82);
  line-height: 1.45;
}
.career-check input{
  margin-top: 3px;
}

.career-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
}
.career-fineprint{
  margin: 0;
  color: rgba(16,17,20,.72);
  font-weight: 650;
  font-size: 13px;
}

@media (max-width: 980px){
  .career-form-grid{ grid-template-columns: 1fr; }
  .career-kv > div{ grid-template-columns: 1fr; }
}

/* =========================================================
   Hire page map + form layout
   Namespace: .hire-*
   ========================================================= */

.hire-block{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
  overflow: hidden;
}

.hire-loc-grid{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 14px;
  padding: 14px;
  align-items: start;
}

.hire-address-row{
  display: flex;
  gap: 10px;
  align-items: center;
}

.hire-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.hire-muted{
  margin: 0;
  color: rgba(16,17,20,.78);
  font-weight: 650;
  line-height: 1.55;
}

.hire-alert{
  margin-top: 10px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  padding: 10px 10px;
  background: rgba(192,20,28,.06);
  color: rgba(16,17,20,.82);
  font-weight: 750;
  line-height: 1.45;
}
.hire-alert.is-error{
  background: rgba(192,20,28,.10);
}

.hire-suggest{
  margin-top: 10px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}
.hire-suggest-item{
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border: 0;
  background: #fff;
  cursor: pointer;
  font-weight: 750;
  color: rgba(16,17,20,.86);
  line-height: 1.35;
}
.hire-suggest-item + .hire-suggest-item{
  border-top: 1px solid rgba(0,0,0,.08);
}
.hire-suggest-item:hover{
  background: rgba(0,0,0,.03);
}

.hire-map-wrap{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.hire-map{
  height: 420px;
  min-height: 360px;
}

.hire-coords{
  margin-top: 12px;
  border-top: 1px solid rgba(0,0,0,.10);
  padding-top: 12px;
  display: grid;
  gap: 8px;
}

.hire-coord-row{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  align-items: start;
}
.hire-k{
  font-weight: 950;
  color: rgba(16,17,20,.82);
}
.hire-v{
  font-weight: 700;
  color: rgba(16,17,20,.78);
  line-height: 1.45;
}

.hire-export{
  margin-top: 12px;
}
.hire-export textarea.dept-input{
  min-height: 120px;
  resize: vertical;
  line-height: 1.45;
  font-weight: 700;
}
.hire-export-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.hire-form-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}
.hire-full{ grid-column: 1 / -1; }

.hire-check{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 750;
  color: rgba(16,17,20,.82);
  line-height: 1.45;
}
.hire-check input{ margin-top: 3px; }

.hire-submit{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 14px;
}
.hire-fine{
  margin: 0;
  color: rgba(16,17,20,.72);
  font-weight: 650;
  font-size: 13px;
}

@media (max-width: 980px){
  .hire-loc-grid{ grid-template-columns: 1fr; }
  .hire-map{ height: 360px; }
  .hire-form-grid{ grid-template-columns: 1fr; }
  .hire-coord-row{ grid-template-columns: 1fr; }
}

/* =========================================================
   Installer Registration page
   Namespace: .reg-*
   ========================================================= */

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

.reg-muted{
  margin: 0;
  color: rgba(16,17,20,.78);
  font-weight: 650;
  line-height: 1.55;
}

.reg-body{
  padding: 14px;
}

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

.reg-full{ grid-column: 1 / -1; }

.reg-map-grid{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 14px;
  align-items: start;
}

.reg-address-row{
  display: flex;
  gap: 10px;
  align-items: center;
}

.reg-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.reg-alert{
  margin-top: 10px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  padding: 10px 10px;
  background: rgba(192,20,28,.06);
  color: rgba(16,17,20,.82);
  font-weight: 750;
  line-height: 1.45;
}
.reg-alert.is-error{ background: rgba(192,20,28,.10); }

.reg-suggest{
  margin-top: 10px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}
.reg-suggest-item{
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border: 0;
  background: #fff;
  cursor: pointer;
  font-weight: 750;
  color: rgba(16,17,20,.86);
  line-height: 1.35;
}
.reg-suggest-item + .reg-suggest-item{ border-top: 1px solid rgba(0,0,0,.08); }
.reg-suggest-item:hover{ background: rgba(0,0,0,.03); }

.reg-map-wrap{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.reg-map{
  height: 420px;
  min-height: 360px;
}

.reg-radius{
  margin-top: 12px;
  border-top: 1px solid rgba(0,0,0,.10);
  padding-top: 12px;
}
.reg-radius-row{
  display: flex;
  gap: 12px;
  align-items: center;
}
.reg-radius-row input[type="range"]{
  flex: 1;
}
.reg-radius-box{
  display: flex;
  gap: 8px;
  align-items: center;
}
.reg-radius-box .dept-input{
  width: 110px;
}
.reg-radius-unit{
  font-weight: 850;
  color: rgba(16,17,20,.72);
}

.reg-coords{
  margin-top: 12px;
  border-top: 1px solid rgba(0,0,0,.10);
  padding-top: 12px;
  display: grid;
  gap: 8px;
}
.reg-row{
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  align-items: start;
}
.reg-k{
  font-weight: 950;
  color: rgba(16,17,20,.82);
}
.reg-v{
  font-weight: 700;
  color: rgba(16,17,20,.78);
  line-height: 1.45;
}

.reg-export{
  margin-top: 12px;
}
.reg-export textarea.dept-input{
  min-height: 120px;
  resize: vertical;
  line-height: 1.45;
  font-weight: 700;
}
.reg-export-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.reg-spec{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}
.reg-check{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(29,27,30,.03), rgba(0,0,0,.01));
}
.reg-check input{ margin-top: 3px; }
.reg-check span{
  font-weight: 750;
  color: rgba(16,17,20,.82);
  line-height: 1.35;
}

.reg-checkline{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 750;
  color: rgba(16,17,20,.82);
  line-height: 1.45;
}
.reg-checkline input{ margin-top: 3px; }

.reg-submit{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.reg-fine{
  margin: 0;
  color: rgba(16,17,20,.72);
  font-weight: 650;
  font-size: 13px;
}

@media (max-width: 980px){
  .reg-grid{ grid-template-columns: 1fr; }
  .reg-map-grid{ grid-template-columns: 1fr; }
  .reg-map{ height: 360px; }
  .reg-row{ grid-template-columns: 1fr; }
  .reg-spec{ grid-template-columns: 1fr; }
}

/* =========================================================
   Contact page (scoped)
   ========================================================= */
.ng-contact .ngc-wrap{
  padding: 26px 0 34px;
}

.ng-contact .ngc-container{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.ng-contact .ngc-hero{
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 14px;
  align-items: stretch;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 18px 44px rgba(0,0,0,.06);
}

.ng-contact .ngc-hero h1{
  margin: 0 0 8px;
  letter-spacing: -.02em;
}

.ng-contact .ngc-hero p{
  margin: 0;
  color: rgba(16,17,20,.80);
  font-weight: 650;
  line-height: 1.55;
}

.ng-contact .ngc-hero-actions{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ng-contact .ngc-hero-right{
  border-left: 1px solid rgba(0,0,0,.08);
  padding-left: 14px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.ng-contact .ngc-badge{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: linear-gradient(135deg, rgba(29,27,30,.05), rgba(0,0,0,.01));
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}

.ng-contact .ngc-mini{
  color: rgba(16,17,20,.80);
  font-weight: 650;
  line-height: 1.5;
}

.ng-contact .ngc-mini.muted{
  color: rgba(16,17,20,.68);
}

.ng-contact .ngc-note{
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  padding: 12px 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}
.ng-contact .ngc-note.ok{ border-color: rgba(34,139,34,.35); }
.ng-contact .ngc-note.fail{ border-color: rgba(192,20,28,.35); }

.ng-contact .ngc-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ng-contact .ngc-card{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 18px 44px rgba(0,0,0,.06);
}

.ng-contact .ngc-card-head h2{
  margin: 0 0 6px;
}

.ng-contact .ngc-meta{
  margin: 0;
  color: rgba(16,17,20,.76);
  font-weight: 650;
  line-height: 1.5;
}

.ng-contact .ngc-map{
  margin-top: 12px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
}

.ng-contact .ngc-card-actions{
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ng-contact .ngc-fine{
  margin: 10px 0 0;
  color: rgba(16,17,20,.62);
  font-weight: 650;
  line-height: 1.45;
  font-size: 13px;
}

/* Form */
.ng-contact .ngc-form{
  margin-top: 12px;
}

.ng-contact .ngc-hp{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.ng-contact .ngc-section{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(29,27,30,.03), rgba(0,0,0,.01));
}

.ng-contact .ngc-section-title{
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(16,17,20,.82);
  margin-bottom: 10px;
}

.ng-contact .ngc-fields{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ng-contact .ngc-field.full{
  grid-column: 1 / -1;
}

.ng-contact .ngc-field label{
  display: block;
  font-weight: 850;
  color: rgba(16,17,20,.82);
  margin: 0 0 6px;
}

.ng-contact .ngc-field input,
.ng-contact .ngc-field select,
.ng-contact .ngc-field textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 14px;
  padding: 10px 12px;
  background: #fff;
  color: #111;
  font-weight: 650;
  outline: none;
  box-shadow: 0 10px 26px rgba(0,0,0,.04);
}

.ng-contact .ngc-field textarea{
  min-height: 132px;
  resize: vertical;
}

.ng-contact .ngc-field input:focus,
.ng-contact .ngc-field select:focus,
.ng-contact .ngc-field textarea:focus{
  border-color: rgba(0,0,0,.32);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}

.ng-contact .ngc-help{
  margin-top: 8px;
  color: rgba(16,17,20,.62);
  font-weight: 650;
  font-size: 13px;
  line-height: 1.45;
}

.ng-contact .ngc-check{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 750;
  color: rgba(16,17,20,.82);
  line-height: 1.45;
}
.ng-contact .ngc-check input{
  margin-top: 3px;
}

.ng-contact .ngc-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 980px){
  .ng-contact .ngc-hero{
    grid-template-columns: 1fr;
  }
  .ng-contact .ngc-hero-right{
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(0,0,0,.08);
    padding-top: 12px;
  }
  .ng-contact .ngc-grid{
    grid-template-columns: 1fr;
  }
  .ng-contact .ngc-fields{
    grid-template-columns: 1fr;
  }
  .ng-contact .ngc-map{
    height: 360px;
  }
}

/* =========================================================
   Request Quote page (scoped)
   ========================================================= */
.ng-quote .ngq-wrap{ padding: 26px 0 34px; }
.ng-quote .ngq-container{ max-width: 1160px; margin: 0 auto; padding: 0 16px; }

.ng-quote .ngq-hero{
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 14px;
  align-items: stretch;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 18px 44px rgba(0,0,0,.06);
}
.ng-quote .ngq-hero h1{ margin: 0 0 8px; letter-spacing: -.02em; }
.ng-quote .ngq-hero p{ margin: 0; color: rgba(16,17,20,.80); font-weight: 650; line-height: 1.55; }
.ng-quote .ngq-hero-actions{ margin-top: 12px; display:flex; gap:10px; flex-wrap:wrap; }

.ng-quote .ngq-hero-right{
  border-left: 1px solid rgba(0,0,0,.08);
  padding-left: 14px;
  display: grid;
  gap: 10px;
  align-content: start;
}
.ng-quote .ngq-badge{
  display:inline-flex; width:fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: linear-gradient(135deg, rgba(29,27,30,.05), rgba(0,0,0,.01));
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}
.ng-quote .ngq-mini{ color: rgba(16,17,20,.80); font-weight: 650; line-height: 1.5; }
.ng-quote .ngq-mini.muted{ color: rgba(16,17,20,.68); }

.ng-quote .ngq-note{
  margin-top: 14px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  padding: 12px 14px;
  box-shadow: 0 10px 26px rgba(0,0,0,.05);
}
.ng-quote .ngq-note.ok{ border-color: rgba(34,139,34,.35); }
.ng-quote .ngq-note.fail{ border-color: rgba(192,20,28,.35); }

.ng-quote .ngq-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 14px;
  align-items: start;
}

.ng-quote .ngq-card{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 18px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 18px 44px rgba(0,0,0,.06);
}
.ng-quote .ngq-card-head h2{ margin: 0 0 6px; }
.ng-quote .ngq-meta{ margin: 0; color: rgba(16,17,20,.76); font-weight: 650; line-height: 1.5; }

.ng-quote .ngq-steps{ margin-top: 12px; display: grid; gap: 10px; }
.ng-quote .ngq-step{ display:flex; gap:10px; align-items:flex-start; }
.ng-quote .ngq-step-num{
  width: 28px; height: 28px; border-radius: 10px;
  border: 1px solid rgba(0,0,0,.10);
  background: linear-gradient(135deg, rgba(29,27,30,.05), rgba(0,0,0,.01));
  display:flex; align-items:center; justify-content:center;
  font-weight: 950;
}
.ng-quote .ngq-step-title{ font-weight: 900; margin-bottom: 2px; }
.ng-quote .ngq-step-text{ color: rgba(16,17,20,.72); font-weight: 650; line-height: 1.45; }

.ng-quote .ngq-map{
  margin-top: 12px;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
}

.ng-quote .ngq-card-actions{
  margin-top: 12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Form */
.ng-quote .ngq-form{ margin-top: 12px; }
.ng-quote .ngq-hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

.ng-quote .ngq-section{
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(29,27,30,.03), rgba(0,0,0,.01));
}
.ng-quote .ngq-section-title{
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(16,17,20,.82);
  margin-bottom: 10px;
}

.ng-quote .ngq-fields{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.ng-quote .ngq-field.full{ grid-column: 1 / -1; }

.ng-quote .ngq-field label{
  display:block;
  font-weight: 850;
  color: rgba(16,17,20,.82);
  margin: 0 0 6px;
}

.ng-quote .ngq-field input,
.ng-quote .ngq-field select,
.ng-quote .ngq-field textarea{
  width:100%;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 14px;
  padding: 10px 12px;
  background: #fff;
  color: #111;
  font-weight: 650;
  outline: none;
  box-shadow: 0 10px 26px rgba(0,0,0,.04);
}
.ng-quote .ngq-field textarea{ min-height: 120px; resize: vertical; }

.ng-quote .ngq-field input:focus,
.ng-quote .ngq-field select:focus,
.ng-quote .ngq-field textarea:focus{
  border-color: rgba(0,0,0,.32);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}

.ng-quote .ngq-help{
  margin-top: 8px;
  color: rgba(16,17,20,.62);
  font-weight: 650;
  font-size: 13px;
  line-height: 1.45;
}

.ng-quote .ngq-check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight: 750;
  color: rgba(16,17,20,.82);
  line-height: 1.45;
}
.ng-quote .ngq-check input{ margin-top: 3px; }

.ng-quote .ngq-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 980px){
  .ng-quote .ngq-hero{ grid-template-columns: 1fr; }
  .ng-quote .ngq-hero-right{
    border-left: none; padding-left: 0;
    border-top: 1px solid rgba(0,0,0,.08);
    padding-top: 12px;
  }
  .ng-quote .ngq-grid{ grid-template-columns: 1fr; }
  .ng-quote .ngq-fields{ grid-template-columns: 1fr; }
  .ng-quote .ngq-map{ height: 240px; }
}
