/* ============================================
   MNM Fire Systems — modern redesign draft
   Palette: deep navy, signal red, clean neutrals
   ============================================ */

:root {
  --navy-950: #0b1220;
  --navy-900: #111b2e;
  --navy-800: #1a2740;
  --navy-700: #243352;
  --red-600: #d62828;
  --red-500: #e63939;
  --red-400: #f04a4a;
  --red-soft: rgba(214, 40, 40, 0.12);
  --slate-50: #f7f8fb;
  --slate-100: #eef1f6;
  --slate-200: #dde3ee;
  --slate-400: #8b97ad;
  --slate-500: #6b7790;
  --slate-600: #4a556d;
  --slate-700: #334155;
  --white: #ffffff;
  --text: #1a2333;
  --text-muted: #5a657a;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.05);
  --shadow: 0 8px 30px rgba(11, 18, 32, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 18, 32, 0.14);
  --header-h: 72px;
  --topbar-h: 40px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --display: "Outfit", "DM Sans", system-ui, sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--topbar-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.15rem, 4.5vw, 3.35rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3vw, 2.35rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 650; margin-bottom: 0.4em; }
h4 { font-size: 0.9rem; font-weight: 650; letter-spacing: 0.04em; text-transform: uppercase; color: var(--slate-500); }

p { margin: 0 0 1em; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ---------- Top bar ---------- */
.top-bar {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.top-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  align-items: center;
  justify-content: flex-start;
}

.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s var(--ease);
}

.top-bar a.top-bar__item:hover {
  color: #fff;
}

.top-bar__item--muted {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.55);
}

.top-bar__item--emergency {
  color: #fff;
  font-weight: 600;
}

.top-bar__item--emergency strong {
  color: #fca5a5;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-right: 0.15rem;
}

.top-bar__item--emergency:hover {
  color: #fff;
}

.top-bar__item--emergency:hover strong {
  color: #fecaca;
}

@media (max-width: 720px) {
  .top-bar {
    height: auto;
    padding: 0.45rem 0;
  }
  .top-bar__item--muted {
    display: none;
  }
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.header.is-scrolled {
  border-bottom-color: var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--slate-50);
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo__text strong {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}

.logo__text span {
  font-size: 0.75rem;
  color: var(--slate-500);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav > a:not(.btn) {
  font-weight: 550;
  font-size: 0.95rem;
  color: var(--slate-700);
  padding: 0.35rem 0;
  position: relative;
  transition: color 0.2s var(--ease);
}

.nav > a:not(.btn):hover {
  color: var(--red-600);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 2px solid transparent;
  padding: 0.7rem 1.35rem;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn--sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.88rem;
}

.btn--lg {
  padding: 0.9rem 1.6rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: var(--red-600);
  color: #fff;
  box-shadow: 0 8px 20px rgba(214, 40, 40, 0.25);
}

.btn--primary:hover {
  background: var(--red-500);
  box-shadow: 0 10px 24px rgba(214, 40, 40, 0.32);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: #fff;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 9vw, 6.5rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(11, 18, 32, 0.94) 0%, rgba(17, 27, 46, 0.88) 45%, rgba(36, 20, 20, 0.82) 100%),
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(214, 40, 40, 0.28), transparent 55%),
    url("assets/hero-banner.png") center / cover no-repeat;
  z-index: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 18, 32, 0.35), transparent 40%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-400);
  margin: 0 0 0.9rem;
}

.eyebrow--light {
  color: #ff8a8a;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
  max-width: 16ch;
}

.hero__lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  max-width: 40ch;
  margin-bottom: 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.35rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero__trust svg {
  color: #7ddea0;
  flex-shrink: 0;
}

.hero__card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.6rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero__card-badge {
  display: inline-block;
  background: var(--red-soft);
  color: var(--red-600);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.hero__card h2 {
  font-size: 1.45rem;
  margin-bottom: 0.4rem;
}

.hero__card > p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.hero__card-meta {
  display: grid;
  gap: 0.9rem;
  margin: 0 0 1.35rem;
  padding: 0;
}

.hero__card-meta div {
  border-top: 1px solid var(--slate-100);
  padding-top: 0.75rem;
}

.hero__card-meta dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 0.15rem;
}

.hero__card-meta dd {
  margin: 0;
  font-weight: 550;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.hero__card-meta a {
  color: var(--red-600);
}

.hero__card-meta a:hover {
  text-decoration: underline;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section--alt {
  background: var(--slate-50);
}

.section--dark {
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(214, 40, 40, 0.18), transparent 50%),
    var(--navy-900);
  color: #fff;
}

.section--dark h2 {
  color: #fff;
}

.section--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.75rem;
}

.section__head--left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 640px;
}

.section__sub {
  font-size: 1.08rem;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem 1.5rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.service-card:hover {
  border-color: rgba(214, 40, 40, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red-600);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  margin-bottom: 0.35rem;
}

.service-card p {
  font-size: 0.94rem;
  margin: 0;
}

.service-card--accent {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  border-color: transparent;
  color: #fff;
}

.service-card--accent h3 {
  color: #fff;
}

.service-card--accent p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card--accent .service-card__icon {
  background: rgba(255, 255, 255, 0.12);
  color: #ffb0b0;
}

.service-card--accent:hover {
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(11, 18, 32, 0.28);
}

/* ---------- How it works / hours / COI ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 1.75rem;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem 1.6rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red-600);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.step-card h3 {
  margin-bottom: 0.4rem;
}

.step-card p {
  margin: 0;
  font-size: 0.95rem;
}

.hours-coi {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.1rem;
}

.hours-coi__card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
}

.hours-coi__card h3 {
  margin-bottom: 0.65rem;
}

.hours-coi__time {
  font-size: 1.05rem;
  color: var(--navy-900);
  margin-bottom: 0.65rem;
  line-height: 1.45;
}

.hours-coi__time strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--red-600);
}

.hours-coi__note {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--slate-200);
  font-size: 0.92rem;
}

.hours-coi__note a {
  color: var(--red-600);
  font-weight: 650;
}

.hours-coi__card--accent {
  border-color: rgba(214, 40, 40, 0.25);
  background: linear-gradient(165deg, #fff 0%, #fff8f8 100%);
}

.hours-coi__card--accent .btn {
  margin-top: 0.35rem;
}

.hours-coi__card--accent .btn + .btn {
  margin-top: 0.35rem;
}

@media (max-width: 960px) {
  .steps-grid,
  .hours-coi {
    grid-template-columns: 1fr;
  }
}

/* ---------- 24/7 Emergency ---------- */
.emergency {
  background:
    radial-gradient(ellipse 70% 80% at 90% 20%, rgba(214, 40, 40, 0.35), transparent 50%),
    linear-gradient(135deg, #1a0a0a 0%, var(--navy-950) 45%, #1a1018 100%);
  color: #fff;
  padding: clamp(3rem, 7vw, 4.5rem) 0;
}

.emergency__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.emergency h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.emergency p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 48ch;
}

.emergency p strong {
  color: #fff;
  font-weight: 650;
}

.emergency__list {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.emergency__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
}

.emergency__list li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--red-500);
  box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.25);
}

.emergency__cta {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(8px);
}

.emergency__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fca5a5;
  margin-bottom: 0.5rem !important;
}

.emergency__phone {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff !important;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.emergency__phone:hover {
  color: #fecaca !important;
}

.emergency__note {
  font-size: 0.88rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
  margin: 0 auto 1.35rem !important;
  max-width: 28ch;
}

.contact__hint {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.15rem;
}

/* ---------- Strip ---------- */
.strip {
  background: var(--navy-950);
  color: #fff;
  padding: 1.75rem 0;
}

.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.strip__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-left: 3px solid var(--red-600);
  padding-left: 1rem;
}

.strip__stat strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.strip__stat span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- About ---------- */
.about {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.vision {
  margin: 1.5rem 0;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid var(--red-600);
  background: var(--white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
}

.vision p {
  font-family: var(--display);
  font-size: 1.12rem;
  font-style: italic;
  font-weight: 500;
  color: var(--navy-800);
  line-height: 1.45;
  margin: 0;
}

.owners {
  font-size: 0.98rem;
  color: var(--slate-700);
  line-height: 1.7;
}

.tagline {
  font-family: var(--display);
  font-weight: 600;
  color: var(--red-600);
  font-size: 0.98rem;
  margin-top: 0.75rem;
}

.about__panel {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.about__panel h3 {
  margin-bottom: 1rem;
}

.license-list {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.license-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0.9rem;
  background: var(--slate-50);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--navy-900);
}

.license-list span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--red-600);
  background: var(--red-soft);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.about__address h4 {
  margin: 1rem 0 0.35rem;
}

.about__address h4:first-child {
  margin-top: 0;
}

.about__address p {
  font-size: 0.95rem;
  color: var(--slate-700);
}

/* ---------- Careers ---------- */
.careers__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.careers__reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.careers__reasons article {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem;
}

.careers__reasons h3 {
  font-size: 1.05rem;
}

.careers__reasons p {
  font-size: 0.92rem;
  margin: 0;
}

.careers__openings {
  background: var(--navy-900);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
}

.careers__openings h3 {
  color: #fff;
  margin-bottom: 1.1rem;
}

.careers__openings ul {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.careers__openings li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.careers__openings li strong {
  font-weight: 650;
}

.careers__openings li span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.careers__note {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.92rem;
  margin-bottom: 1.15rem !important;
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact__list {
  margin-top: 1.75rem;
  display: grid;
  gap: 1.1rem;
}

.contact__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.2rem;
}

.contact__list a {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact__list a:hover {
  color: #ffb0b0;
}

.contact__list li > span:not(.contact__label) {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  backdrop-filter: blur(8px);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.4rem;
}

.form-row label span {
  color: var(--red-400);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 1rem;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  outline: none;
  transition: box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--red-500);
  box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.25);
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  margin-top: 0.9rem !important;
  font-size: 0.9rem !important;
  min-height: 1.3em;
}

.form-note.is-success {
  color: #7ddea0 !important;
}

.form-note.is-error {
  color: #ffb0b0 !important;
}

/* Netlify form honeypot — must stay invisible */
.form-honeypot {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* Utility pages (success / 404) */
.util-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 4rem 1.5rem;
  text-align: center;
}
.util-page__card {
  max-width: 480px;
}
.util-page h1 {
  margin-bottom: 0.75rem;
}
.util-page p {
  margin-bottom: 1.5rem;
}
.util-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1.5rem;
  font-size: 0.92rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr 0.9fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer h4 {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.9rem;
}

.footer ul {
  display: grid;
  gap: 0.45rem;
}

.footer a:hover {
  color: #fff;
}

.logo--footer img {
  width: 40px;
  height: 40px;
}

.logo--footer .logo__text strong {
  color: #fff;
}

.logo--footer .logo__text span {
  color: rgba(255, 255, 255, 0.5);
}

.footer__brand {
  display: grid;
  gap: 0.9rem;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.55);
  max-width: 28ch;
}

.footer__licenses {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  padding-top: 1.25rem;
}

.footer__bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__draft {
  color: rgba(255, 255, 255, 0.3) !important;
  font-style: italic;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid,
  .about,
  .careers__grid,
  .contact,
  .footer__grid,
  .emergency__inner {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    max-width: none;
  }

  .footer__brand p {
    max-width: none;
  }
}

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

  .nav {
    position: fixed;
    inset: calc(var(--header-h) + var(--topbar-h, 40px)) 0 auto 0;
    top: var(--header-h);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.25s var(--ease);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav > a:not(.btn) {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--slate-100);
  }

  .nav .btn {
    margin-top: 0.75rem;
    width: 100%;
  }

  .services-grid,
  .careers__reasons,
  .strip__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .logo__text strong {
    font-size: 0.95rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
