/* ============================================================
   AvioIQ Website — shared styles
   Built on Aviation Oasis Brand System (colors_and_type.css)
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #fff;
  color: #444444;          /* body color per brief */
  font-family: var(--ao-font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Layout primitives ---------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) {
  .container, .container-wide { padding: 0 20px; }
}

/* Section spacing */
section { padding: 96px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--ao-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ao-blue);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--ao-green-500);
}

h1, h2, h3, h4 { color: var(--ao-blue); font-family: var(--ao-font-display); margin: 0; }
.h-display {
  font-family: var(--ao-font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ao-blue);
}
.h-section {
  font-family: var(--ao-font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ao-blue);
}
.h-card {
  font-family: var(--ao-font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  color: var(--ao-blue);
  letter-spacing: -0.01em;
}
.lede {
  font-size: 19px;
  line-height: 1.55;
  color: #444444;
  max-width: 64ch;
}
.mono { font-family: var(--ao-font-mono); font-variant-numeric: tabular-nums; }

/* ---------- Buttons / CTAs ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ao-font-sans);
  font-weight: 500;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: 4px;
  border: 1px solid var(--ao-blue);
  cursor: pointer;
  transition: all 180ms var(--ao-ease);
  letter-spacing: -0.005em;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary { background: var(--ao-blue); color: #fff; }
.btn-primary:hover { background: #0F1B30; }
.btn-secondary { background: transparent; color: var(--ao-blue); }
.btn-secondary:hover { background: var(--ao-blue); color: #fff; }
.btn-ghost { background: transparent; color: var(--ao-blue); border: none; padding: 13px 16px; }
.btn-ghost:hover { color: #0F1B30; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-arrow::after {
  content: "→";
  font-family: var(--ao-font-sans);
  transition: transform 180ms var(--ao-ease);
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms var(--ao-ease), box-shadow 220ms var(--ao-ease);
}
.nav.scrolled {
  border-bottom: 1px solid var(--ao-line);
  box-shadow: 0 1px 0 rgba(26,43,74,0.02);
}
.nav-inner {
  max-width: 1440px; margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}
.nav-logo { justify-self: start; }
.nav-logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ao-font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ao-blue);
  letter-spacing: -0.02em;
}
.nav-logo-name { font-family: var(--ao-font-display); font-weight: 700; }
.nav-logo-img { height: 36px; width: auto; display: block; mix-blend-mode: multiply; }
.nav-logo-tag {
  align-self: center;
  font-family: var(--ao-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #4F7036;
  background: var(--ao-green-200);
  padding: 3px 7px;
  border-radius: var(--ao-r-pill);
  margin-left: 2px;
}
@media (max-width: 460px) { .nav-logo-tag { display: none; } }
.nav-logo .mark {
  width: 28px; height: 28px;
  border-radius: 4px;
  background: var(--ao-blue);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ao-green-500);
  font-family: var(--ao-font-mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.nav-items {
  display: flex; align-items: center; justify-content: center; gap: 4px;
}
.nav-item {
  font-family: var(--ao-font-sans);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ao-blue);
  padding: 10px 14px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px;
  background: transparent;
  border: none;
  letter-spacing: -0.005em;
}
.nav-item:hover { color: #0F1B30; background: var(--ao-surface-3); }
.nav-item.active {
  color: var(--ao-blue);
  font-weight: 600;
}
.nav-item.active:hover { background: var(--ao-surface-3); }
.nav-item.active::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ao-green-700);
  flex: none;
  margin-right: 1px;
}
.nav-item.active::after {
  content: none;
  position: absolute; bottom: -2px; left: 14px; right: 14px;
  height: 2px; background: var(--ao-green-500);
}
.nav-item.with-dropdown { position: relative; }
.nav-item .caret {
  width: 10px; height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 2px;
  opacity: 0.6;
}
.nav-right { justify-self: end; display: flex; align-items: center; gap: 6px; }

/* Mega menu */
.nav-product-wrap {
  /* static positioning so .mega anchors to the full-width .nav, not this
     narrow button; padding+negative margin extends the hover hit-area down
     to the nav's bottom edge so the panel bridges on hover without a gap. */
  display: inline-flex;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: -16px;
}
.mega {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--ao-line);
  border-bottom: 1px solid var(--ao-line);
  box-shadow: 0 18px 40px -20px rgba(26,43,74,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 200ms var(--ao-ease), transform 200ms var(--ao-ease), visibility 0s 200ms;
  z-index: 50;
}
.nav-product-wrap:hover .mega,
.mega:hover {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity 200ms var(--ao-ease), transform 200ms var(--ao-ease);
}
.mega-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 32px 44px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.4fr;
  gap: 48px;
}

/* Mega menu v2 — two-pane list + live preview */
.mega-inner.mega-v2 {
  grid-template-columns: minmax(0,1fr) 340px;
  gap: 40px;
  max-width: 1200px;
  padding: 32px 32px 36px;
  align-items: start;
}
.mega-list-pane { display: flex; flex-direction: column; gap: 26px; min-width: 0; }
.mega-group { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 16px; margin-top: 12px; }
.mega-row {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 12px 8px 8px;
  border-radius: 8px;
  min-width: 0;
  transition: background 140ms var(--ao-ease);
}
.mega-row:hover, .mega-row.is-active { background: var(--ao-surface-3); }
.mega-row-icon {
  width: 32px; height: 32px; border-radius: 7px;
  background: #fff;
  border: 1px solid var(--ao-line);
  color: var(--ao-blue);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
  transition: background 140ms var(--ao-ease), color 140ms var(--ao-ease), border-color 140ms var(--ao-ease);
}
.mega-row:hover .mega-row-icon, .mega-row.is-active .mega-row-icon {
  background: var(--ao-blue); color: var(--ao-green-500); border-color: var(--ao-blue);
}
.mega-row-icon svg { width: 16px; height: 16px; stroke-width: 1.5; }
.mega-row-name {
  flex: 1; min-width: 0;
  font-family: var(--ao-font-sans);
  font-weight: 600; font-size: 13.5px;
  color: var(--ao-blue); letter-spacing: -0.005em;
  line-height: 1.25;
  display: inline-flex; align-items: center; gap: 8px;
}
/* market-ready / pipeline status dot */
.mega-dot { flex: none; width: 7px; height: 7px; border-radius: 50%; }
.mega-dot.ready { background: var(--ao-green-500); box-shadow: 0 0 0 2.5px rgba(168,208,141,0.30); }
.mega-dot.pipeline { background: var(--ao-ink-4); opacity: 0.45; }
.mega-row.is-pipeline .mega-row-icon { opacity: 0.72; }
.mega-preview-name .mega-dot { width: 9px; height: 9px; }
.mega-row-go {
  flex: none; color: var(--ao-ink-4);
  display: inline-flex; align-items: center;
  opacity: 0; transform: translateX(-4px);
  transition: opacity 140ms var(--ao-ease), transform 140ms var(--ao-ease), color 140ms var(--ao-ease);
}
.mega-row-go svg { width: 15px; height: 15px; stroke-width: 2; }
.mega-row:hover .mega-row-go, .mega-row.is-active .mega-row-go {
  opacity: 1; transform: translateX(0); color: var(--ao-green-800);
}

/* preview pane */
.mega-preview {
  background: var(--ao-surface-2);
  border: 1px solid var(--ao-line);
  border-radius: 12px;
  padding: 24px 22px 22px;
  display: flex; flex-direction: column;
  min-height: 320px;
}
.mega-preview-icon {
  width: 46px; height: 46px; border-radius: 11px;
  background: var(--ao-blue); color: var(--ao-green-500);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.mega-preview-icon svg { width: 23px; height: 23px; stroke-width: 1.5; }
.mega-preview-tag {
  font-family: var(--ao-font-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ao-ink-4); margin-bottom: 9px;
}
.mega-preview-status {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ao-font-mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; margin-bottom: 14px;
}
.mega-preview-status::before { content: ""; width: 6px; height: 6px; border-radius: 50%; }
.mega-preview-status.ready { color: var(--ao-green-900); background: var(--ao-green-200); border: 1px solid var(--ao-green-500); }
.mega-preview-status.ready::before { background: var(--ao-green-500); }
.mega-preview-status.pipeline { color: var(--ao-ink-3); background: var(--ao-surface-3); border: 1px solid var(--ao-line); }
.mega-preview-status.pipeline::before { background: var(--ao-ink-4); opacity: 0.55; }
.mega-preview-name {
  font-family: var(--ao-font-display); font-weight: 700; font-size: 19px;
  color: var(--ao-blue); letter-spacing: -0.015em; line-height: 1.18; margin: 0 0 7px;
}
.mega-preview-tagline {
  font-size: 13px; font-weight: 600; color: var(--ao-green-800);
  margin-bottom: 12px; line-height: 1.4;
}
.mega-preview-brief {
  font-size: 13px; line-height: 1.6; color: var(--ao-ink-3); margin: 0 0 20px;
}
.mega-preview-link {
  margin-top: auto; align-self: flex-start;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: #fff;
  background: var(--ao-blue); padding: 9px 15px; border-radius: 7px;
  transition: background 140ms var(--ao-ease);
}
.mega-preview-link:hover { background: var(--ao-blue-900); }
.mega-preview-link svg { width: 15px; height: 15px; stroke-width: 2; }
.mega-preview-all { margin-top: 16px; }
.mega-preview-all a {
  font-family: var(--ao-font-mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--ao-ink-3); font-weight: 500;
}
.mega-preview-all a:hover { color: var(--ao-blue); }

@media (max-width: 980px) {
  .mega-inner.mega-v2 { grid-template-columns: 1fr; }
  .mega-preview { display: none; }
  .mega-group { grid-template-columns: 1fr 1fr 1fr; }
}

.mega-col-eyebrow {
  font-family: var(--ao-font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ao-ink-3);
  font-weight: 500;
  margin-bottom: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ao-line);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ao-blue);
  color: rgba(255,255,255,0.78);
  padding: 80px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 36px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: minmax(0,1fr); gap: 32px; }
  .footer-form input[type="email"] { min-width: 0; }
}
.footer h4 {
  color: var(--ao-green-500);
  font-family: var(--ao-font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.footer-brand-name {
  font-family: var(--ao-font-display);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-family: var(--ao-font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ao-green-500);
  margin-bottom: 18px;
}
/* Newsletter */
.footer-news {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  max-width: 30ch;
  margin-bottom: 18px;
}
.footer-form {
  display: flex;
  max-width: 320px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
}
.footer-form input {
  flex: 1; min-width: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--ao-font-sans);
  font-size: 14px;
  padding: 12px 14px;
  outline: none;
}
.footer-form input::placeholder { color: rgba(255,255,255,0.45); }
.footer-form button {
  flex: none;
  width: 48px;
  border: none;
  background: var(--ao-green-700);
  color: var(--ao-blue);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 140ms var(--ao-ease);
}
.footer-form button:hover { background: var(--ao-green-500); }
.footer-form button svg { width: 18px; height: 18px; stroke-width: 2; }
.footer-form input.err { box-shadow: 0 0 0 1px #E8846F inset; border-radius: 8px; }
.footer-form-ok { display: flex; align-items: center; font-size: 13px; color: var(--ao-green-500); padding: 12px 4px; line-height: 1.5; }
/* Social */
.footer-social-label {
  font-family: var(--ao-font-display);
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  margin: 26px 0 14px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.78);
  transition: background 140ms var(--ao-ease), color 140ms var(--ao-ease), border-color 140ms var(--ao-ease), transform 140ms var(--ao-ease);
}
.footer-social a:hover {
  background: var(--ao-green-700);
  border-color: var(--ao-green-700);
  color: var(--ao-blue);
  transform: translateY(-2px);
}
.footer-social a svg { width: 18px; height: 18px; stroke-width: 1.75; }
.footer-brand {
  font-family: var(--ao-font-display);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.footer-brand .mark {
  width: 28px; height: 28px; border-radius: 4px;
  background: rgba(168,208,141,0.15);
  border: 1px solid rgba(168,208,141,0.4);
  color: var(--ao-green-500);
  font-family: var(--ao-font-mono);
  font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.footer-tag {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  max-width: 32ch;
  margin-bottom: 22px;
}
.footer-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 14px;
  background: rgba(168,208,141,0.10);
  border: 1px solid rgba(168,208,141,0.28);
  border-radius: 4px;
  font-family: var(--ao-font-mono);
  font-size: 11px;
  color: var(--ao-green-500);
  letter-spacing: 0.04em;
}
.footer-badge .pip { width:6px; height:6px; border-radius:3px; background: var(--ao-green-500); box-shadow: 0 0 0 3px rgba(168,208,141,0.18); }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 140ms var(--ao-ease);
}
.footer a:hover { color: #fff; }
/* ---------- FOOTER · INCUBATED AT ---------- */
.footer-incubated { margin-top: 26px; }
.footer-incubated-label {
  font-family: var(--ao-font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 14px;
}
.footer-incubated-card {
  display: inline-block;
  background: #fff;
  border-radius: var(--ao-r-lg);
  overflow: hidden;
  line-height: 0;
}
.footer-incubated-card img {
  width: 248px;
  max-width: 100%;
  height: auto;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  margin-top: 56px;
  padding-top: 28px;
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; text-align: center;
  font-family: var(--ao-font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
.footer-bottom .legal-links {
  order: -1;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 22px;
}
.footer-bottom .legal-links a {
  font-family: var(--ao-font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0;
}
.footer-bottom .legal-links a:hover { color: #fff; }

/* ---------- Generic card ---------- */
.card {
  background: #fff;
  border: 1px solid var(--ao-line);
  border-radius: 8px;
  padding: 28px;
  transition: border-color 180ms var(--ao-ease), transform 180ms var(--ao-ease), box-shadow 180ms var(--ao-ease);
}
.card:hover {
  border-color: var(--ao-line-strong);
  box-shadow: 0 14px 32px -18px rgba(26,43,74,0.18);
}

/* ---------- Utility ---------- */
.bg-lite { background: var(--ao-green-200); }
.bg-blue { background: var(--ao-blue); color: #fff; }
.bg-grid-soft {
  background-color: #fff;
  background-image:
    linear-gradient(rgba(26,43,74,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,43,74,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
}
.divider {
  height: 1px; background: var(--ao-line);
  border: 0; margin: 0;
}
hr.divider { border: 0; height: 1px; background: var(--ao-line); margin: 0; }

/* ---------- Mobile nav toggle ---------- */
.nav-toggle {
  display: none;
  background: transparent; border: none;
  color: var(--ao-blue);
  padding: 8px;
  cursor: pointer;
}
@media (max-width: 980px) {
  .nav-items { display: none; }
  .nav-right .btn-secondary { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-inner { grid-template-columns: auto 1fr; gap: 12px; padding: 0 16px; }
  .nav-right { grid-column: 2; }
}

/* ---------- Mobile nav drawer ---------- */
.mnav {
  position: fixed; inset: 0; z-index: 1100;
  background: var(--ao-blue); color: #fff;
  padding: 18px 26px 30px;
  display: none; flex-direction: column;
  overflow-y: auto;
}
.mnav.on { display: flex; }
@media (min-width: 981px) { .mnav { display: none !important; } }
.mnav-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.mnav-brand { font-family: var(--ao-font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; }
.mnav-brand em { font-style: normal; color: var(--ao-green-500); font-family: var(--ao-font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; margin-left: 8px; }
.mnav-close { background: rgba(255,255,255,0.08); border: none; color: #fff; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.mnav-links { display: flex; flex-direction: column; }
.mnav-links a { font-family: var(--ao-font-display); font-weight: 600; font-size: 25px; color: #fff; text-decoration: none; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.10); letter-spacing: -0.02em; }
.mnav-links a.cur { color: var(--ao-green-500); }
.mnav-links.sm a { font-family: var(--ao-font-sans); font-weight: 500; font-size: 16px; padding: 12px 0; }
.mnav-sec { font-family: var(--ao-font-mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ao-green-500); margin: 30px 0 4px; }
.mnav-cta { margin-top: 34px; background: var(--ao-green-500); color: var(--ao-blue); justify-content: center; font-weight: 600; }
.mnav-cta:hover { background: var(--ao-green-200); }


/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--ao-blue); color: #fff;
  padding: 10px 18px; border-radius: 0 0 8px 8px;
  font-family: var(--ao-font-sans); font-size: 13px; font-weight: 500;
  text-decoration: none; transition: top 160ms ease;
}
.skip-link:focus { top: 0; }
#main-content { outline: none; }
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--ao-blue); outline-offset: 2px; border-radius: 3px;
}

/* ---------- Form validation states ---------- */
.contact-form input.err, .contact-form textarea.err, .footer-form input.err {
  border-color: #8A3B2E !important;
  background: #FDF6F4;
}
