:root {
  --ba-navy-950: #00101f;
  --ba-navy-900: #00152d;
  --ba-navy-850: #001b36;
  --ba-navy-800: #06223d;
  --ba-navy-700: #0b2d4c;
  --ba-gold-500: #dda45a;
  --ba-gold-400: #efbd61;
  --ba-gold-600: #bd7f35;
  --ba-blue-400: #63a4ce;
  --ba-white: #ffffff;
  --ba-off-white: #f6f7f8;
  --ba-text-soft: #d9e1e8;
  --ba-text-muted: #aebdca;
  --ba-border: rgba(221, 164, 90, 0.58);
  --ba-card: linear-gradient(145deg, rgba(8, 41, 70, 0.96), rgba(0, 18, 35, 0.98));
  --ba-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --ba-radius-sm: 10px;
  --ba-radius: 18px;
  --ba-radius-lg: 30px;
  --ba-container: 1240px;
  --ba-section-space: clamp(4rem, 8vw, 7.5rem);
  --ba-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ba-font-display: "Cormorant Garamond", Georgia, serif;
  --ba-font-signature: "Allura", "Brush Script MT", cursive;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ba-navy-950);
  color: var(--ba-white);
  font-family: var(--ba-font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.ba-has-mobile-cta {
  padding-bottom: calc(70px + env(safe-area-inset-bottom));
}

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

img {
  height: auto;
}

svg {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

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

a:hover {
  color: var(--ba-gold-400);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--ba-gold-400);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ba-white);
  font-family: var(--ba-font-display);
  font-weight: 600;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.1rem, 13vw, 5.75rem);
}

h2 {
  font-size: clamp(2.25rem, 8vw, 4rem);
}

h3 {
  font-size: clamp(1.35rem, 4vw, 1.8rem);
}

p {
  color: var(--ba-text-soft);
}

::selection {
  background: var(--ba-gold-400);
  color: var(--ba-navy-950);
}

.ba-container {
  width: min(100% - 36px, var(--ba-container));
  margin-inline: auto;
}

.ba-section {
  position: relative;
  padding-block: var(--ba-section-space);
}

.ba-site-main {
  overflow: clip;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.ba-skip-link:focus {
  position: fixed !important;
  z-index: 999999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--ba-white);
  color: var(--ba-navy-950);
  font-weight: 700;
}

/* Top bar and header */
.ba-topbar {
  position: relative;
  z-index: 1002;
  border-bottom: 1px solid rgba(221, 164, 90, 0.22);
  background: #000e1c;
}

.ba-topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ba-topbar a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ba-white);
  font-size: 0.78rem;
  font-weight: 600;
}

.ba-topbar svg {
  color: var(--ba-gold-400);
}

.ba-topbar__address {
  display: none !important;
}

.ba-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(221, 164, 90, 0.18);
  background: rgba(0, 21, 45, 0.95);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.admin-bar .ba-header {
  top: 46px;
}

.ba-header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ba-brand {
  position: relative;
  z-index: 2;
  width: min(66vw, 290px);
}

.ba-brand a,
.ba-brand picture,
.ba-brand img {
  display: block;
}

.ba-brand img,
.ba-brand .custom-logo {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.ba-nav-toggle {
  width: 50px;
  height: 50px;
  display: grid;
  place-content: center;
  gap: 6px;
  border: 1px solid rgba(221, 164, 90, 0.55);
  border-radius: 10px;
  background: transparent;
  color: var(--ba-gold-400);
  cursor: pointer;
}

.ba-nav-toggle > span:not(.screen-reader-text) {
  width: 24px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.ba-nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(8px) rotate(45deg);
}

.ba-nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  opacity: 0;
}

.ba-nav-toggle[aria-expanded="true"] > span:nth-of-type(4) {
  transform: translateY(-8px) rotate(-45deg);
}

.ba-nav {
  position: fixed;
  z-index: 1001;
  inset: 120px 0 auto;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 20px 18px 26px;
  border-bottom: 1px solid var(--ba-border);
  background: rgba(0, 15, 30, 0.99);
  box-shadow: var(--ba-shadow);
  transform: translateY(-125%);
  visibility: hidden;
  transition: transform 220ms ease, visibility 220ms ease;
}

.admin-bar .ba-nav {
  inset-block-start: 166px;
}

.ba-nav.is-open {
  transform: translateY(0);
  visibility: visible;
}

.ba-menu,
.ba-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ba-menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ba-menu a {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 10px 4px;
  color: var(--ba-white);
  font-weight: 600;
}

.ba-menu .sub-menu {
  padding: 0 0 10px 16px;
}

.ba-menu .sub-menu a {
  min-height: 44px;
  color: var(--ba-text-soft);
  font-size: 0.92rem;
}

.ba-header__cta {
  width: 100%;
  margin-top: 18px;
}

/* Shared UI */
.ba-eyebrow {
  margin-bottom: 12px;
  color: var(--ba-gold-400);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ba-signature {
  margin-bottom: 4px;
  color: var(--ba-gold-400);
  font-family: var(--ba-font-signature);
  font-size: clamp(2.25rem, 9vw, 3.75rem);
  line-height: 1;
}

.ba-role {
  margin-bottom: 22px;
  color: var(--ba-white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ba-button-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ba-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.91rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.ba-button:hover {
  transform: translateY(-2px);
}

.ba-button--gold {
  border-color: var(--ba-gold-400);
  background: linear-gradient(135deg, #f0bd5f, #d5923c);
  box-shadow: 0 10px 28px rgba(221, 164, 90, 0.18);
  color: #07182a;
}

.ba-button--gold:hover {
  background: linear-gradient(135deg, #ffd178, #e1a04b);
  box-shadow: 0 14px 32px rgba(221, 164, 90, 0.28);
  color: #07182a;
}

.ba-button--outline {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(0, 20, 39, 0.28);
  color: var(--ba-white);
}

.ba-button--outline:hover {
  border-color: var(--ba-gold-400);
  background: rgba(221, 164, 90, 0.08);
  color: var(--ba-gold-400);
}

.ba-section-heading {
  max-width: 720px;
  margin-bottom: clamp(2rem, 6vw, 3.5rem);
}

.ba-section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.ba-section-heading h2 {
  margin-bottom: 14px;
}

.ba-section-heading p:last-child {
  margin-bottom: 0;
}

/* Hero */
.ba-hero {
  padding-block: 2.4rem 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(29, 83, 124, 0.25), transparent 36%),
    linear-gradient(145deg, #001b36 0%, #001225 54%, #000b16 100%);
}

.ba-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.32;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.7px, transparent 0.7px);
  background-size: 8px 8px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.ba-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
}

.ba-hero__content {
  padding-top: 8px;
}

.ba-hero__title {
  max-width: 8.5ch;
  margin-bottom: 18px;
}

.ba-hero__title span {
  display: block;
  color: var(--ba-gold-400);
}

.ba-hero__description {
  max-width: 42rem;
  margin-bottom: 24px;
  color: var(--ba-off-white);
  font-size: 1.02rem;
}

.ba-hero__proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.ba-hero__proof li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ba-text-soft);
  font-size: 0.76rem;
  font-weight: 600;
}

.ba-hero__proof svg {
  color: var(--ba-gold-400);
}

.ba-hero__media {
  position: relative;
  min-height: 410px;
  margin-inline: -18px;
  overflow: hidden;
  border-top: 1px solid rgba(221, 164, 90, 0.38);
  background: var(--ba-navy-900);
}

.ba-hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 12, 24, 0.5), transparent 45%);
}

.ba-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  object-position: 58% 22%;
}

.ba-hero__arc {
  position: absolute;
  z-index: 2;
  top: -14%;
  left: -43%;
  width: 68%;
  height: 128%;
  border: 8px solid var(--ba-gold-400);
  border-right-width: 12px;
  border-radius: 50%;
  pointer-events: none;
  filter: drop-shadow(0 0 14px rgba(221, 164, 90, 0.2));
}

/* Trust bar */
.ba-trust {
  border-block: 1px solid rgba(221, 164, 90, 0.48);
  background: linear-gradient(180deg, #001d39, #00162c);
}

.ba-trust__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ba-trust__item {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 14px;
  border-right: 1px solid rgba(221, 164, 90, 0.25);
  border-bottom: 1px solid rgba(221, 164, 90, 0.25);
}

.ba-trust__item:nth-child(2n) {
  border-right: 0;
}

.ba-trust__item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.ba-trust__icon {
  color: var(--ba-gold-400);
  font-size: 2.3rem;
}

.ba-trust__item h2 {
  margin-bottom: 5px;
  font-family: var(--ba-font-body);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.ba-trust__item p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
}

/* Services */
.ba-services {
  background:
    radial-gradient(circle at 50% 0%, rgba(33, 91, 131, 0.16), transparent 38%),
    var(--ba-navy-950);
}

.ba-services__grid {
  display: grid;
  gap: 16px;
}

.ba-service-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--ba-border);
  border-radius: var(--ba-radius);
  background: var(--ba-card);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.13);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.ba-service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--ba-gold-400), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.ba-service-card:hover {
  transform: translateY(-5px);
  border-color: var(--ba-gold-400);
  box-shadow: var(--ba-shadow);
}

.ba-service-card:hover::before {
  opacity: 1;
}

.ba-service-card__icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(221, 164, 90, 0.45);
  border-radius: 15px;
  background: rgba(221, 164, 90, 0.06);
  color: var(--ba-gold-400);
  font-size: 2rem;
}

.ba-service-card h3 {
  margin-bottom: 10px;
  color: var(--ba-blue-400);
  font-family: var(--ba-font-body);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-transform: uppercase;
}

.ba-service-card__description {
  margin-bottom: 14px;
  font-size: 0.91rem;
}

.ba-service-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.ba-service-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ba-off-white);
  font-size: 0.88rem;
}

.ba-service-card li svg {
  margin-top: 3px;
  color: var(--ba-gold-400);
}

.ba-service-card__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--ba-gold-400);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ba-service-card__link svg {
  transition: transform 180ms ease;
}

.ba-service-card__link:hover svg {
  transform: translateX(5px);
}

/* Spanish CTA */
.ba-spanish {
  padding-block: 0;
  background: var(--ba-navy-950);
}

.ba-spanish__card {
  position: relative;
  display: grid;
  gap: 28px;
  overflow: hidden;
  padding: 34px 24px;
  border-block: 1px solid var(--ba-border);
  background:
    linear-gradient(120deg, rgba(8, 49, 82, 0.97), rgba(0, 20, 39, 0.98)),
    url("../images/jessica-about.webp") center / cover;
}

.ba-spanish__card::after {
  position: absolute;
  top: -80px;
  right: -90px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(221, 164, 90, 0.35);
  border-radius: 50%;
  content: "";
}

.ba-spanish__seal {
  position: relative;
  z-index: 1;
  width: 136px;
  height: 136px;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 3px double var(--ba-gold-400);
  border-radius: 50%;
  color: var(--ba-white);
  text-align: center;
}

.ba-spanish__seal span {
  color: var(--ba-gold-400);
  font-size: 1.7rem;
}

.ba-spanish__seal strong {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.ba-spanish__content {
  position: relative;
  z-index: 1;
}

.ba-spanish h2 {
  margin-bottom: 16px;
}

/* About + process */
.ba-about-process {
  background:
    linear-gradient(180deg, rgba(7, 34, 58, 0.96), rgba(0, 15, 29, 0.98)),
    radial-gradient(circle at 20% 0%, rgba(99, 164, 206, 0.14), transparent 36%);
}

.ba-about-process__grid {
  display: grid;
  gap: 50px;
}

.ba-about {
  overflow: hidden;
  border: 1px solid rgba(221, 164, 90, 0.4);
  border-radius: var(--ba-radius-lg);
  background: var(--ba-card);
  box-shadow: var(--ba-shadow);
}

.ba-about__media {
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: var(--ba-navy-800);
}

.ba-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 16%;
}

.ba-about__content {
  padding: 28px 24px 30px;
}

.ba-about h2 {
  margin-bottom: 18px;
}

.ba-process__list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.ba-process__list li {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  padding: 20px;
  border: 1px solid rgba(221, 164, 90, 0.35);
  border-radius: var(--ba-radius-sm);
  background: rgba(0, 22, 43, 0.78);
}

.ba-process__number {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ba-gold-400);
  color: var(--ba-navy-950);
  font-size: 0.8rem;
  font-weight: 800;
}

.ba-process__icon {
  grid-row: span 2;
  color: var(--ba-gold-400);
  font-size: 2.3rem;
}

.ba-process__list h3 {
  margin: 0 42px 6px 0;
  font-family: var(--ba-font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.ba-process__list p {
  margin: 0;
  font-size: 0.85rem;
}

.ba-disclaimer {
  color: var(--ba-text-muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.ba-disclaimer p {
  margin-bottom: 7px;
  color: inherit;
}

.ba-disclaimer--boxed {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(221, 164, 90, 0.45);
  border-radius: var(--ba-radius-sm);
  text-align: center;
}

/* FAQ */
.ba-faq {
  background: linear-gradient(180deg, var(--ba-navy-950), #00182f);
}

.ba-faq__inner {
  max-width: 980px;
}

.ba-faq__list {
  display: grid;
  gap: 10px;
}

.ba-faq__item {
  overflow: hidden;
  border: 1px solid rgba(221, 164, 90, 0.42);
  border-radius: 10px;
  background: rgba(1, 28, 53, 0.72);
}

.ba-faq__item h3 {
  margin: 0;
}

.ba-faq__question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  border: 0;
  background: transparent;
  color: var(--ba-white);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

.ba-faq__question:hover,
.ba-faq__question[aria-expanded="true"] {
  background: rgba(221, 164, 90, 0.06);
  color: var(--ba-gold-400);
}

.ba-faq__plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.ba-faq__plus::before,
.ba-faq__plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: var(--ba-gold-400);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.ba-faq__plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.ba-faq__question[aria-expanded="true"] .ba-faq__plus::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.ba-faq__answer {
  padding: 0 18px 18px;
}

.ba-faq__answer p:last-child {
  margin-bottom: 0;
}

/* Contact */
.ba-contact {
  border-top: 1px solid rgba(221, 164, 90, 0.4);
  background:
    radial-gradient(circle at 100% 0%, rgba(99, 164, 206, 0.14), transparent 34%),
    #001326;
}

.ba-contact__grid {
  display: grid;
  gap: 34px;
}

.ba-contact h2 {
  margin-bottom: 18px;
}

.ba-contact__list {
  display: grid;
  gap: 16px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.ba-contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ba-contact__list > li > svg {
  margin-top: 3px;
  color: var(--ba-gold-400);
  font-size: 1.45rem;
}

.ba-contact__list div {
  display: grid;
  gap: 2px;
}

.ba-contact__list strong {
  color: var(--ba-white);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ba-contact__list a,
.ba-contact__list span {
  color: var(--ba-text-soft);
  overflow-wrap: anywhere;
}

.ba-contact__form-wrap {
  padding: 24px;
  border: 1px solid rgba(221, 164, 90, 0.45);
  border-radius: var(--ba-radius);
  background: var(--ba-card);
  box-shadow: var(--ba-shadow);
}

.ba-contact__placeholder {
  display: grid;
  justify-items: start;
  align-content: center;
  min-height: 380px;
}

.ba-contact__placeholder-icon {
  margin-bottom: 18px;
  color: var(--ba-gold-400);
  font-size: 3rem;
}

.ba-contact__placeholder h3 {
  margin-bottom: 12px;
}

.ba-contact__form label {
  display: block;
  margin-bottom: 7px;
  color: var(--ba-white);
  font-size: 0.88rem;
  font-weight: 700;
}

.ba-contact__form input:not([type="submit"]),
.ba-contact__form select,
.ba-contact__form textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 7px;
  background: rgba(0, 12, 24, 0.72);
  color: var(--ba-white);
}

.ba-contact__form textarea {
  min-height: 140px;
}

.ba-contact__form input[type="submit"],
.ba-contact__form button[type="submit"] {
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid var(--ba-gold-400);
  border-radius: 7px;
  background: var(--ba-gold-400);
  color: var(--ba-navy-950);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

/* Footer */
.ba-footer {
  border-top: 1px solid var(--ba-border);
  background: #000d1b;
}

.ba-footer__grid {
  display: grid;
  gap: 34px;
  padding-block: 52px 38px;
}

.ba-footer__brand img {
  width: min(100%, 330px);
  height: auto;
  max-height: 96px;
  object-fit: contain;
  object-position: left center;
}

.ba-footer__brand p {
  max-width: 330px;
  margin: 12px 0 0;
  font-size: 0.86rem;
}

.ba-footer h2 {
  margin-bottom: 16px;
  color: var(--ba-gold-400);
  font-family: var(--ba-font-body);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ba-footer ul,
.ba-footer .ba-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ba-footer .ba-menu > li {
  border: 0;
}

.ba-footer .ba-menu a,
.ba-footer__menu a {
  min-height: 34px;
  padding: 3px 0;
  color: var(--ba-text-soft);
  font-size: 0.86rem;
  font-weight: 500;
}

.ba-footer__contact {
  display: grid;
  gap: 13px;
}

.ba-footer__contact a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ba-text-soft);
  font-size: 0.86rem;
  overflow-wrap: anywhere;
}

.ba-footer__contact svg {
  margin-top: 3px;
  color: var(--ba-gold-400);
}

.ba-footer__estimate p {
  font-size: 0.86rem;
}

.ba-footer__social {
  display: flex;
  gap: 9px;
  margin-top: 18px;
}

.ba-footer__social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ba-border);
  border-radius: 50%;
  color: var(--ba-gold-400);
  font-weight: 800;
}

.ba-footer__disclaimer {
  padding-block: 22px;
  border-top: 1px solid rgba(221, 164, 90, 0.25);
  text-align: center;
}

.ba-footer__disclaimer p {
  max-width: 900px;
  margin: 0 auto 6px;
  color: var(--ba-text-muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.ba-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #000914;
}

.ba-footer__bottom .ba-container {
  min-height: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding-block: 12px;
  text-align: center;
}

.ba-footer__bottom p {
  margin: 0;
  color: var(--ba-text-muted);
  font-size: 0.7rem;
}

.ba-footer__bottom div div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.ba-footer__bottom a {
  color: var(--ba-text-muted);
  font-size: 0.7rem;
}

/* Mobile sticky actions */
.ba-mobile-cta {
  position: fixed;
  z-index: 1100;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 5px 5px calc(5px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--ba-gold-400);
  background: rgba(0, 14, 28, 0.97);
  box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.ba-mobile-cta a {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 5px;
  border-right: 1px solid rgba(0, 21, 45, 0.22);
  border-radius: 5px;
  background: linear-gradient(135deg, #efbd61, #d9933e);
  color: var(--ba-navy-950);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.ba-mobile-cta a:last-child {
  border-right: 0;
}

.ba-mobile-cta svg {
  width: 20px;
  height: 20px;
}

.elementor-editor-active .ba-mobile-cta {
  display: none;
}

/* Standard WordPress content */
.ba-content,
.ba-error {
  min-height: 65vh;
  background: var(--ba-navy-950);
}

.ba-content__narrow {
  max-width: 900px;
}

.ba-page-header {
  margin-bottom: 38px;
}

.ba-page-header h1 {
  font-size: clamp(2.7rem, 9vw, 5rem);
}

.entry-content {
  color: var(--ba-text-soft);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 1.7em;
}

.entry-content a {
  color: var(--ba-gold-400);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content img,
.ba-featured-image img {
  border-radius: var(--ba-radius);
}

.ba-post-grid {
  display: grid;
  gap: 24px;
}

.ba-post-card {
  overflow: hidden;
  border: 1px solid rgba(221, 164, 90, 0.35);
  border-radius: var(--ba-radius);
  background: var(--ba-card);
}

.ba-post-card__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ba-post-card__content {
  padding: 24px;
}

.ba-post-card h2 {
  font-size: 2rem;
}

.ba-post-card h2 a {
  color: var(--ba-white);
}

.nav-links {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
}

.nav-links a,
.page-numbers {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--ba-border);
  border-radius: 6px;
}

/* Elementor integration */
.elementor-widget-ba-hero > .elementor-widget-container,
.elementor-widget-ba-trust > .elementor-widget-container,
.elementor-widget-ba-services > .elementor-widget-container,
.elementor-widget-ba-spanish > .elementor-widget-container,
.elementor-widget-ba-about-process > .elementor-widget-container,
.elementor-widget-ba-faq > .elementor-widget-container,
.elementor-widget-ba-contact > .elementor-widget-container {
  margin: 0 !important;
  padding: 0 !important;
}

.ba-canvas .ba-site-main,
.ba-canvas #primary {
  margin: 0;
}

/* Tablet */
@media (min-width: 600px) {
  .ba-container {
    width: min(100% - 52px, var(--ba-container));
  }

  .ba-button-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .ba-button {
    width: auto;
    min-width: 190px;
  }

  .ba-hero__proof {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ba-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ba-spanish__card {
    grid-template-columns: 160px 1fr;
    align-items: center;
    padding: 44px;
    border: 1px solid var(--ba-border);
    border-radius: var(--ba-radius-lg);
  }

  .ba-process__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ba-contact__form-wrap {
    padding: 34px;
  }

  .ba-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Desktop */
@media (min-width: 900px) {
  body.ba-has-mobile-cta {
    padding-bottom: 0;
  }

  .admin-bar .ba-header {
    top: 32px;
  }

  .ba-topbar__address {
    display: inline-flex !important;
  }

  .ba-header__inner {
    min-height: 94px;
  }

  .ba-brand {
    width: 320px;
  }

  .ba-brand img,
  .ba-brand .custom-logo {
    max-height: 84px;
  }

  .ba-nav-toggle {
    display: none;
  }

  .ba-nav {
    position: static;
    max-height: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(18px, 2.2vw, 34px);
    overflow: visible;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    visibility: visible;
  }

  .ba-nav .ba-menu {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 30px);
  }

  .ba-menu > li {
    position: relative;
    border: 0;
  }

  .ba-menu a {
    min-height: 46px;
    padding: 8px 0;
    font-size: 0.88rem;
  }

  .ba-menu .sub-menu {
    position: absolute;
    top: calc(100% - 2px);
    left: -20px;
    min-width: 240px;
    padding: 12px 18px;
    border: 1px solid rgba(221, 164, 90, 0.35);
    border-radius: 9px;
    background: #001225;
    box-shadow: var(--ba-shadow);
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .ba-menu li:hover > .sub-menu,
  .ba-menu li:focus-within > .sub-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .ba-header__cta {
    width: auto;
    min-width: 185px;
    margin: 0;
  }

  .ba-hero {
    min-height: 730px;
    display: grid;
    align-items: stretch;
    padding-block: 0;
  }

  .ba-hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    align-items: stretch;
    gap: 0;
  }

  .ba-hero__content {
    align-self: center;
    padding: 68px 56px 68px 0;
  }

  .ba-hero__title {
    max-width: 8.6ch;
  }

  .ba-hero__description {
    font-size: 1.06rem;
  }

  .ba-hero__media {
    min-height: 730px;
    margin: 0 calc((100vw - min(100vw - 52px, var(--ba-container))) / -2) 0 0;
    border-top: 0;
    border-left: 1px solid rgba(221, 164, 90, 0.38);
  }

  .ba-hero__media img {
    min-height: 730px;
    object-position: 55% 25%;
  }

  .ba-hero__arc {
    top: -18%;
    left: -35%;
    width: 58%;
    height: 142%;
    border-width: 10px;
  }

  .ba-trust__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ba-trust__item {
    min-height: 144px;
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 16px;
    padding: 24px;
    border-right: 1px solid rgba(221, 164, 90, 0.25) !important;
    border-bottom: 0;
  }

  .ba-trust__item:last-child {
    border-right: 0 !important;
  }

  .ba-services__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ba-service-card:nth-child(n + 5) {
    grid-column: span 1;
  }

  .ba-services__grid .ba-service-card:nth-last-child(3):first-child,
  .ba-services__grid .ba-service-card:nth-last-child(3):first-child ~ .ba-service-card {
    grid-column: auto;
  }

  .ba-spanish__card {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 48px;
    padding: 54px 62px;
  }

  .ba-about-process__grid {
    grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

  .ba-about {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .ba-about__media {
    aspect-ratio: auto;
    min-height: 650px;
  }

  .ba-about__content {
    align-self: center;
    padding: 42px 38px;
  }

  .ba-process__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ba-contact__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
    align-items: center;
    gap: 70px;
  }

  .ba-footer__grid {
    grid-template-columns: 1.25fr 0.7fr 1fr 0.95fr;
  }

  .ba-footer__bottom .ba-container {
    min-height: 54px;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .ba-mobile-cta {
    display: none;
  }
}

@media (min-width: 1120px) {
  .ba-service-card {
    padding: 27px;
  }

  .ba-about-process__grid {
    grid-template-columns: 1fr 1.15fr;
  }
}

@media (max-width: 380px) {
  .ba-topbar__inner {
    gap: 8px;
  }

  .ba-topbar a {
    font-size: 0.7rem;
  }

  .ba-brand {
    width: 68vw;
  }

  .ba-hero__proof {
    grid-template-columns: 1fr;
  }

  .ba-trust__grid {
    grid-template-columns: 1fr;
  }

  .ba-trust__item,
  .ba-trust__item:nth-child(2n),
  .ba-trust__item:nth-last-child(-n + 2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(221, 164, 90, 0.25);
  }

  .ba-trust__item:last-child {
    border-bottom: 0;
  }

  .ba-mobile-cta a {
    grid-template-columns: 1fr;
    font-size: 0.62rem;
  }

  .ba-mobile-cta svg {
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
