/* WayMaker Companies — main stylesheet */
:root {
  /* Brand red from official Waymaker logo SVG (#a8231f) */
  --red: #a8231f;
  --red-dark: #7a1a17;
  --red-soft: #f8e5e4;
  --red-tint: rgba(168, 35, 31, 0.08);
  --charcoal: #1c1917;
  --slate: #44403c;
  --stone: #78716c;
  --sand: #f4f0e8;
  --white: #ffffff;
  --line: #e7e0d8;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(28, 25, 23, .08);
  --shadow-lg: 0 8px 30px rgba(28, 25, 23, .14);
  --max: 1240px;
  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --font-mono: "Source Sans 3", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
}
img { max-width: 100%; display: block; }
a { color: var(--red); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }
.section { padding: 72px 0; }
.section.tint { background: var(--sand); }
.section.dark { background: var(--charcoal); color: #e7e0d8; }
.section.dark h2, .section.dark h3 { color: var(--white); }

.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .95rem;
  color: var(--red);
  margin-bottom: 10px;
}
.lead { font-size: 1.18rem; color: var(--slate); max-width: 62ch; }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- Top bar + header ---------- */
.topbar {
  background: var(--red-dark);
  color: #f5ebe9;
  font-size: .88rem;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  min-height: 40px;
}
.topbar-message {
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.topbar-action {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: .88rem;
  transition: opacity .15s ease;
}
.topbar-action strong { font-weight: 600; letter-spacing: .02em; }
.topbar-action:hover { opacity: .85; color: var(--white); }
.topbar-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .topbar-inner { justify-content: center; text-align: center; padding: 8px 0; }
  .topbar-message { width: 100%; }
  .topbar-actions { justify-content: center; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 8px rgba(28,25,23,.06);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}
.logo { flex-shrink: 0; }
.logo img { height: 52px; width: auto; max-width: none; }
.nav { display: flex; align-items: center; gap: 16px; }
.nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--charcoal);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 3px solid transparent;
}
.nav a:hover, .nav a.active { color: var(--red); border-bottom-color: var(--red); }
.nav .btn { border-bottom: none; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--charcoal);
  width: 44px;
  height: 44px;
  padding: 10px;
  font-size: 0;
  line-height: 0;
}
.nav-toggle::before {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -7px 0 currentColor, 0 7px 0 currentColor;
}

/* dropdown */
.has-drop { position: relative; }
.has-drop > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: 0.15em;
}
.drop {
  display: none;
  position: absolute;
  top: 100%;
  left: -14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 260px;
  padding: 8px 0;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { display: block; }
.drop a { display: block; padding: 9px 18px; border-bottom: none; font-size: 1rem; }
.drop a:hover { background: var(--sand); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid var(--red);
  transition: all .18s ease;
  cursor: pointer;
}
.btn-solid { background: var(--red); color: var(--white); }
.btn-solid:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-ghost { color: var(--red); background: transparent; }
.btn-ghost:hover { background: var(--red); color: var(--white); }
.section.dark .btn-ghost { color: var(--white); border-color: var(--white); }
.section.dark .btn-ghost:hover { background: var(--white); color: var(--charcoal); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

.hero .btn-ghost { color: var(--white); border-color: var(--white); }
.hero .btn-ghost:hover { background: var(--white); color: var(--charcoal); }
.nav .btn { padding: 10px 18px; font-size: 1rem; white-space: nowrap; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15,12,10,.82) 20%, rgba(15,12,10,.45) 65%, rgba(15,12,10,.25));
  z-index: 1;
}
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .wrap { position: relative; z-index: 2; padding-top: 64px; padding-bottom: 64px; }
.hero h1 { color: var(--white); max-width: 16ch; }
.hero .lead { color: #e7e0d8; margin-top: 16px; }
.hero .kicker { color: #f0b4b2; }

/* page hero (interior) */
.page-hero { min-height: 320px; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; margin-top: 40px; }
.grid.cols-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card img { height: 200px; width: 100%; object-fit: cover; }
.card .card-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card h3 a { color: inherit; text-decoration: none; }
.card h3 a:hover { color: var(--red); }
.card p { color: var(--slate); flex: 1; }
.card .more {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
}
.card .more::after,
a.more::after {
  content: " \2192";
}
.blog-back::before {
  content: "\2190 ";
}

/* numbered process steps */
.steps { counter-reset: step; }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 26px 84px;
  position: relative;
  box-shadow: var(--shadow);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 24px;
  top: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--slate); }
.steps .step + .step { margin-top: 18px; }

/* feature list w/ checkmarks */
.checks { list-style: none; margin-top: 18px; }
.checks li { padding: 7px 0 7px 34px; position: relative; color: var(--slate); }
.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/contain no-repeat;
}

/* split (text + image) */
.split { display: grid; gap: 44px; align-items: center; grid-template-columns: 1fr 1fr; margin-top: 34px; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 420px; object-fit: cover; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split img { height: 300px; } }

/* service areas */
.areas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; justify-content: center; }
.area-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--slate);
}

/* testimonials */
.quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow);
  color: var(--slate);
  font-size: 1.02rem;
}
.quote .stars {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
  letter-spacing: 3px;
  color: #d97706;
  line-height: 1;
}
.quote .stars::before { content: "★★★★★"; }

/* CTA band */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 24ch; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-top: 14px; background: var(--white); box-shadow: var(--shadow); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 54px 18px 22px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.18rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--red);
  font-weight: 400;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-a { padding: 0 22px 20px; color: var(--slate); }

/* ---------- Gallery ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; margin-top: 26px; }
.gal-grid a { display: block; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.gal-grid img { width: 100%; height: 190px; object-fit: cover; transition: transform .25s ease; }
.gal-grid a:hover img { transform: scale(1.05); }
.lightbox {
  position: fixed; inset: 0; background: rgba(15,12,10,.92); z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 88vh; max-width: 92vw; width: auto; border-radius: 6px; }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; background: none; border: 0; color: #fff; font-size: 2.4rem; cursor: pointer; padding: 10px 16px;
}
.lb-close { top: 12px; right: 18px; }
.lb-prev { left: 8px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 8px; top: 50%; transform: translateY(-50%); }

.form-notice {
  position: fixed; inset: 0; background: rgba(15,12,10,.72); z-index: 110;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.form-notice.open { display: flex; }
.form-notice-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  width: 100%;
  padding: 32px 28px 28px;
  text-align: center;
  position: relative;
}
.form-notice-panel h3 { margin-bottom: 12px; font-size: 1.5rem; }
.form-notice-panel p { color: var(--slate); line-height: 1.6; margin-bottom: 20px; }
.form-notice-panel .btn-row { justify-content: center; gap: 12px; }
.form-notice-close {
  position: absolute; top: 10px; right: 14px;
  background: none; border: 0; font-size: 1.6rem; line-height: 1;
  color: var(--stone); cursor: pointer; padding: 4px 8px;
}
.form-notice-close:hover { color: var(--ink); }

/* Calculator styles live in /css/calculator.css */

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; margin-top: 26px; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid label { display: block; font-weight: 700; margin-bottom: 6px; font-size: .95rem; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 1rem;
  font-family: var(--font-body);
}
.form-grid textarea { min-height: 130px; resize: vertical; }

/* Mats product page */
.mats-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.mats-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}
.mats-stat b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  color: var(--red);
  line-height: 1.1;
  margin-bottom: 6px;
}
.mats-stat span {
  font-size: .82rem;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
}
.mats-products {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}
@media (min-width: 820px) {
  .mats-products.cols-2 { grid-template-columns: 1fr 1fr; align-items: start; }
}
.mats-product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow);
  height: 100%;
}
.mats-product-card h3 { margin-bottom: 6px; }
.mats-product-card .sub { color: var(--slate); margin-bottom: 18px; font-size: .98rem; }
.mats-specs {
  list-style: none;
  margin: 0 0 20px;
  padding: 14px 16px;
  background: var(--sand);
  border-radius: 6px;
  font-size: .95rem;
  color: var(--slate);
}
.mats-specs li + li { margin-top: 6px; }
.mats-price-list { list-style: none; }
.mats-price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--slate);
  font-size: .98rem;
}
.mats-price-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.mats-price-list .price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--charcoal);
  white-space: nowrap;
}
.mats-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: var(--red-soft);
  color: var(--red-dark);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
}
.mats-note {
  font-size: .9rem;
  color: var(--stone);
  margin-top: 16px;
  line-height: 1.55;
}
.mats-connector-grid {
  margin-top: 28px;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  justify-content: center;
}
@media (max-width: 640px) {
  .mats-connector-grid { grid-template-columns: repeat(2, minmax(140px, 1fr)); }
}
.mats-connector-grid img { height: 160px; object-fit: contain; background: var(--white); padding: 10px; }
.fleet-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
@media (max-width: 760px) { .fleet-stats { grid-template-columns: repeat(2, 1fr); } }
.fleet-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
}
.fleet-stat b {
  display: block;
  font-family: var(--head);
  font-size: 1.55rem;
  color: var(--red);
  line-height: 1.1;
}
.fleet-stat span { display: block; margin-top: 6px; font-size: .92rem; color: var(--stone); }
.fleet-compare {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}
.fleet-compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  color: var(--slate);
}
.fleet-compare-row:last-child { border-bottom: 0; }
.fleet-compare-head {
  background: var(--ink);
  color: var(--white);
  font-family: var(--head);
  font-size: .88rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.fleet-compare-highlight { background: #fdf5f4; }
@media (max-width: 640px) {
  .fleet-compare-row { grid-template-columns: 1fr; gap: 4px; }
  .fleet-compare-head { display: none; }
  .fleet-compare-row span:first-child { font-weight: 600; color: var(--ink); }
}
.fleet-note {
  font-size: .92rem;
  color: var(--stone);
  line-height: 1.55;
  margin-top: 14px;
}
.fleet-drivers-actions { justify-content: center; }

/* contact cards */
.contact-cards { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: 34px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  box-shadow: var(--shadow);
}
.contact-card .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
}
.contact-card .ico svg { width: 26px; height: 26px; display: block; }
.contact-card a { font-weight: 700; text-decoration: none; }

/* ---------- Blog ---------- */
.post-card img { height: 210px; }
.post-meta { font-size: .9rem; color: var(--stone); text-transform: uppercase; letter-spacing: .08em; }
.article { max-width: 760px; margin: 0 auto; }
.article h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 10px; }
.article .post-meta { margin-bottom: 30px; }
.article h2 { font-size: 1.7rem; margin: 34px 0 12px; }
.article h3 { font-size: 1.3rem; margin: 26px 0 10px; }
.article p { margin: 0 0 18px; color: var(--slate); }
.article ul, .article ol { margin: 0 0 18px 24px; color: var(--slate); }
.article li { margin-bottom: 8px; }
.article img { border-radius: var(--radius); margin: 24px 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: #d6d3d1; padding: 60px 0 0; }
.site-footer h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer a { color: #d6d3d1; text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer .logo-foot img { height: 56px; margin-bottom: 16px; }
.footer-bottom {
  border-top: 1px solid #33302c;
  margin-top: 46px;
  padding: 20px 0;
  font-size: .9rem;
  color: #a8a29e;
  text-align: center;
}

/* ---------- Responsive nav ---------- */
@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 10px 0 16px;
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 24px; border-bottom: none; }
  .drop { display: block; position: static; border: 0; box-shadow: none; padding-left: 16px; min-width: 0; }
  .nav .btn { margin: 10px 24px 0; text-align: center; }
  .hero { min-height: 480px; }
}

/* Hidden nav items (e.g. Blog while unpublished) */
.nav-hidden { display: none !important; }


/* polish-2026-08-31 */
.has-drop > a { white-space: nowrap; }
@media (max-width: 640px) {
  .topbar-message { display: none; }
  .topbar-inner { justify-content: center; }
}

.form-status { color: var(--red-dark); font-weight: 600; margin-top: 10px; }
.form-status:empty { display: none; }
