/* Martinez About Header + Hero Elementor Widget */
.mabh-widget,
.mabh-widget * {
  box-sizing: border-box;
}

.mabh-widget {
  --mabh-navy: #071f34;
  --mabh-navy-2: #0a2a46;
  --mabh-navy-3: #0e3556;
  --mabh-gold: #c79945;
  --mabh-gold-light: #e2ba62;
  --mabh-cream: #f8f3ea;
  --mabh-white: #ffffff;
  --mabh-ink: #102131;
  --mabh-muted: #6f7c87;
  --mabh-line: #e7ebef;
  --mabh-shadow: 0 22px 60px rgba(4, 24, 42, .22);
  --mabh-soft-shadow: 0 10px 26px rgba(4, 24, 42, .10);
  --mabh-radius: 8px;
  --mabh-container-width: 1180px;
  --mabh-container-gutter: 48px;
  --mabh-header-height: 96px;
  --mabh-hero-min-height: 620px;
  --mabh-hero-gap: 78px;
  --mabh-quote-width: 366px;
  --mabh-content-width: 655px;
  --mabh-nav-gap: 32px;
  --mabh-header-action-gap: 18px;
  --mabh-card-radius: 7px;
  font-family: "Inter", Arial, sans-serif;
  color: var(--mabh-ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

.mabh-widget a {
  color: inherit;
  text-decoration: none;
}

.mabh-widget input,
.mabh-widget select,
.mabh-widget button {
  font-family: inherit;
}

.mabh-container {
  width: min(var(--mabh-container-width), calc(100% - var(--mabh-container-gutter)));
  margin-inline: auto;
}

/* Top Bar */
.mabh-topbar {
  background: var(--mabh-navy);
  color: rgba(255, 255, 255, .88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1px;
}

.mabh-topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mabh-topbar-left,
.mabh-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}

.mabh-topbar-left span:first-child {
  color: #fff;
}

.mabh-topbar b {
  color: var(--mabh-gold-light);
  font-weight: 900;
}

.mabh-social {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.mabh-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Header */
.mabh-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(7,31,52,.08);
  box-shadow: 0 7px 22px rgba(7,31,52,.05);
}

.mabh-site-header.mabh-not-sticky {
  position: relative;
}

.mabh-header-inner {
  min-height: var(--mabh-header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.mabh-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 294px;
}

.mabh-logo {
  width: 54px;
  height: 58px;
  flex: 0 0 54px;
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.mabh-logo-img {
  width: 54px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.mabh-logo-mark::before {
  content: "";
  position: absolute;
  inset: 1px 4px;
  border: 4px solid var(--mabh-gold);
  clip-path: polygon(50% 0%, 94% 18%, 85% 77%, 50% 100%, 15% 77%, 6% 18%);
  z-index: -1;
}

.mabh-logo-mark::after {
  content: attr(data-letter);
  color: var(--mabh-navy);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2px;
}

.mabh-brand-title {
  display: block;
  color: var(--mabh-navy);
  font-size: 19px;
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.35px;
}

.mabh-brand-subtitle {
  display: block;
  margin-top: 5px;
  color: var(--mabh-navy-2);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .55px;
}

.mabh-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--mabh-nav-gap);
}

.mabh-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--mabh-header-height);
  color: var(--mabh-navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .45px;
  text-transform: uppercase;
  transition: color .18s ease;
}

.mabh-nav a:hover {
  color: var(--mabh-gold);
}

.mabh-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 3px;
  border-radius: 30px;
  background: var(--mabh-gold);
}

.mabh-nav .dropdown::before {
  content: "⌄";
  order: 2;
  margin-left: 6px;
  font-size: 12px;
  transform: translateY(-1px);
  opacity: .8;
}

.mabh-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--mabh-header-action-gap);
  min-width: 315px;
}

.mabh-call {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.mabh-call-icon {
  color: var(--mabh-gold);
  font-size: 23px;
  line-height: 1;
}

.mabh-call strong {
  display: block;
  color: var(--mabh-navy);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

.mabh-call span:last-child {
  display: block;
  margin-top: 5px;
  color: var(--mabh-muted);
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.mabh-header-btn {
  height: 48px;
  min-width: 142px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--mabh-gold-light), var(--mabh-gold));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .45px;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(199,153,69,.28);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.mabh-header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(199,153,69,.36);
  filter: saturate(1.04);
}

/* Hero */
.mabh-hero {
  position: relative;
  min-height: var(--mabh-hero-min-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mabh-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 21% 34%, rgba(226,186,98,.19), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(2,16,29,.26) 100%);
  pointer-events: none;
}

.mabh-hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--mabh-container-width), calc(100% - var(--mabh-container-gutter)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--mabh-quote-width);
  gap: var(--mabh-hero-gap);
  align-items: center;
  padding: 82px 0 78px;
}

.mabh-hero-copy {
  color: #fff;
  max-width: var(--mabh-content-width);
}

.mabh-eyebrow {
  color: var(--mabh-gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.9px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.mabh-hero h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 5.8vw, 73px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1.4px;
  margin-bottom: 24px;
  max-width: 650px;
  text-wrap: balance;
}

.mabh-hero h1 span {
  color: var(--mabh-gold-light);
}

.mabh-hero-text {
  max-width: 570px;
  color: rgba(255,255,255,.91);
  font-size: 17px;
  line-height: 1.82;
  font-weight: 500;
  margin-bottom: 34px;
}

.mabh-hero-buttons {
  display: flex;
  align-items: center;
  gap: 17px;
  flex-wrap: wrap;
}

.mabh-btn {
  min-width: 158px;
  height: 54px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .45px;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.mabh-btn:hover {
  transform: translateY(-2px);
}

.mabh-btn-primary {
  background: linear-gradient(135deg, var(--mabh-gold-light), var(--mabh-gold));
  color: #fff;
  box-shadow: 0 14px 30px rgba(199,153,69,.28);
}

.mabh-btn-secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,.78);
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(5px);
}

.mabh-btn-secondary:hover {
  border-color: var(--mabh-gold-light);
  background: rgba(226,186,98,.12);
}

/* Quote Card */
.mabh-quote-card {
  background: linear-gradient(180deg, #0a2b47, #061d31);
  color: #fff;
  border-radius: var(--mabh-card-radius);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--mabh-shadow);
  padding: 37px 36px 31px;
}

.mabh-quote-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 17px;
}

.mabh-gold-line {
  width: 54px;
  height: 3px;
  border-radius: 30px;
  background: var(--mabh-gold);
  margin-bottom: 24px;
}

.mabh-form-field {
  width: 100%;
  height: 48px;
  display: block;
  margin-bottom: 13px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 4px;
  outline: none;
  background: #fff;
  color: #182a3b;
  font-size: 13px;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(0,0,0,.04);
}

.mabh-form-field::placeholder {
  color: #7d8791;
  font-weight: 500;
}

.mabh-select-wrap {
  position: relative;
}

.mabh-select-wrap::after {
  content: "⌄";
  position: absolute;
  right: 14px;
  top: 12px;
  color: #6e7a85;
  font-size: 16px;
  pointer-events: none;
}

.mabh-select-wrap select {
  appearance: none;
  cursor: pointer;
}

.mabh-form-submit {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--mabh-gold-light), var(--mabh-gold));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .45px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 13px 28px rgba(199,153,69,.24);
  transition: transform .18s ease, box-shadow .18s ease;
  margin-top: 4px;
}

.mabh-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 17px 34px rgba(199,153,69,.33);
}

.mabh-form-note {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  color: rgba(255,255,255,.75);
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
}

.mabh-form-note b {
  color: var(--mabh-gold-light);
}

/* Elementor editor safety */
.elementor-editor-active .mabh-site-header {
  position: relative;
}

/* Responsive */
@media (max-width: 1120px) {
  .mabh-header-inner {
    min-height: auto;
    padding: 20px 0;
    flex-wrap: wrap;
  }

  .mabh-nav {
    order: 4;
    width: 100%;
    flex-basis: 100%;
    justify-content: flex-start;
    gap: 26px;
  }

  .mabh-nav a {
    min-height: 38px;
  }

  .mabh-nav a.active::after {
    bottom: 0;
  }

  .mabh-actions {
    min-width: 0;
  }

  .mabh-hero-inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .mabh-quote-card {
    width: min(430px, 100%);
  }
}

@media (max-width: 760px) {
  .mabh-container,
  .mabh-hero-inner {
    width: min(100% - 30px, var(--mabh-container-width));
  }

  .mabh-topbar-inner {
    padding: 11px 0;
    min-height: auto;
    align-items: flex-start;
  }

  .mabh-topbar-left {
    white-space: normal;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .mabh-hide-mobile {
    display: none !important;
  }

  .mabh-topbar-right {
    display: none;
  }

  .mabh-widget.mabh-hide-phone-mobile .mabh-call {
    display: none !important;
  }

  .mabh-widget.mabh-hide-nav-mobile .mabh-nav {
    display: none !important;
  }

  .mabh-widget.mabh-hide-quote-mobile .mabh-quote-card {
    display: none !important;
  }


  .mabh-header-inner {
    gap: 18px;
  }

  .mabh-brand {
    min-width: 0;
  }

  .mabh-logo,
  .mabh-logo-img {
    width: 46px;
    height: 50px;
    flex-basis: 46px;
  }

  .mabh-logo-mark::after {
    font-size: 22px;
  }

  .mabh-brand-title {
    font-size: 16px;
  }

  .mabh-brand-subtitle {
    font-size: 11px;
  }

  .mabh-actions {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
  }

  .mabh-call strong {
    font-size: 15px;
  }

  .mabh-call span:last-child {
    text-align: left;
  }

  .mabh-header-btn {
    min-width: 124px;
    height: 44px;
    padding: 0 16px;
  }

  .mabh-nav {
    overflow-x: auto;
    gap: 22px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .mabh-nav::-webkit-scrollbar {
    display: none;
  }

  .mabh-nav a {
    white-space: nowrap;
    font-size: 11px;
  }

  .mabh-hero {
    min-height: auto;
    background-position: center;
  }

  .mabh-hero-inner {
    padding: 58px 0 54px;
  }

  .mabh-hero h1 {
    font-size: 43px;
  }

  .mabh-hero-text {
    font-size: 15.5px;
    line-height: 1.72;
  }

  .mabh-hero-buttons .mabh-btn {
    width: 100%;
  }

  .mabh-quote-card {
    padding: 30px 22px;
  }
}

@media (max-width: 430px) {
  .mabh-actions {
    display: block;
  }

  .mabh-header-btn {
    width: 100%;
    margin-top: 14px;
  }

  .mabh-hero h1 {
    font-size: 37px;
  }
}

/* =========================================================
   MOBILE NAVIGATION + FULL RESPONSIVE REFINEMENT (v1.1)
   Desktop layout remains unchanged.
========================================================= */
.mabh-mobile-toggle,
.mabh-mobile-panel {
  display: none;
}

@media (max-width: 900px) {
  .mabh-site-header {
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .mabh-header-inner {
    min-height: 76px;
    padding: 9px 0;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .mabh-brand {
    min-width: 0;
    max-width: calc(100% - 62px);
    gap: 10px;
  }

  .mabh-logo,
  .mabh-logo-img {
    width: 42px;
    height: 46px;
    flex: 0 0 42px;
  }

  .mabh-brand-title {
    font-size: 14px;
    line-height: 1.05;
    letter-spacing: -.15px;
  }

  .mabh-brand-subtitle {
    margin-top: 3px;
    font-size: 9px;
    letter-spacing: .45px;
  }

  .mabh-nav,
  .mabh-actions {
    display: none !important;
  }

  .mabh-mobile-toggle {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    padding: 0;
    border: 1px solid rgba(7,31,52,.16);
    border-radius: 6px;
    background: #fff;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 7px 18px rgba(7,31,52,.08);
  }

  .mabh-mobile-toggle span {
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--mabh-navy);
    transition: transform .22s ease, opacity .22s ease;
  }

  .mabh-mobile-open .mabh-mobile-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mabh-mobile-open .mabh-mobile-toggle span:nth-child(2) {
    opacity: 0;
  }

  .mabh-mobile-open .mabh-mobile-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mabh-mobile-panel {
    display: block;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    border-top: 1px solid rgba(7,31,52,.08);
    box-shadow: 0 16px 30px rgba(7,31,52,.10);
    transition: max-height .30s ease, opacity .24s ease, visibility .24s ease;
  }

  .mabh-mobile-open .mabh-mobile-panel {
    max-height: 720px;
    opacity: 1;
    visibility: visible;
  }

  .mabh-mobile-panel-inner {
    padding-top: 8px;
    padding-bottom: 18px;
  }

  .mabh-mobile-nav {
    display: grid;
  }

  .mabh-mobile-nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--mabh-navy);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .35px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(7,31,52,.10);
  }

  .mabh-mobile-nav a.dropdown::after {
    content: '⌄';
    margin-left: 10px;
    font-size: 14px;
    opacity: .72;
  }

  .mabh-mobile-nav a.active,
  .mabh-mobile-nav a:hover {
    color: var(--mabh-gold);
  }

  .mabh-mobile-actions {
    display: grid;
    gap: 12px;
    padding-top: 16px;
  }

  .mabh-mobile-phone {
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 13px;
    border: 1px solid rgba(7,31,52,.10);
    border-radius: 6px;
    background: #f8fafb;
    color: var(--mabh-navy);
  }

  .mabh-mobile-phone strong,
  .mabh-mobile-phone small {
    display: block;
  }

  .mabh-mobile-phone strong {
    font-size: 15px;
    line-height: 1.1;
    font-weight: 900;
  }

  .mabh-mobile-phone small {
    margin-top: 3px;
    color: var(--mabh-muted);
    font-size: 11px;
    font-weight: 700;
  }

  .mabh-mobile-cta {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border-radius: 5px;
    background: linear-gradient(135deg, var(--mabh-gold-light), var(--mabh-gold));
    color: #fff !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .45px;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(199,153,69,.22);
  }

  .mabh-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .mabh-quote-card {
    width: min(100%, 460px) !important;
  }
}

@media (max-width: 760px) {
  .mabh-container,
  .mabh-hero-inner {
    width: min(100% - 28px, var(--mabh-container-width));
  }

  .mabh-topbar-inner {
    min-height: 34px;
    padding: 7px 0;
    justify-content: center;
    text-align: center;
  }

  .mabh-topbar-left {
    display: block;
    white-space: normal;
  }

  .mabh-topbar-left span:first-child {
    font-size: 10px;
    letter-spacing: .15px;
  }

  .mabh-topbar-left span:nth-child(n+2),
  .mabh-topbar-right {
    display: none !important;
  }

  .mabh-header-inner {
    gap: 10px;
  }

  .mabh-hero {
    min-height: 0;
    background-position: 56% center;
  }

  .mabh-hero-inner {
    padding: 46px 0 48px;
    gap: 30px;
  }

  .mabh-hero-copy {
    max-width: 100%;
  }

  .mabh-eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 1.45px;
  }

  .mabh-hero h1 {
    margin-bottom: 18px;
    max-width: 100%;
    font-size: clamp(38px, 12vw, 48px);
    line-height: 1.02;
    letter-spacing: -.75px;
  }

  .mabh-hero-text {
    margin-bottom: 26px;
    max-width: 100%;
    font-size: 14.5px;
    line-height: 1.65;
  }

  .mabh-hero-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mabh-hero-buttons .mabh-btn {
    width: 100%;
    min-width: 0;
    height: 48px;
    padding: 0 12px;
    font-size: 10px;
  }

  .mabh-quote-card {
    width: 100% !important;
    max-width: none;
    padding: 27px 20px !important;
    border-radius: 7px;
  }

  .mabh-quote-card h2 {
    font-size: 22px;
  }

  .mabh-gold-line {
    margin-bottom: 20px;
  }

  .mabh-form-field {
    height: 46px;
    font-size: 12px;
  }

  .mabh-form-submit {
    height: 49px;
  }

  .mabh-form-note {
    font-size: 9.5px;
  }
}

@media (max-width: 430px) {
  .mabh-brand-title {
    font-size: 12.5px;
  }

  .mabh-brand-subtitle {
    font-size: 8.5px;
  }

  .mabh-logo,
  .mabh-logo-img {
    width: 38px;
    height: 42px;
    flex-basis: 38px;
  }

  .mabh-mobile-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .mabh-hero h1 {
    font-size: 38px;
  }

  .mabh-hero-buttons {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Native Quote Form Processing (v1.3)
   ========================================================= */
.mabh-native-contact-form {
  position: relative;
}

.mabh-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
}

.mabh-form-textarea {
  height: auto;
  min-height: 110px;
  padding-top: 12px;
  padding-bottom: 12px;
  resize: vertical;
  line-height: 1.5;
}

.mabh-form-field:focus {
  border-color: var(--mabh-gold-light);
  box-shadow: 0 0 0 3px rgba(226, 186, 98, .16);
}

.mabh-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0 0 14px;
  color: rgba(255,255,255,.78);
  font-size: 11px;
  line-height: 1.45;
  cursor: pointer;
}

.mabh-consent-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 1px 0 0;
  accent-color: var(--mabh-gold);
}

.mabh-form-submit:disabled {
  cursor: wait;
  opacity: .7;
  transform: none !important;
}

.mabh-form-status {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.mabh-form-status.is-visible {
  display: block;
}

.mabh-form-status.is-success {
  color: #14532d;
  background: #dcfce7;
}

.mabh-form-status.is-error {
  color: #991b1b;
  background: #fee2e2;
}

@media (max-width: 760px) {
  .mabh-form-textarea {
    min-height: 96px;
  }

  .mabh-form-status {
    font-size: 11px;
  }
}

.mabh-field-label {
  display: block;
  margin: 0 0 6px;
  color: #fff;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
}


/* Insurance-page polish: subtle premium grid texture over the hero. */
.mabh-widget .mabh-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: .8;
    z-index: 1;
}
.mabh-widget .mabh-hero .mabh-container,
.mabh-widget .mabh-hero-inner {
    position: relative;
    z-index: 2;
}
