/* =========================
   Noble Fire NI — cohesive page styles (drop-in)
   Paste this whole file into assets/css/styles.css
   ========================= */

:root {
  /* Serious steel + disciplined red */
  --primary: #C41E1E;
  --ink: #0B0F17;
  --text: #111827;
  --muted: #5B6472;
  --line: #E6E8EE;
  --bg: #ffffff;

  /* cohesive section panels */
  --alt: #F6F7FA;
  --alt2: #F1F3F6;

  --accent: #1F3A5F;
  /* steel/navy */

  --radius: 10px;
  --max: 1320px;

  --shadow: 0 14px 40px rgba(11, 15, 23, .06);
  --shadow-soft: 0 10px 26px rgba(11, 15, 23, .05);

  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.wrap {
  width: min(var(--max), calc(100% - 3rem));
  margin-inline: auto;
}

/* Skip link */
.skip {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: .7rem 1rem;
  background: #fff;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  z-index: 9999;
}

/* =========================
   Top bar
   ========================= */
.topbar {
  background: var(--alt);
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .45rem 0;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: rgba(17, 24, 39, .78);
  font-weight: 650;
  white-space: nowrap;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: .8rem;
  color: rgba(17, 24, 39, .78);
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.topbar-right a {
  font-weight: 850;
  color: rgba(17, 24, 39, .90)
}

.topbar-right a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(196, 30, 30, .35);
  text-underline-offset: 4px;
}

.sep {
  color: rgba(17, 24, 39, .28)
}

.signal {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(196, 30, 30, .12);
  border: 2px solid rgba(196, 30, 30, .45);
  flex: 0 0 auto;
}

@media (max-width:900px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: .55rem 0
  }

  .topbar-left,
  .topbar-right {
    white-space: normal;
    min-width: 0
  }
}

/* =========================
   Header / nav
   ========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(11, 15, 23, .04);
}

.header::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), rgba(11, 15, 23, .85));
  opacity: .65;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: .72rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1
}

.brand-name {
  font-weight: 900;
  letter-spacing: .2px
}

.brand-sub {
  margin-top: .15rem;
  color: rgba(17, 24, 39, .62);
  font-weight: 700;
  font-size: .92rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}

.nav a {
  font-weight: 850;
  color: rgba(17, 24, 39, .90);
  padding: .45rem 0;
}

.nav a:hover {
  text-decoration: underline;
  text-decoration-color: rgba(196, 30, 30, .35);
  text-underline-offset: 4px;
}

.nav-toggle {
  display: none;
  padding: .55rem .8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 900;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .72rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--primary);
  font-weight: 900;
  white-space: nowrap;
}

.btn:hover {
  background: var(--alt)
}

.btn-primary {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff !important;
  transition: background .2s ease, transform .08s ease, border-color .2s ease;
}

.btn-primary:hover {
  background: #a61717;
  border-color: #a61717;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0)
}

.btn-ghost {
  border-color: var(--line);
  background: #fff
}

.nav .btn-primary {
  padding: .55rem .95rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .3px;
  text-transform: uppercase;
}

@media (max-width:900px) {
  .nav-toggle {
    display: inline-flex
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: .85rem;
  }

  .nav.open {
    display: flex
  }
}

/* =========================
   Hero
   ========================= */
.hero {
  padding: 2.0rem 0 2.0rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(900px 420px at 15% 10%, rgba(196, 30, 30, .08), transparent 60%),
    radial-gradient(700px 380px at 90% 0%, rgba(11, 15, 23, .06), transparent 55%),
    linear-gradient(#fff, #fff);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  margin: 0 0 .6rem;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .82rem;
  color: rgba(17, 24, 39, .70);
}

h1 {
  margin: .1rem 0 .85rem;
  font-size: clamp(2.05rem, 3vw, 2.95rem);
  line-height: 1.08;
  letter-spacing: -.02em;
}

.lede {
  margin: 0;
  color: rgba(17, 24, 39, .74);
  font-size: 1.06rem;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.15rem;
}

.hero-badges {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .85rem;
}

.badge {
  font-weight: 850;
  font-size: .85rem;
  padding: .45rem .65rem;
  border-radius: 999px;
  background: rgba(11, 15, 23, .04);
  border: 1px solid rgba(11, 15, 23, .08);
}

.trustline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.25rem;
}

.trust-item {
  border-top: 2px solid rgba(196, 30, 30, .22);
  padding-top: .8rem;
}

.trust-k {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(17, 24, 39, .58);
  font-weight: 900;
  opacity: .85;
}

.trust-k::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: .5rem;
  background: rgba(196, 30, 30, .65);
}

.trust-v {
  margin-top: .15rem;
  font-weight: 950;
  color: rgba(17, 24, 39, .88);
  font-size: 1.05rem;
}

/* hazard rule */
.hazard-rule {
  height: 8px;
  margin: 1.25rem 0 1rem;
  border-radius: 10px;
  background: repeating-linear-gradient(135deg,
      rgba(196, 30, 30, .85) 0px,
      rgba(196, 30, 30, .85) 10px,
      rgba(11, 15, 23, .88) 10px,
      rgba(11, 15, 23, .88) 20px);
  opacity: .35;
}

.mini-cap {
  margin: 1rem 0 .35rem;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 950;
  color: rgba(17, 24, 39, .65);
}

.quickproof {
  margin: 0;
  padding: 0 0 0 1rem;
  list-style: none;
  border-left: 3px solid rgba(196, 30, 30, .28);
}

.quickproof li {
  margin: .55rem 0;
  font-weight: 750;
  color: rgba(17, 24, 39, .80);
}

.hero-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f2f4f8;
}

.hero-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.coverage {
  margin-top: .9rem;
  padding: .85rem .95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
  color: rgba(17, 24, 39, .75);
  font-weight: 750;
  border-left: 4px solid rgba(196, 30, 30, .55);
}

/* =========================
   Sections (cohesive alternation)
   Only sections set backgrounds.
   ========================= */
.section {
  padding: 4rem 0;
  background: #fff;
}

.section-alt {
  background: var(--alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-alt.deep {
  background: var(--alt2);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
}

.section-head h2 {
  margin: 0
}

.section-head p {
  margin: 0;
  color: rgba(17, 24, 39, .70);
  font-weight: 650;
}

h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: -.015em;
}

h3 {
  margin: 0 0 .35rem;
  font-size: 1.22rem;
  letter-spacing: -.01em;
}

.muted {
  color: rgba(17, 24, 39, .72)
}

/* =========================
   Services (module rows)
   ========================= */
.service-row {
  position: relative;
  margin: 1rem 0;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(11, 15, 23, .08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(11, 15, 23, .03);
  overflow: hidden;
}

.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 14px 0 0 14px;
  background: rgba(196, 30, 30, .55);
}

.service-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 20px;
  background: linear-gradient(90deg, rgba(196, 30, 30, .06), rgba(11, 15, 23, .02))
}

.service-title {
  position: relative;
  padding-top: .35rem
}

.service-title h3 {
  font-size: 1.35rem;
  letter-spacing: -.01em;
  margin-top: .35rem;
}

.service-title p {
  margin: .35rem 0 0;
  color: rgba(17, 24, 39, .72);
  max-width: 70ch;
  font-size: 1.02rem;
}

.service-points {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem 1rem;
  position: relative;
}

.service-points li {
  position: relative;
  padding-left: 1.6rem;
  font-weight: 750;
  color: rgba(17, 24, 39, .82);
}

.service-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(196, 30, 30, .75);
  font-weight: 950;
}

.service-link {
  margin-top: .9rem;
  position: relative;
}

.service-link a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 950;
  color: var(--primary);
  padding: .35rem 0;
  border-bottom: 2px solid rgba(196, 30, 30, .22);
}

.service-link a:hover {
  border-bottom-color: rgba(196, 30, 30, .55)
}

.service-link a::after {
  content: "→";
  transform: translateX(0);
  transition: transform .15s ease;
}

.service-link a:hover::after {
  transform: translateX(4px)
}

.service-link a {
  color: var(--accent)
}

.nav a:hover {
  text-decoration-color: rgba(31, 58, 95, .35)
}

@media (min-width:901px) {
  .service-row {
    display: grid;
    grid-template-columns: 1.25fr 1fr auto;
    gap: 1.25rem;
    align-items: start;
  }

  .service-title {
    grid-column: 1
  }

  .service-points {
    grid-column: 2;
    margin-top: .2rem
  }

  .service-link {
    grid-column: 3;
    margin-top: .35rem
  }
}

/* =========================
   Steps (process)
   IMPORTANT: no background here; section owns background.
   ========================= */
.steps {
  margin: 0;
  padding: 0;
  list-style: none;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;

  position: relative;
}

/* subtle guide line behind on desktop */
@media (min-width:1024px) {
  .steps::before {
    content: "";
    position: absolute;
    left: 6%;
    right: 6%;
    top: 36px;
    height: 1px;
    background: rgba(17, 24, 39, .10);
    z-index: 0;
  }
}

.steps li {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, .08);
  border-radius: 16px;
  padding: 1.9rem 1.9rem 1.85rem;

  display: flex;
  gap: 1rem;
  align-items: flex-start;

  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: rgba(196, 30, 30, .85);
  opacity: .18;
}

.steps li:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 24, 39, .12);
  box-shadow: var(--shadow);
}

.step-n {
  min-width: auto;
  padding: .35rem .6rem;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: .12em;
  font-size: .85rem;

  color: rgba(196, 30, 30, .95);
  background: rgba(196, 30, 30, .08);
  border: 1px solid rgba(196, 30, 30, .14);
  margin-top: .1rem;
  flex: 0 0 auto;
}

.step-t {
  font-weight: 800;
  color: rgba(17, 24, 39, .95);
  letter-spacing: -0.01em;
  font-size: 1.08rem;
  line-height: 1.25;
}

.step-p {
  margin-top: .45rem;
  color: rgba(17, 24, 39, .68);
  font-weight: 550;
  line-height: 1.55;
}

/* =========================
   Compliance split
   ========================= */
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: start;
}

.assurance {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.assurance li {
  padding: .75rem 0;
  border-bottom: 1px solid var(--line);
  color: rgba(17, 24, 39, .80);
  font-weight: 650;
}

.deliver {
  border: 1px solid rgba(17, 24, 39, .10);
  border-radius: 16px;
  background: #fff;
  padding: 1.25rem 1.25rem 1.2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.deliver::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: rgba(196, 30, 30, .85);
  opacity: .18;
}

.deliver h3 {
  margin: 0 0 .35rem;
  font-size: 1.22rem
}

.deliver ul {
  margin: .75rem 0 0;
  padding-left: 1.1rem;
  color: rgba(17, 24, 39, .78);
  font-weight: 650;
}

.deliver li {
  margin: .5rem 0
}

.deliver-cta {
  margin-top: 1rem
}

/* =========================
   Contact
   ========================= */
.contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.contact-block {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.label {
  font-size: .82rem;
  color: rgba(17, 24, 39, .58);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.big {
  display: inline-block;
  margin-top: .25rem;
  font-size: 1.25rem;
  font-weight: 950;
}

.plain {
  margin-top: .25rem;
  color: rgba(17, 24, 39, .72);
  font-weight: 650;
}

.form {
  border: 1px solid rgba(17, 24, 39, .10);
  border-radius: 16px;
  background: #fff;
  padding: 1.25rem 1.25rem 1.2rem;
  box-shadow: var(--shadow-soft);
}

label {
  display: block;
  font-weight: 900;
  margin: .8rem 0 .35rem;
}

input,
textarea {
  width: 100%;
  padding: .75rem .85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical
}

.fine {
  margin: .75rem 0 0;
  color: rgba(17, 24, 39, .62);
  font-size: .9rem;
}

/* =========================
   Footer
   ========================= */
.footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
  background: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(17, 24, 39, .70);
  font-weight: 650;
}

.footer a {
  text-decoration: underline;
  text-decoration-color: rgba(196, 30, 30, .35);
  text-underline-offset: 3px;
}

/* =========================
   Responsive layout
   ========================= */
@media (max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero-media img {
    height: 280px
  }

  .trustline {
    grid-template-columns: 1fr
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start
  }

  .service-points {
    grid-template-columns: 1fr
  }

  .steps {
    grid-template-columns: 1fr
  }

  .split {
    grid-template-columns: 1fr
  }

  .contact {
    grid-template-columns: 1fr
  }
}

.hero-media img.floorplan {
  height: auto;
  object-fit: contain;
  background: #fff;
}

/* ===== Top contact strip: make it slimmer ===== */
.topbar,
.utilitybar,
.contact-strip {
  padding: 8px 0 !important;
}

.topbar .wrap,
.utilitybar .wrap,
.contact-strip .wrap {
  padding: 0 16px !important;
}

.topbar p,
.utilitybar p,
.contact-strip p,
.topbar a,
.utilitybar a,
.contact-strip a {
  font-size: 14px !important;
  line-height: 1.25 !important;
}

@media (max-width: 560px) {

  .topbar,
  .utilitybar,
  .contact-strip {
    padding: 6px 0 !important;
  }
}

/* ===== Clean mobile topbar fix ===== */
@media (max-width:900px) {

  .topbar {
    font-size: .82rem;
  }

  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: .3rem;
    padding: .4rem 0;
  }

  .topbar-left {
    white-space: normal;
    line-height: 1.3;
    font-weight: 650;
  }

  .topbar-right {
    width: 100%;
    justify-content: space-between;
    white-space: normal;
    gap: .5rem;
  }

  .topbar-right a {
    font-size: .85rem;
  }

  .signal {
    width: 8px;
    height: 8px;
  }
}