/* HOTA topbar source of truth */
:root {
  --hota-logo-width: 204px;
}

.site-header.hota-topbar,
header.site-header.hota-topbar {
  position: sticky !important;
  top: 0 !important;
  z-index: 10000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 22px !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 92px !important;
  margin: 0 !important;
  padding: 14px 24px !important;
  text-align: left !important;
  background: rgba(5, 11, 18, 0.94) !important;
  border-bottom: 1px solid rgba(255,255,255,.16) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,.34), 0 0 18px rgba(214,168,78,.08) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

.site-header.hota-topbar .header-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex: 0 0 var(--hota-logo-width) !important;
  width: var(--hota-logo-width) !important;
  max-width: none !important;
  min-width: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  overflow: visible !important;
  text-decoration: none !important;
  background: transparent !important;
  border: 0 !important;
}

img.hota-topbar-logo-img,
.site-header.hota-topbar .header-logo > img.hota-topbar-logo-img {
  display: block !important;
  width: var(--hota-logo-width) !important;
  max-width: none !important;
  min-width: 0 !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.site-header.hota-topbar .hota-topbar-nav {
  display: block !important;
  width: auto !important;
  min-width: 0 !important;
  margin-left: auto !important;
  padding: 0 !important;
  text-align: right !important;
}

.site-header.hota-topbar .hota-topbar-nav > ul.nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  list-style: none !important;
  text-align: right !important;
}

.site-header.hota-topbar .hota-topbar-nav > ul.nav > li {
  display: inline-flex !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}

.site-header.hota-topbar .hota-topbar-nav > ul.nav > li > a {
  display: block !important;
  padding: 9px 12px !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 999px !important;
  color: rgba(255,255,255,.90) !important;
  text-decoration: none !important;
  font-size: .93rem !important;
  line-height: 1.2 !important;
  background: rgba(255,255,255,.045) !important;
}

.site-header.hota-topbar .hota-topbar-nav > ul.nav > li > a:hover,
.site-header.hota-topbar .hota-topbar-nav > ul.nav > li > a:focus {
  color: #fff !important;
  border-color: rgba(240,189,84,.62) !important;
  background: rgba(214,168,78,.14) !important;
}

@media (max-width: 900px) {
  .site-header.hota-topbar,
  header.site-header.hota-topbar {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 0 !important;
    padding: 12px 12px 14px !important;
    text-align: center !important;
  }

  .site-header.hota-topbar .header-logo {
    justify-content: center !important;
    flex-basis: auto !important;
    width: min(64vw, var(--hota-logo-width)) !important;
  }

  img.hota-topbar-logo-img,
  .site-header.hota-topbar .header-logo > img.hota-topbar-logo-img {
    width: min(64vw, var(--hota-logo-width)) !important;
  }

  .site-header.hota-topbar .hota-topbar-nav {
    width: 100% !important;
    margin-left: 0 !important;
    text-align: center !important;
  }

  .site-header.hota-topbar .hota-topbar-nav > ul.nav {
    justify-content: center !important;
    text-align: center !important;
    max-height: 80px !important;
    overflow: auto !important;
    padding-bottom: 2px !important;
    scrollbar-width: none !important;
  }

  .site-header.hota-topbar .hota-topbar-nav > ul.nav::-webkit-scrollbar {
    display: none !important;
  }

  .site-header.hota-topbar .hota-topbar-nav > ul.nav > li > a {
    font-size: .82rem !important;
    padding: 8px 10px !important;
    background: rgba(5,11,18,.48) !important;
  }
}

/*
  HOTA immersive sitewide CSS
  Consolidated from the common embedded CSS used across legacy PHP pages,
  plus the immersive wrapper treatment for the desktop redesign.
*/
/* HOTA immersive sitewide wrapper treatment for legacy PHP pages */
:root {
  --hota-bg: #050b12;
  --hota-text: #ffffff;
  --hota-muted: rgba(255,255,255,.84);
  --hota-line: rgba(255,255,255,.16);
  --hota-gold: #d6a84e;
  --hota-gold-bright: #f0bd54;
  --hota-card: rgba(5,11,18,.72);
  --hota-shadow: 0 20px 54px rgba(0,0,0,.46);
}
* { box-sizing: border-box; }
html { min-height: 100%; scroll-behavior: smooth; background: var(--hota-bg); }
body {
  min-height: 100%;
  margin: 0;
  color: var(--hota-text) !important;
  font-family: Arial, Helvetica, sans-serif;
  padding-bottom: 150px;
  background:
    linear-gradient(180deg, rgba(2,6,12,.28) 0%, rgba(2,6,12,.48) 38%, rgba(2,6,12,.92) 82%, #050b12 100%),
    url('../img/austin-bg.jpg') center top / cover fixed no-repeat !important;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top center, rgba(255,255,255,.08), transparent 38%),
              linear-gradient(90deg, rgba(0,0,0,.38), transparent 22%, transparent 78%, rgba(0,0,0,.38));
  z-index: -1;
}
a { color: var(--hota-gold-bright); }
img { max-width: 100%; height: auto; }
.container {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px)) !important;
  max-width: 1180px !important;
  margin: 0 auto !important;
  padding: 26px 0 42px;
}
.row, .box, .col-lg-12 { margin-left: 0 !important; margin-right: 0 !important; width: 100% !important; }
.box {
  overflow: visible !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 32px !important;
  box-shadow: 0 28px 80px rgba(0,0,0,.45) !important;
  background: rgba(0,0,0,.12) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 0 !important;
  margin: 0 0 26px !important;
}
.stickyheader {
  position: sticky !important;
  top: 0;
  z-index: 10000;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 14px 22px;
  background: rgba(5,11,18,.91) !important;
  border-bottom: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 16px 40px rgba(0,0,0,.34), 0 0 18px rgba(214,168,78,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.stickyheader > a:first-child {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.header-logo span {
  color: #fff !important;
  font-weight: 800;
  letter-spacing: .02em;
}
.stickyheader nav { width: 100%; }
.stickyheader img.img-full,
.stickyheader img.img-responsive {
  width: 160px !important;
  max-width: 160px !important;
  height: auto !important;
  border-radius: 0 !important;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.68));
}
.navbar-header, .navbar-nav { width: 100%; }
ul.nav {
  display: flex !important;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  float: none !important;
}
ul.nav li { display: inline-flex; color: transparent; }
ul.nav li:has(> a[href*='testimonials']) { display: none !important; }
ul.nav a {
  display: block;
  padding: 9px 12px !important;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(255,255,255,.90) !important;
  text-decoration: none !important;
  font-size: .93rem;
  line-height: 1.2;
  background: rgba(255,255,255,.045);
}
ul.nav a:hover,
ul.nav a:focus {
  color: #fff !important;
  border-color: rgba(240,189,84,.62);
  background: rgba(214,168,78,.14);
}
/* Legacy content normalization */
table {
  width: calc(100% - 68px) !important;
  margin: 24px 34px 34px !important;
  border-collapse: separate !important;
  border-spacing: 0 18px !important;
  color: var(--hota-text) !important;
}
table, th, td { border: 0 !important; }
th, td {
  background: var(--hota-card) !important;
  border: 1px solid rgba(255,255,255,.17) !important;
  border-radius: 24px !important;
  box-shadow: var(--hota-shadow);
  color: var(--hota-muted) !important;
  padding: 22px !important;
  vertical-align: top !important;
}
th { color: #fff !important; text-align: center; }
h1, h2, h3, h4, .intro-text h1, .intro-text h2, .intro-text h3 {
  color: #fff !important;
  text-shadow: 0 3px 14px rgba(0,0,0,.82);
  letter-spacing: -.02em;
}
.intro-text, p, li, td, th, div { color: var(--hota-muted); }
.intro-text strong, strong { color: #fff; }
hr { border-color: rgba(255,255,255,.18) !important; }
footer {
  position: fixed !important;
  bottom: max(10px, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  z-index: 10000;
  margin: 0 !important;
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom)) !important;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(5,11,18,.91) !important;
  color: rgba(255,255,255,.78) !important;
  box-shadow: 0 -16px 40px rgba(0,0,0,.42), 0 0 18px rgba(214,168,78,.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-align: center;
  font-size: .92rem;
  line-height: 1.6;
}
footer .container { width: 100% !important; padding: 0 !important; }
iframe { border: 1px solid rgba(255,255,255,.17); border-radius: 24px; background: rgba(5,11,18,.72); box-shadow: var(--hota-shadow); }
@media (max-width: 900px) {
  body { padding-bottom: 158px; background-attachment: scroll !important; }
  .container { width: min(100%, 520px) !important; padding: 18px 12px 26px; }
  .box { border-radius: 0 !important; border: 0 !important; box-shadow: none !important; background: transparent !important; }
  .stickyheader {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 10px 12px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    text-align: center;
  }
  .stickyheader > a:first-child { justify-content: center; }
/* Former embedded common CSS was consolidated here: table, th, td { border: 1px solid black; } */

/* Canonical shared immersive topbar
   Change --hota-logo-width to adjust logo size site-wide. */
:root {
  --hota-logo-width: 204px;
}

.site-header.hota-topbar,
header.site-header.hota-topbar {
  position: sticky;
  top: 0;
  z-index: 10000;
  display: grid;
  grid-template-columns: var(--hota-logo-width) minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  width: 100%;
  max-width: 100%;
  min-height: 92px;
  margin: 0;
  padding: 14px 24px;
  overflow: visible;
  line-height: 1.2;
  text-align: left;
  background: rgba(5,11,18,.91);
  border-bottom: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 16px 40px rgba(0,0,0,.34), 0 0 18px rgba(214,168,78,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.hota-topbar .header-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: var(--hota-logo-width);
  max-width: none;
  min-width: 0;
  height: auto;
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: visible;
  text-decoration: none;
  background: transparent;
  border: 0;
}

.site-header.hota-topbar .header-logo > img.hota-topbar-logo-img {
  display: block;
  width: var(--hota-logo-width);
  max-width: none;
  min-width: 0;
  height: auto;
  max-height: none;
  object-fit: contain;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.68));
}

.site-header.hota-topbar .hota-topbar-nav {
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.site-header.hota-topbar .hota-topbar-nav > ul.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  float: none;
  list-style: none;
  text-align: right;
}

.site-header.hota-topbar .hota-topbar-nav > ul.nav > li {
  display: inline-flex;
  margin: 0;
  padding: 0;
  float: none;
  color: transparent;
}

.site-header.hota-topbar .hota-topbar-nav > ul.nav > li > a {
  display: block;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(255,255,255,.90);
  text-decoration: none;
  font-size: .93rem;
  line-height: 1.2;
  background: rgba(255,255,255,.045);
}

.site-header.hota-topbar .hota-topbar-nav > ul.nav > li > a:hover,
.site-header.hota-topbar .hota-topbar-nav > ul.nav > li > a:focus {
  color: #fff;
  border-color: rgba(240,189,84,.62);
  background: rgba(214,168,78,.14);
}

@media (max-width: 900px) {
  .site-header.hota-topbar,
  header.site-header.hota-topbar {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    min-height: 0;
    padding: 12px 12px 14px;
    text-align: center;
  }

  .site-header.hota-topbar .header-logo {
    justify-content: center;
    width: min(64vw, var(--hota-logo-width));
  }

  .site-header.hota-topbar .header-logo > img.hota-topbar-logo-img {
    width: min(64vw, var(--hota-logo-width));
  }

  .site-header.hota-topbar .hota-topbar-nav > ul.nav {
    justify-content: center;
    text-align: center;
    max-height: 80px;
    overflow: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .site-header.hota-topbar .hota-topbar-nav > ul.nav::-webkit-scrollbar {
    display: none;
  }

  .site-header.hota-topbar .hota-topbar-nav > ul.nav > li > a {
    font-size: .82rem;
    padding: 8px 10px;
    background: rgba(5,11,18,.48);
  }
}

/* About page portrait caption */
.about-portrait-figure {
  display: inline-block;
  margin: 0;
  text-align: center;
}

.about-portrait-figure .about-portrait {
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0,0,0,.45);
}

.about-portrait-caption {
  display: block;
  margin-top: 10px;
  color: #d6d6d6;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.35;
}
/* HOTA compact footer content styling
   Keep existing footer { ... } floating shell. This only styles the included content. */
.hota-footer-compact {
    width: 100%;
    color: rgba(255,255,255,.88);
    text-align: center;
}

.hota-footer-main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 1rem;
    line-height: 1.35;
}

.hota-footer-sub {
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255,255,255,.60);
    font-size: .84rem;
    line-height: 1.3;
}

.hota-footer-link {
    color: var(--hota-gold-bright, #f0bd54) !important;
    text-decoration: none !important;
    font-weight: 700;
}

.hota-footer-link:hover,
.hota-footer-link:focus {
    color: #fff !important;
    text-decoration: none !important;
}

.hota-footer-call strong {
    color: #fff;
}

.hota-footer-icon {
    margin-right: 6px;
    color: var(--hota-gold-bright, #f0bd54);
    opacity: .9;
}

.hota-footer-dot {
    color: rgba(240,189,84,.55);
}

.hota-footer-separator {
    color: rgba(240,189,84,.45);
}

@media (max-width: 768px) {
    .hota-footer-main {
        gap: 7px;
        font-size: .86rem;
    }

    .hota-footer-sub {
        margin-top: 5px;
        gap: 4px;
        font-size: .74rem;
    }

    .hota-footer-dot,
    .hota-footer-separator {
        display: none;
    }

    .hota-footer-main,
    .hota-footer-sub {
        flex-direction: column;
    }
}
