:root {
  --bg: #ffffff;
  --text: #1f1f1f;

  --accent: #e4e185;
  --accent-ink: #1f1f1f;

  --focus: 2px solid var(--text);

  --radius-pill: 999px;

  --nav-pad-y: 1.15rem;
  --nav-pad-x: 1.25rem;

  --nav-gap: 1rem;
  --nav-link-gap: clamp(0.85rem, 2.4vw, 1.6rem);

  --logo-h: 70px;

  --cta-pad-y: 1rem;
  --cta-pad-x: 1.05rem;

  --header-z: 1000;
  --header-bg: color-mix(in srgb, var(--bg) 70%, transparent);
  --header-blur: 1px;
}

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

html {
  background: var(--bg);
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: transparent;
  color: var(--text);
  line-height: 1.5;
  min-height: 100svh;
}

@supports (height: 100dvh) {
  body {
    min-height: 100dvh;
  }
}

@supports (height: 100dvh) {
  body {
    min-height: 100dvh;
  }
}

main,
header,
footer {
  background: transparent;
}

@media (max-width: 1024px) {
  .nav-bar--mobile {
    padding-top: calc(0.9rem + env(safe-area-inset-top)) !important;
  }
}

.drawer-inner {
  padding-top: calc(4.25rem + env(safe-area-inset-top)) !important;
}

.drawer {
  padding-bottom: env(safe-area-inset-bottom) !important;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

.animo {
  position: relative;
  display: inline-block;
  padding-top: 0rem;
}

.animo::before {
  content: "";
  position: absolute;

  left: 0.35rem;
  top: 0.1rem;

  width: 0.7rem;
  height: 0.3rem;
  border-radius: 0;

  background: var(--accent-ink);
  transform: rotate(-50deg);
  transform-origin: left center;

  opacity: 0.95;
  pointer-events: none;
}

.animo1 {
  position: relative;
  display: inline-block;
  padding-top: 0rem;
}

.animo1::before {
  content: "";
  position: absolute;

  left: 0.6rem;
  top: 0.5rem;

  width: 0.7rem;
  height: 0.3rem;
  border-radius: 0;

  background: var(--accent-ink);
  transform: rotate(-50deg);
  transform-origin: left center;

  opacity: 0.95;
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

:focus-visible {
  outline: var(--focus);
  outline-offset: 3px;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--header-z);
  width: 100%;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 180ms ease, backdrop-filter 180ms ease;
}

.site-header:not(.is-links-hidden) {
  background: var(--header-bg);
  backdrop-filter: blur(var(--header-blur));
  -webkit-backdrop-filter: blur(var(--header-blur));
}

.nav-bar {
  width: 100%;
  padding: var(--nav-pad-y) var(--nav-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--nav-gap);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-logo {
  height: var(--logo-h);
  width: auto;
  max-width: 280px;
  object-fit: contain;
  margin-left: 1rem;
  margin-top: 0.2rem;
}

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

  flex: 1 1 auto;
  min-width: 0;

  flex-wrap: nowrap;
  overflow: visible;

  margin-left: auto;
  margin-right: 1rem;
  margin-top: 0.5rem;
  font-family: "BBH Bogle", sans-serif;
  font-style: normal;
}

.nav-link {
  text-decoration: none !important;
  color: var(--text);
  font-weight: 100;
  letter-spacing: 0.2rem;
  text-transform: uppercase;

  font-size: clamp(0.8rem, 1.2vw + 0.3rem, 1.9rem);

  display: inline-flex;
  align-items: center;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  min-width: 0;
  flex: 0 1 auto;

  line-height: 1;
  padding: 0.55rem 0.2rem;

  --roll-gap: 1ch;
}

.nav-link.is-active {
  color: var(--accent);
  text-decoration: none;
  text-shadow: 0.8px 0.8px 0
      color-mix(in srgb, var(--accent-ink) 95%, transparent),
    1.6px 1.6px 0 color-mix(in srgb, var(--accent-ink) 70%, transparent);
}

.nav-link.is-active:hover {
  text-decoration: none;
}

.nav-link-label {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
}

.nav-link-label::after {
  content: attr(data-text);
  position: absolute;
  left: 100%;
  top: 0;
  padding-left: var(--roll-gap);
  white-space: nowrap;
}

.nav-link.is-rolling .nav-link-label {
  animation: nav-roll 1s linear 1 both;
}

@media (prefers-reduced-motion: reduce) {
  .nav-link.is-rolling .nav-link-label {
    animation: none;
  }
}

@keyframes nav-roll {
  to {
    transform: translateX(calc(-100% - var(--roll-gap)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-link:hover .nav-link-label,
  .nav-link:focus-visible .nav-link-label {
    animation: none;
  }
}

.nav-item--has-submenu {
  position: relative;
  --submenu-gap: 0.85rem;
}

.submenu {
  top: calc(100% + var(--submenu-gap));
  left: 0;
  z-index: 2000;
}

.nav-item--has-submenu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: var(--submenu-gap);
  background: transparent;
  pointer-events: none;
  z-index: 1999;
}

.nav-item--has-submenu:hover::after,
.nav-item--has-submenu:focus-within::after,
.nav-item--has-submenu.is-open::after {
  pointer-events: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: var(--nav-link-gap);
  margin: 0;
  padding-top: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  overflow: visible;
  max-height: 6rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease, max-height 220ms ease,
    padding 220ms ease;
  position: relative;
  z-index: 1;
}

.site-header.is-links-hidden .nav-list {
  max-height: 0;
  padding-top: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  overflow: hidden;
}

.nav-list {
  display: inline-flex;
  width: fit-content;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.nav-item--has-submenu {
  position: relative;
}

.submenu {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 0;
  min-width: max-content;
  width: max-content;
  padding: 0.75rem;
  margin: 0;
  list-style: none;
  border-radius: 18px;
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  z-index: 2000;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease,
    visibility 0s linear 160ms;
}

.submenu-link {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 100;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-size: 1.15rem;
  line-height: 1;
  white-space: nowrap;
  color: inherit;
}

.submenu-link:hover {
  text-decoration: none;
  background: color-mix(in srgb, var(--accent-ink) 12%, transparent);
}

.nav-item--has-submenu:hover .submenu,
.nav-item--has-submenu:focus-within .submenu,
.nav-item--has-submenu.is-open .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  visibility: visible;
  transition: opacity 160ms ease, transform 160ms ease, visibility 0s;
}

.nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 0.35em;
}

.nav-cta {
  text-decoration: none;
  color: var(--accent-ink);
  font-weight: 100;
  letter-spacing: 0.07em;
  line-height: 1;
  padding: var(--cta-pad-y) var(--cta-pad-x);
  margin-top: 1rem;
  border-radius: var(--radius-pill);
  background: var(--accent);
  white-space: nowrap;
  flex: 0 0 auto;
}

.nav-cta:hover {
  text-decoration: none;
  filter: brightness(0.8);
}

.site-header.is-links-hidden .nav-list {
  max-height: 0;
  padding-top: 0;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .nav-list {
    transition: none;
  }
}

.nav-bar--desktop {
  display: flex;
}

.nav-bar--mobile {
  display: none;
  width: 100%;
  padding: 0.9rem calc(1rem + env(safe-area-inset-right)) 0.9rem
    calc(1rem + env(safe-area-inset-left));
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 0.85rem;
  min-width: 0;
  font-family: "BBH Bogle", sans-serif;
  font-style: normal;
}

.brand--mobile {
  margin: 0;
  justify-self: start;
}

.brand-logo--mobile {
  height: var(--logo-h);
  width: auto;
  max-width: 240px;
  object-fit: contain;
  margin-left: 0;
  display: block;
}

.nav-cta--mobile {
  margin: 0;
  justify-self: center;
  max-width: min(360px, 60vw);
  min-width: 0;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hamburger {
  margin-right: 0.5rem;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0.1rem;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
}

.hamburger-lines {
  margin-top: 1rem;
  width: 34px;
  height: 4px;
  background: var(--text);
  border-radius: 0px;
  position: relative;
  transition: background 180ms ease;
}

.hamburger-lines::before,
.hamburger-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--text);
  border-radius: 0px;
  transition: transform 180ms ease, top 180ms ease;
}

.hamburger-lines::before {
  top: -9px;
}

.hamburger-lines::after {
  top: 9px;
}

.is-drawer-open .hamburger-lines {
  background: transparent;
}

.is-drawer-open .hamburger-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.is-drawer-open .hamburger-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  flex: 0 0 auto;
  transform: translateY(40px);
}

.mobile-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid;
  place-items: center;
  text-decoration: none;
}

.mobile-icon-btn:hover {
  text-decoration: none;
  filter: brightness(0.85);
}

.mobile-icon {
  width: 20px;
  height: 20px;
}

.drawer-inner {
  padding: 1rem;
}

.drawer-top {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.drawer-pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: var(--accent-ink);
  padding: 0.9rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.drawer-nav {
  display: grid;
  gap: 0.25rem;
}

.drawer-link {
  text-decoration: none;
  color: var(--accent-ink);
  font-weight: 100;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-size: 1.5rem;
  padding: 0.9rem 0.6rem;
  border-radius: 14px;
  text-align: left;
  font-family: "BBH Bogle", sans-serif;
  font-style: normal;
}

.drawer-link:hover {
  background: color-mix(in srgb, var(--accent-ink) 10%, transparent);
  text-decoration: none;
}

.drawer-accordion {
  border-radius: 16px;
  overflow: hidden;
}

.drawer-acc-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--accent-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 100;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-size: 1.5rem;
  padding: 0.9rem 0.6rem;
  border-radius: 14px;
  text-align: left;
  font-family: "BBH Bogle", sans-serif;
  font-style: normal;
}

.drawer-acc-trigger:hover {
  background: color-mix(in srgb, var(--accent-ink) 10%, transparent);
}

.drawer-acc-icon {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 100;
  transform: scale(1.2);
}

.drawer-acc-panel {
  padding: 0 0.4rem 0.7rem;
}

.drawer-sublink {
  display: block;
  text-decoration: none;
  color: var(--accent-ink);
  font-weight: 100;
  letter-spacing: 0.1rem;
  text-transform: none;
  font-size: 1rem;
  padding: 0.75rem 0.6rem;
  border-radius: 12px;
  text-align: left;
  font-family: "BBH Bogle", sans-serif;
  font-style: normal;
}

.drawer-sublink:hover {
  background: color-mix(in srgb, var(--accent-ink) 10%, transparent);
  text-decoration: none;
}

.nav-bar--desktop {
  display: flex;
}

.nav-bar--mobile {
  display: none;
}

.mobile-left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.mobile-calls {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  margin-left: 0;
}

.mobile-icon-text {
  display: inline-block;
  font-family: "BBH Bogle", sans-serif;
  font-weight: 100;
  font-size: 1.5rem;
  line-height: 1;
}

.mobile-icon-img {
  width: 20px;
  height: 20px;
  display: block;
}

@media (max-width: 1024px) {
  :root {
    --logo-h: 50px;
  }

  .nav-bar--desktop {
    display: none;
  }

  .nav-bar--mobile {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: 0.9rem calc(1rem + env(safe-area-inset-right)) 0.9rem
      calc(1rem + env(safe-area-inset-left));
    gap: 0.85rem;
  }

  .brand--mobile {
    flex: 0 0 auto;
  }

  .hamburger {
    flex: 0 0 auto;
  }

  .nav-cta--mobile {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    max-width: min(360px, 58vw);
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .submenu {
    display: none;
  }
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: calc(var(--header-z) + 1);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(66vw, 560px);
  min-width: 320px;
  background: var(--accent);
  color: var(--accent-ink);
  z-index: calc(var(--header-z) + 2);
  transform: translateX(100%);
  transition: transform 260ms ease;
  border-top-left-radius: 22px;
  border-bottom-left-radius: 22px;
  overflow: auto;
}

.drawer-close {
  position: fixed;
  top: calc(0.9rem + env(safe-area-inset-top));
  right: calc(1rem + env(safe-area-inset-right));
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2005;
  color: var(--accent-ink);

  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
  appearance: none;
  -webkit-appearance: none;
  outline: 0;
  padding: 0;
}

.drawer-x {
  position: relative;
  width: 32px;
  height: 32px;
  display: block;
  pointer-events: none;
}

.drawer-x::before,
.drawer-x::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 4px;
  border-radius: 0px;
  background: var(--accent-ink);
  transform-origin: center;
}

.drawer-x::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-x::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer-close:focus {
  outline: none;
}

.drawer-close:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 999px;
}

.drawer-inner {
  padding: 4.25rem 1rem 1rem;
}

.is-drawer-open .drawer {
  transform: translateX(0);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: calc(var(--header-z) + 1);
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(66vw, 560px);
  min-width: 320px;
  background: var(--accent);
  color: var(--accent-ink);
  z-index: calc(var(--header-z) + 2);
  transform: translateX(100%);
  transition: transform 260ms ease;
  border-top-left-radius: 22px;
  border-bottom-left-radius: 22px;
  overflow: auto;
}

.is-drawer-open .drawer {
  transform: translateX(0);
}

.is-drawer-open .drawer,
.is-drawer-open .drawer-overlay {
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .drawer {
    transition: none;
  }
  .is-drawer-open .app {
    filter: none;
  }
}

.footer,
.footer * {
  font-family: "BBH Bogle", sans-serif;
  font-style: normal;
}

.footer {
  position: relative;
  overflow: visible;
}

.footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  background: var(--accent);
  z-index: -1;
}

.footer-shell {
  min-height: 90vh;
  height: auto;
  width: 100%;
  background: var(--accent);
  color: var(--accent-ink);

  overflow: hidden;
  border-radius: 9999px 9999px 0 0;
  clip-path: ellipse(120% 160% at 50% 0%);

  display: flex;
  padding-top: clamp(2rem, 6vw, 4.5rem);
  padding-left: clamp(1rem, 4vw, 2.25rem);
  padding-right: clamp(1rem, 4vw, 2.25rem);
  box-sizing: border-box;
}

.footer-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(0.75rem, 2vw, 1.25rem);
  gap: 0.85rem;
}

.footer-nav,
.footer-brand {
  font-family: "BBH Bogle", sans-serif;
  font-style: normal;
  font-weight: 100;
}

.footer-copy {
  font-family: "Oxygen", sans-serif;
  font-style: normal;
  font-weight: 100;
}

.footer-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-size: 2rem;
  font-weight: 100;
  letter-spacing: 0.1rem;
  text-decoration: none;
  color: currentColor;
}

.footer-link:hover,
.footer-link:focus-visible {
  text-decoration: none;
  opacity: 0.85;
}

.footer-brand {
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.footer-logo {
  display: block;
  width: 250px;
  height: auto;
}

.footer-copy {
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 1.1;
  padding-bottom: 0rem;
  font-weight: 100;
  letter-spacing: 0.05rem;
}

.footer-copy a,
.footer-copy-link {
  text-decoration: none !important;
  color: var(--accent-ink);
}

.footer-services {
  width: min(1180px, 94%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 34ch));
  justify-content: center;
  gap: clamp(1.1rem, 3vw, 2.4rem);

  margin-top: 0;
  margin-bottom: 1rem;
}

.footer-services-col {
  min-width: 0;
}

.footer-services-title {
  margin: 0 0 0.7rem;
  font-family: "BBH Bogle", sans-serif;
  font-style: normal;
  font-weight: 100;
  letter-spacing: 0.095rem;
  text-transform: uppercase;

  font-size: clamp(0.9rem, 0.95vw + 0.3rem, 1.12rem);
  line-height: 1;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  min-width: 0;
}

.footer-services-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-services-list li {
  min-width: 0;
}

.footer-services-link {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0.5rem 0;
  text-decoration: none;

  border-bottom: 1px solid
    color-mix(in srgb, var(--accent-ink) 22%, transparent);

  font-family: "BBH Bogle", sans-serif;
  font-style: normal;

  font-weight: 100;
  font-size: clamp(0.76rem, 0.78vw + 0.22rem, 0.98rem);
  letter-spacing: 0.08rem;
  line-height: 1.15;

  opacity: 0.92;
  transition: opacity 160ms ease;

  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-services-link:hover,
.footer-services-link:focus-visible {
  opacity: 1;
}

.footer-services-link::after {
  content: "→";
  flex: 0 0 auto;
  margin-left: 0.3rem;
  opacity: 0.9;
  transform: translateX(0);
  transition: transform 160ms ease, opacity 160ms ease;
}

.footer-services-link:hover::after,
.footer-services-link:focus-visible::after {
  transform: translateX(3px);
  opacity: 1;
}

@media (max-width: 820px) {
  .footer-services {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .footer-services-title {
    margin-bottom: 0.5rem;
  }
}

.footer-services-list > li:last-child > .footer-services-link {
  border-bottom: 0;
}
.footer-slogan-wrap {
  width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  margin: 0;
  padding-top: clamp(1rem, 2.4vw, 2.2rem);
  padding-bottom: clamp(1.4rem, 3vw, 2.8rem);
}

.footer-slogan {
  margin: 0;
  max-width: 26ch;
  text-wrap: balance;
  font-family: "BBH Bogle", sans-serif;
  font-style: normal;
  font-weight: 100;
  letter-spacing: 0.16rem;
  line-height: 1.08;
  font-size: clamp(2.05rem, 1.35rem + 2.1vw, 3.1rem);
}

.animo-pop {
  position: relative;
  display: inline-block;
}

.animo-tooltip {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  transform: translate(-50%, 0);
  text-align: left;
  text-wrap: pretty;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding: 0.5rem 0.65rem;

  display: inline-block;
  width: max-content;
  max-width: 30ch;
  padding: 0.55rem 0.7rem;
  border-radius: 0.75rem;

  background: var(--accent);
  color: var(--accent-ink);

  font-family: "Oxygen", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: clamp(0.78rem, 0.6vw + 0.55rem, 0.95rem);
  letter-spacing: 0.1rem;
  line-height: 1.25;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-ink) 35%, transparent);
  z-index: 2147483647;
}

.animo-term {
  cursor: help;
}

.animo-pop:hover .animo-tooltip,
.animo-term:focus-visible + .animo-tooltip {
  opacity: 100;
  visibility: visible;
}

@media (prefers-reduced-motion: no-preference) {
  .animo-tooltip {
    transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
  }

  .animo-pop:hover .animo-tooltip,
  .animo-term:focus-visible + .animo-tooltip {
    transform: translate(-50%, -0.35rem);
  }
}

@media (max-width: 1024px) {
  .footer-shell {
    padding-top: clamp(2.25rem, 7vw, 4rem);
  }

  .footer-inner {
    justify-content: flex-start;
    gap: clamp(1.25rem, 3.5vw, 2rem);
    padding-top: 0;
    padding-bottom: clamp(1.25rem, 4vw, 2.25rem);
  }

  .footer-slogan-wrap {
    margin-top: 3rem !important;
    margin-bottom: 6rem;
    padding-top: clamp(1.6rem, 5.5vw, 2.9rem);
    width: 100%;
    display: grid;
    place-items: center;
    text-align: center;
  }

  .footer-slogan {
    max-width: 26ch;
    font-size: clamp(2.05rem, 1.35rem + 4.2vw, 3.1rem);
    letter-spacing: 0.16rem;
    line-height: 1.08;
    text-align: center;
  }

  .footer-services {
    width: min(720px, 92%);
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .footer-services-col + .footer-services-col {
    margin-top: clamp(2rem, 6vw, 3.2rem);
  }

  .footer-services-title {
    margin: 0 0 clamp(0.9rem, 3vw, 1.25rem);
    font-family: "BBH Bogle", sans-serif;
    font-style: normal;
    font-weight: 100;
    letter-spacing: 0.12rem;
    text-transform: uppercase;
    font-size: clamp(0.95rem, 0.85rem + 1.2vw, 1.25rem);
    line-height: 1.05;
    text-align: left;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    min-width: 0;
  }

  .footer-services-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: clamp(0.35rem, 1.6vw, 0.75rem);
  }

  .footer-services-list li {
    min-width: 0;
  }

  .footer-services-link {
    display: flex;
    align-items: left;
    justify-content: space-between;
    padding: clamp(0.95rem, 3.2vw, 1.2rem) 0;
    text-decoration: none;
    border-bottom: 1px solid
      color-mix(in srgb, var(--accent-ink) 22%, transparent);
    font-family: "BBH Bogle", sans-serif;
    font-style: normal;
    font-weight: 100;
    font-size: clamp(0.78rem, 0.7rem + 0.6vw, 0.98rem);
    letter-spacing: 0.15rem;
    line-height: 1.22;
    opacity: 0.92;
    transition: opacity 160ms ease;
    min-width: 0;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    text-align: center;
  }

  .footer-services-link:hover,
  .footer-services-link:focus-visible {
    opacity: 1;
  }

  .footer-services-link::after {
    content: "→";
    flex: 0 0 auto;
    margin-left: 0.6rem;
    opacity: 0.9;
    transform: translateX(0);
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .footer-services-link:hover::after,
  .footer-services-link:focus-visible::after {
    transform: translateX(3px);
    opacity: 1;
  }

  .footer-services-list > li:last-child > .footer-services-link {
    border-bottom: 0;
  }

  .footer-nav {
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(0.9rem, 4vw, 1.6rem);
    padding-left: clamp(1rem, 4vw, 1.5rem);
    padding-right: clamp(1rem, 4vw, 1.5rem);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

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

  .footer-link {
    white-space: nowrap;
    flex: 0 0 auto;
    font-size: clamp(1.6rem, 1.1rem + 3vw, 2.35rem);
    letter-spacing: 0.08rem;
    text-align: center;
  }

  .footer-copy {
    font-size: clamp(0.95rem, 0.85rem + 0.9vw, 1.15rem);
    padding-left: clamp(1rem, 4vw, 1.5rem);
    padding-right: clamp(1rem, 4vw, 1.5rem);
  }
}

.footer-inner {
  justify-content: flex-start;
}

.footer-brand {
  margin-top: auto;
}

.footer-shell {
  padding-top: clamp(1.25rem, 4vw, 3rem);
}

.footer-slogan-wrap {
  margin-top: clamp(-2.25rem, -4vw, -1.1rem);
  margin-bottom: clamp(1.8rem, 3.5vw, 3rem);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99999;
  isolation: isolate;
  transform: translateZ(0);
}

.site-header {
  padding-top: env(safe-area-inset-top);
}

.nav-bar--desktop {
  padding: calc(var(--nav-pad-y) + env(safe-area-inset-top))
    calc(var(--nav-pad-x) + env(safe-area-inset-right)) var(--nav-pad-y)
    calc(var(--nav-pad-x) + env(safe-area-inset-left));
}

.footer-shell {
  position: relative;
  z-index: 0;
}

@media (max-width: 1024px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    padding-top: env(safe-area-inset-top);

    transform: translateZ(0);
  }
}

.footer-services--mobile {
  display: none;
}

@media (max-width: 1024px) {
  .footer-services--desktop {
    display: none;
  }
  .footer-services--mobile {
    display: block;
  }
}

@media (min-width: 1025px) {
  .footer-services--desktop {
    display: flex;
  }
  .footer-services--mobile {
    display: none;
  }
}

.footer-services-acc > summary.footer-services-title {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.6rem 0;
  margin: 0;
  text-decoration: none;
}

.footer-services-acc > summary::-webkit-details-marker {
  display: none;
}
.footer-services-acc > summary::marker {
  content: "";
}

.footer-services-icon {
  display: none;
}

.footer-services-acc > summary.footer-services-title::after {
  content: "+";
  flex: 0 0 auto;
  line-height: 1;
  opacity: 0.9;
  transition: transform 160ms ease, opacity 160ms ease;
}

.footer-services-acc[open] > summary.footer-services-title::after {
  transform: rotate(45deg);
  opacity: 1;
}

@media (orientation: portrait) and (min-width: 730px) and (max-width: 1024px) {
  .footer-shell {
    min-height: unset;
    height: auto;
  }
}

.footer-ctas {
  display: flex;
  flex-direction: column;
  gap: clamp(0.65rem, 1.6vw, 1rem);
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: clamp(0.75rem, 1.6vw, 1.1rem);
  padding: clamp(0.85rem, 1.6vw, 1.05rem) clamp(1.05rem, 2.2vw, 1.35rem);

  background: var(--accent-ink);
  color: var(--accent);
  border-radius: var(--radius-pill);

  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.01em;

  transform: translateZ(0);
  transform-origin: left center;
  transition: transform 160ms ease, filter 160ms ease;
}

.footer-cta:hover {
  transform: scale(1.03);
  filter: brightness(1.02);
}

.footer-cta:focus-visible {
  outline: var(--focus);
  outline-offset: 4px;
}

.footer-cta__label {
  white-space: nowrap;
  font-weight: 500;
  font-size: clamp(1.35rem, 1.1rem + 1.1vw, 1.9rem);
}

.footer-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

@media (prefers-reduced-motion: reduce) {
  .footer-cta {
    transition: none;
  }
  .footer-cta:hover {
    transform: none;
  }
}

[data-drawer-overlay] {
  position: fixed;
  inset: 0;
  z-index: calc(var(--header-z, 1000) - 1);
  background: rgba(0, 0, 0, 0.38);

  opacity: 0;
  pointer-events: none;

  transition: opacity 220ms ease;
}

html.is-drawer-open [data-drawer-overlay] {
  opacity: 1;
  pointer-events: auto;
}

[data-drawer] {
  position: fixed;
  z-index: var(--header-z, 1000);
}

@media (max-width: 1024px) {
  .site-header,
  .site-header:not(.is-links-hidden) {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (max-width: 1024px) {
  .site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      color-mix(in srgb, var(--bg) 70%, transparent) 0%,
      color-mix(in srgb, var(--bg) 40%, transparent) 70%,
      transparent 100%
    );
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    z-index: -1;
  }
}

@media only screen and (max-width: 390px) {
  .hero-copy {
    margin-top: 3rem;
  }
}
.float-cta {
  position: fixed;
  z-index: 9999;
  pointer-events: auto;

  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.float-cta.is-hidden {
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

.float-cta--mobile {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0;
  background: var(--accent);
}

.float-cta--desktop {
  right: 1rem;
  bottom: 1rem;
  padding: 0;
}

.float-cta__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;

  width: 100%;
  text-decoration: none;

  font-family: "BBH Bogle", sans-serif;
  font-style: normal;
  font-weight: 100;
  letter-spacing: 0.8px;
  line-height: 1;

  color: var(--accent-ink);
}

.float-cta--mobile .float-cta__link {
  padding: 1rem 1rem;
  border-radius: 0;
  background: var(--accent);
}

.float-cta--desktop .float-cta__link {
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  width: auto;
}

.float-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
}

.float-cta__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.float-cta__link:focus-visible {
  outline: 2px solid var(--accent-ink);
  outline-offset: 4px;
}

@media (max-width: 1024px) {
  .float-cta--desktop {
    display: none;
  }
}

@media (min-width: 1025px) {
  .float-cta--mobile {
    display: none;
  }

  .float-cta__link {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-cta {
    transition: none;
  }
}
