:root {
  color-scheme: light;
  --gilliam-law-page-gutter: clamp(20px, 3vw, 40px);
  --gilliam-law-homepage-max-width: 1290px;
  --gilliam-law-page-width: var(--gilliam-law-homepage-max-width);
  --gilliam-law-homepage-grid-gap: clamp(20px, 2.4vw, 32px);
  /* Used by fixed mega menu + bridge (keep in sync with .site-header height) */
  --site-header-height: 90px;
}

.homepage-layout-shell {
  width: min(
    var(--gilliam-law-homepage-max-width),
    calc(100% - (var(--gilliam-law-page-gutter) * 2))
  );
  margin: 0 auto;
}

.homepage-layout-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gilliam-law-homepage-grid-gap);
}

@media (max-width: 1023px) {
  .homepage-layout-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .homepage-layout-grid {
    grid-template-columns: 1fr;
  }
}

h2,
.h2 {
  font-family: var(--gilliam-law-font-serif, "novantique-serif", serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  word-wrap: break-word;
}

body {
  line-height: 1.6;
  /* overflow-x: clip; removed to fix position: sticky stacking */
}

.site-shell {
  min-height: 100vh;
}

.site-footer,
.site-main,
.template-shell,
.archive-shell,
.search-shell,
.single-shell {
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 17, 24, 1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: var(--site-header-height);
  display: flex;
  align-items: center;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease;
  will-change: transform;
}

.site-header--hidden {
  transform: translateY(-100%);
}

.site-header__container {
  max-width: 1440px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gilliam-law-page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__brand {
  flex-shrink: 0;
}

.site-header__logo {
  text-decoration: none;
  display: block;
}

.site-header__nav {
  flex-grow: 1;
}

.site-header__nav-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__nav-item {
  position: relative;
}

.site-header__nav-item:is(:hover, :focus-within) {
  z-index: 30;
}

.site-header__nav-link {
  font-family: var(--gilliam-law-font-sans, "Proxima Nova", sans-serif);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.site-header__nav-link:hover {
  color: #fbad51;
}

.site-header__nav-chevron {
  display: inline-flex;
  width: 12px;
  height: 12px;
  margin-left: 6px;
  opacity: 0.5;
  transition: transform 0.3s ease;
}

.site-header__nav-item:hover .site-header__nav-chevron,
.site-header__nav-item:focus-within .site-header__nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown Container — fixed + viewport-centered (not anchored to narrow nav items) */
.site-header__dropdown {
  position: fixed;
  top: var(--site-header-height);
  left: 50%;
  transform: translateX(-50%);
  width: min(
    var(--gilliam-law-homepage-max-width),
    calc(100vw - (var(--gilliam-law-page-gutter) * 2))
  );
  background: #0a1118;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s 0.4s;
  z-index: 1001;
  overflow: visible;
}

/*
 * Full-viewport hover bridge below the nav row so diagonal moves toward the centered
 * panel stay within the nav-item (dropdown is still a descendant of the li).
 */
.site-header__dropdown::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  bottom: 100%;
  height: 1.25rem;
  pointer-events: auto;
}

.site-header__nav-item:hover .site-header__dropdown,
.site-header__nav-item:focus-within .site-header__dropdown {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.site-header__dropdown-panel {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 400px;
  overflow: hidden;
}

/* Dropdown Intro */
.site-header__dropdown-intro {
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.site-header__dropdown-kicker {
  display: block;
  font-family: var(--gilliam-law-font-sans, "Proxima Nova", sans-serif);
  font-size: 11px;
  font-weight: 700;
  color: #fbad51;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
}

.site-header__dropdown-summary {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

.site-header__dropdown-overview {
  margin-top: auto;
  font-family: var(--gilliam-law-font-sans, "Proxima Nova", sans-serif);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header__dropdown-overview::after {
  content: "→";
  transition: transform 0.3s ease;
}

.site-header__dropdown-overview:hover::after {
  transform: translateX(5px);
}

/* Dropdown List */
.site-header__dropdown-list {
  list-style: none;
  padding: 40px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.site-header__dropdown-item.has-submenu {
  grid-column: span 1;
}

.site-header__dropdown-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-header__dropdown-parent-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.site-header__dropdown-parent-label-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header__dropdown-chevron {
  width: 12px;
  height: 12px;
  color: #a8a8a8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.site-header__dropdown-label {
  display: block;
  font-family: var(--gilliam-law-font-serif, "Novantique Serif", serif);
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.site-header__dropdown-parent-link:hover .site-header__dropdown-label {
  color: #fbad51;
}

.site-header__dropdown-parent-link:hover .site-header__dropdown-chevron {
  transform: rotate(90deg);
  color: #fbad51;
}

.site-header__dropdown-text {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}

.dropdown--reveal .site-header__dropdown-text {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease,
    margin 0.3s ease;
}

.dropdown--reveal
  .site-header__dropdown-parent-link:hover
  .site-header__dropdown-text {
  max-height: 100px;
  opacity: 1;
  margin-top: 8px;
}

/* Sub-list */
.site-header__dropdown-sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.site-header__dropdown-sub-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.site-header__dropdown-sub-label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.site-header__dropdown-sub-link:hover .site-header__dropdown-sub-label {
  color: #fff;
}

.site-header__dropdown-sub-text {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}

.dropdown--reveal .site-header__dropdown-sub-text {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease,
    margin 0.3s ease;
}

.dropdown--reveal
  .site-header__dropdown-sub-link:hover
  .site-header__dropdown-sub-text {
  max-height: 80px;
  opacity: 1;
  margin-top: 4px;
}

/* Simple Link */
.site-header__dropdown-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.site-header__dropdown-link:hover .site-header__dropdown-label {
  color: #fbad51;
}

.site-header__cta {
  display: flex;
  align-items: stretch;
  height: 100%;
  flex-shrink: 0;
}

.site-header__cta-separator {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
}

.site-header__cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 100%;
  padding: 0 32px;
  border-left: 1px solid #fba346;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(4px);
  text-decoration: none;
  color: #fba346;
  font-family: var(--gilliam-law-font-sans, "Proxima Nova", sans-serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 17.6px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
  white-space: nowrap;
}

.site-header__cta-link:hover {
  background: #e8932f;
  color: #2c2d2c;
}

.site-header__cta-icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: currentColor;
  flex: 0 0 18px;
}

.site-header__cta-icon svg {
  width: 18px;
  height: 18px;
}

.site-header__cta-label {
  color: currentColor;
}

.site-footer__link,
.content-page-layout__toc-link {
  color: var(--gilliam-law-color-text-muted);
}

.site-footer__link:hover,
.site-footer__link:focus-visible,
.content-page-layout__toc-link:hover,
.content-page-layout__toc-link:focus-visible {
  color: var(--gilliam-law-color-accent);
}

.site-main,
.template-shell,
.archive-shell,
.search-shell,
.single-shell {
  padding-bottom: var(--gilliam-law-section-space);
  background: #0a0e13;
}

.content-page-layout {
  display: grid;
  gap: 1.5rem;
}

/* Interior Page Layout Shell */
.interior-page-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gilliam-law-homepage-grid-gap);
  row-gap: clamp(3rem, 6vw, 5rem);
  /* Shrink-grid fix: grid items default to min-width:auto which can refuse to shrink
     below child content width and spill past the viewport on narrow screens. */
  min-width: 0;
  max-width: min(
    var(--gilliam-law-homepage-max-width),
    calc(100% - (var(--gilliam-law-page-gutter) * 2))
  );
  width: 100%;
  margin-inline: auto;
  padding: clamp(4rem, 8vw, 6rem) 0;
  align-items: start;
  background: #0a0e13; /* High-fidelity background */
  box-sizing: border-box;
}

.interior-page-layout > * {
  min-width: 0;
}

.interior-page-layout__main {
  grid-column: 1 / span 8;
}

.interior-page-layout__main .template-shell__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.interior-page-layout__header {
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.interior-page-layout__title {
  font-family: var(--gilliam-law-font-serif, "novantique-serif", serif);
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 400;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.interior-page-layout__title-highlight {
  color: #5aaaed;
}

.interior-page-layout__lead {
  font-family: var(--gilliam-law-font-sans, "Proxima Nova", sans-serif);
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
}

.interior-page-layout__lead p {
  margin-bottom: 0;
}

.interior-page-layout-full {
  background: #0a0e13;
  padding: 0 0 clamp(4rem, 8vw, 6rem) 0;
}

.interior-page-layout-full__container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.interior-page-layout__sidebar {
  grid-column: 9 / -1;
  position: sticky;
  top: clamp(100px, 10vw, 140px);
}

.interior-page-layout--toc-left {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.interior-page-layout--toc-left .interior-page-layout__sidebar {
  grid-column: 1 / span 3;
}

.interior-page-layout--toc-left .interior-page-layout__main {
  grid-column: 5 / -1;
}

.interior-page-layout--toc-left .interior-toc {
  margin-left: 0;
  margin-right: auto;
  max-width: 360px;
}

@media (max-width: 1100px) {
  .interior-page-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 3rem;
  }

  .interior-page-layout__sidebar {
    grid-column: 1 / -1;
    position: static;
  }

  .interior-page-layout__main,
  .interior-page-layout--toc-left .interior-page-layout__main,
  .interior-page-layout--toc-left .interior-page-layout__sidebar {
    grid-column: 1 / -1;
  }
}

.content-page-sections {
  display: grid;
  gap: 0;
}

.entry-content,
.archive-shell__body,
.search-shell__body,
.single-shell__body {
  width: min(
    var(--gilliam-law-homepage-max-width),
    calc(100% - (var(--gilliam-law-page-gutter) * 2))
  );
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--gilliam-law-color-border);
  border-radius: var(--gilliam-law-radius);
  background: var(--gilliam-law-color-surface);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.entry-content > *,
.archive-shell__body > *,
.search-shell__body > *,
.single-shell__body > * {
  grid-column: 1 / -1;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.archive-shell__title,
.search-shell__title,
.single-shell__title {
  margin: 0;
  line-height: 1.1;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
  margin: 0;
}

.post-list {
  display: grid;
  gap: 1rem;
}

.post-list__item {
  padding: 1.25rem;
  border: 1px solid var(--gilliam-law-color-border);
  border-radius: calc(var(--gilliam-law-radius) * 0.85);
  background: var(--gilliam-law-color-surface);
}

.post-list__meta {
  display: block;
  margin-top: 0.5rem;
  color: var(--gilliam-law-color-text-muted);
}

.site-header__logo-img {
  display: block;
  height: 48px;
  width: auto;
  transition: transform 0.3s ease;
}

.site-header__logo:hover .site-header__logo-img {
  transform: scale(1.02);
}

.site-footer {
  background: #0a1118;
  padding: 80px 0 40px;
  color: #ffffff;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__container {
  width: min(
    var(--gilliam-law-homepage-max-width),
    calc(100% - (var(--gilliam-law-page-gutter) * 2))
  );
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.site-footer__brand {
  margin-bottom: 32px;
}

.site-footer__logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.site-footer__logo-img {
  display: block;
  max-width: 240px;
  height: auto;
  margin: 0 auto;
}

.site-footer__mission {
  max-width: 680px;
  margin: 0 auto 48px;
  font-family: var(--gilliam-law-font-sans, "Proxima Nova", sans-serif);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fba346;
  color: #0a1118;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px;
  text-decoration: none;
}

.site-footer__social-link svg {
  width: 20px;
  height: 20px;
}

.site-footer__social-link:hover {
  background: #fff;
  color: #0a1118;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 24px rgba(251, 163, 70, 0.3);
}

.site-footer__copyright {
  font-family: var(--gilliam-law-font-sans, "Proxima Nova", sans-serif);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.75rem;
  margin-top: 1.25rem;
}

.site-footer__link--legal {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-footer__link--legal:hover,
.site-footer__link--legal:focus-visible {
  color: var(--gilliam-law-color-accent, #fbad51);
}

.site-footer__legal-sep {
  color: rgba(255, 255, 255, 0.25);
  user-select: none;
}

@media (max-width: 1024px) {
  .site-header {
    height: 70px;
    --site-header-height: 70px;
  }

  .site-header__nav,
  .site-header__cta {
    display: none;
  }

  /* Hamburger Toggle */
  .site-header__mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
  }

  .site-header__mobile-toggle-bar {
    width: 100%;
    height: 2px;
    background-color: #fbad51;
    transition: all 0.3s ease;
  }

  .site-header__mobile-toggle[aria-expanded="true"]
    .site-header__mobile-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header__mobile-toggle[aria-expanded="true"]
    .site-header__mobile-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .site-header__mobile-toggle[aria-expanded="true"]
    .site-header__mobile-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Drawer Overlay */
  .site-header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 17, 24, 0.8);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.4s ease,
      visibility 0s 0.4s;
  }

  .site-header__overlay.is-active {
    opacity: 1;
    visibility: visible;
    transition:
      opacity 0.4s ease,
      visibility 0s;
  }

  /* Mobile Drawer */
  .site-header__drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #0a1118;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .site-header__drawer.is-active {
    transform: translateX(0);
  }

  .site-header__drawer-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .site-header__drawer-close {
    background: none;
    border: none;
    color: #fff;
    padding: 8px;
    cursor: pointer;
  }

  .site-header__drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
  }

  .site-header__drawer-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .site-header__drawer-item {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }

  .site-header__drawer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .site-header__drawer-link {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    text-decoration: none;
    flex-grow: 1;
  }

  .site-header__drawer-link-label {
    font-family: var(--gilliam-law-font-sans, "Proxima Nova", sans-serif);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .site-header__drawer-link-text {
    font-family: var(--gilliam-law-font-sans, "Proxima Nova", sans-serif);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
  }

  .site-header__drawer-toggle {
    background: none;
    border: none;
    color: #fff;
    padding: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .site-header__drawer-item.is-expanded
    > .site-header__drawer-row
    .site-header__drawer-toggle,
  .site-header__drawer-sub-item.is-expanded
    > .site-header__drawer-row
    .site-header__drawer-toggle {
    transform: rotate(180deg);
  }

  .site-header__drawer-sub,
  .site-header__drawer-sub-children {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .site-header__drawer-item.is-expanded > .site-header__drawer-sub {
    max-height: 2000px; /* Accommodate nested children */
  }

  .site-header__drawer-sub-item.is-expanded
    > .site-header__drawer-sub-children {
    max-height: 1000px;
  }

  .site-header__drawer-sub-children {
    list-style: none;
    padding: 0 0 16px 16px;
    margin: 0;
  }

  .site-header__drawer-sub-child-link {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    text-decoration: none;
  }

  .site-header__drawer-sub-child-label {
    font-family: var(--gilliam-law-font-sans, "Proxima Nova", sans-serif);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
  }

  .site-header__drawer-sub-child-text {
    font-family: var(--gilliam-law-font-sans, "Proxima Nova", sans-serif);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
  }

  .site-header__drawer-sub-list {
    list-style: none;
    padding: 0 0 16px 16px;
    margin: 0;
  }

  .site-header__drawer-sub-link {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    text-decoration: none;
  }

  .site-header__drawer-sub-label {
    font-family: var(--gilliam-law-font-sans, "Proxima Nova", sans-serif);
    font-size: 14px;
    color: #fff;
  }

  .site-header__drawer-sub-text {
    font-family: var(--gilliam-law-font-sans, "Proxima Nova", sans-serif);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2px;
  }

  .site-header__drawer-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .site-header__drawer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fbad51;
    color: #0c1b2a;
    padding: 16px;
    text-decoration: none;
    font-family: var(--gilliam-law-font-sans, "Proxima Nova", sans-serif);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
  }
}

@media (min-width: 1025px) {
  .site-header__mobile-toggle,
  .site-header__drawer,
  .site-header__overlay {
    display: none;
  }
}

body.drawer-open {
  overflow: hidden;
}
