/* =========================================
   ROOT
========================================= */
:root {
  /* Brand */
  --color-primary: #E20052;
  --color-secondary: #00B6F0;
  --color-tertiary: #05AF62;

  /* Header */
  --topbar-height: 54px;
  --navbar-height-desktop: 96px;
  --navbar-height-desktop-scrolled: 84px;
  --navbar-height-mobile: 76px;
  --header-side-padding: clamp(18px, 2.8vw, 42px);

  /* Navbar glass controls */
  --navbar-glass-bg: rgba(255, 255, 255, 0.06);
  --navbar-glass-bg-scrolled: #38003A;   /** rgba(255, 255, 255, 0.12) */
  --navbar-glass-border: rgba(255, 255, 255, 0.14);
  --navbar-glass-border-scrolled: rgba(255, 255, 255, 0.18);
  --navbar-glass-blur: 14px;
  --navbar-glass-blur-scrolled: 0px;

  /* Typography / surfaces */
  --ink-strong: #11141b;
  --ink-medium: #5e6676;
  --ink-soft: #9098a8;

  --surface-white: rgba(255, 255, 255, 0.96);
  --surface-white-soft: rgba(255, 255, 255, 0.84);
  --surface-line: rgba(17, 20, 27, 0.08);
  --surface-line-strong: rgba(17, 20, 27, 0.12);
  --surface-soft: #f6f8fb;

  --shadow-soft: 0 10px 30px rgba(7, 12, 20, 0.07);
  --shadow-medium: 0 18px 44px rgba(7, 12, 20, 0.12);
  --shadow-navbar: 0 18px 38px rgba(7, 12, 20, 0.14);
  --shadow-navbar-scrolled: 0 16px 34px rgba(12, 17, 28, 0.16);

  --transition-fast: 0.25s ease;
  --transition-base: 0.42s ease;

  /* Assets */
  --separator-opacity: 0.52;
  --separator-size: 18px;
  --asset-separator: url("../images/graphical-separator-red.svg");
  --asset-mark: none;
}

/* =========================================
   BASE / RESET
========================================= */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
}

/* =========================================
   LAYOUT
========================================= */
main {
  position: relative;
}

.ont-header-shell {
  position: relative;
  z-index: 1200;
}

/* =========================================
   TOPBAR
========================================= */
.ont-topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--topbar-height);
  z-index: 1250;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform var(--transition-base),
    opacity var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base);
}

.ont-topbar__inner {
  width: 100%;
  height: 100%;
  padding-inline: var(--header-side-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ont-topbar__group {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 16px;
}

.ont-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
}

.ont-topbar__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgba(226, 0, 82, 0.18),
    rgba(0, 182, 240, 0.14)
  );
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow-soft);
}

.ont-topbar__text {
  overflow: hidden;
  text-overflow: ellipsis;
}

.ont-topbar__separator {
  width: var(--separator-size);
  height: var(--separator-size);
  flex: 0 0 var(--separator-size);
  display: inline-block;
  background-image: var(--asset-separator);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.36;
  filter: drop-shadow(0 2px 10px rgba(226, 0, 82, 0.14));
}

.ont-topbar__separator--center {
  opacity: 0.24;
}

/* =========================================
   NAVBAR
========================================= */
.ont-navbar {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  width: 100%;
  z-index: 1240;
  background: var(--navbar-glass-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--navbar-glass-border);
  box-shadow: var(--shadow-navbar);
  backdrop-filter: blur(var(--navbar-glass-blur));
  -webkit-backdrop-filter: blur(var(--navbar-glass-blur));
  transition:
    top var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    backdrop-filter var(--transition-base),
    -webkit-backdrop-filter var(--transition-base);
}

.ont-navbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.10) 0%,
      rgba(255, 255, 255, 0.03) 100%
    );
  pointer-events: none;
}

.ont-navbar::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      var(--color-primary) 0%,
      var(--color-primary) 33.333%,
      var(--color-secondary) 33.333%,
      var(--color-secondary) 66.666%,
      var(--color-tertiary) 66.666%,
      var(--color-tertiary) 100%
    );
  opacity: 0.92;
}

.ont-navbar__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: var(--navbar-height-desktop);
  padding-inline: var(--header-side-padding);
  display: grid;
  grid-template-columns: minmax(250px, 330px) 1fr;
  gap: 30px;
  align-items: stretch;
  transition: min-height var(--transition-base), gap var(--transition-base);
}

.ont-navbar__brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding-block: 14px;
  text-decoration: none;
  color: #ffffff;
}

.ont-navbar__brand::after {
  content: "";
  position: absolute;
  top: 18%;
  right: -14px;
  width: 1px;
  height: 64%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0)
  );
}

.ont-navbar__brand-mark {
  width: 86px;
  flex: 0 0 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: width var(--transition-base), flex-basis var(--transition-base);
}

.ont-navbar__brand-mark img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.ont-navbar__brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.ont-navbar__brand-copy strong {
  font-size: 1rem;
  line-height: 1.05;
  font-weight: 700;
  color: #ffffff;
}

.ont-navbar__brand-copy small {
  font-size: 0.74rem;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.74);
}

.ont-navbar__desktop {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 10px;
}

.ont-navbar__line {
  display: flex;
  align-items: center;
  min-width: 0;
}

.ont-navbar__line--top {
  justify-content: flex-end;
  gap: 14px;
  height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

.ont-navbar__line--bottom {
  justify-content: flex-end;
  height: 52px;
}

/* =========================================
   SEARCH
========================================= */
.ont-searchbar {
  width: min(100%, 430px);
  height: 40px;
  display: flex;
  align-items: center;
  padding-inline: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.ont-searchbar:focus-within {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
}

.ont-searchbar__submit {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  cursor: pointer;
}

.ont-searchbar__input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

.ont-searchbar__input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

/* =========================================
   DESKTOP ACTIONS
========================================= */
.ont-navbar__micro-separator {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-block;
  background-image: var(--asset-separator);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.28;
}

.ont-action-btn {
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast),
    border-color var(--transition-fast);
}

.ont-action-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow: 0 10px 24px rgba(8, 15, 30, 0.08);
}

.ont-action-btn--icon {
  width: 40px;
  padding: 0;
  justify-content: center;
}

.ont-action-btn__icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.ont-action-btn__label {
  font-size: 0.86rem;
  font-weight: 600;
  white-space: nowrap;
}

.ont-action-btn__caret {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.70);
}

/* =========================================
   DROPDOWN
========================================= */
.ont-dropdown {
  position: relative;
}

.ont-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 210px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid var(--surface-line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 22px 48px rgba(10, 18, 35, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity var(--transition-fast),
    visibility var(--transition-fast),
    transform var(--transition-fast);
  z-index: 30;
}

.ont-dropdown.is-open .ont-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ont-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px;
  text-decoration: none;
  color: var(--ink-strong);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 12px;
  transition: background var(--transition-fast);
}

.ont-dropdown__item:hover {
  background: var(--surface-soft);
}

.ont-dropdown__item i {
  color: var(--color-primary);
}

/* =========================================
   NAV LINKS
========================================= */
.ont-navbar__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  min-width: 0;
}

.ont-navbar__link {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 0;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.ont-navbar__link:hover {
  color: #ffffff;
  opacity: 0.82;
}

.ont-navbar__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 22px;
  height: 10px;
  transform: translateX(-50%);
  background-image: var(--asset-separator);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.ont-navbar__link:hover::after,
.ont-navbar__link.is-active::after {
  opacity: 0.88;
}

/* =========================================
   MOBILE ACTIONS
========================================= */
.ont-navbar__mobile-actions {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.ont-mobile-circle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.ont-mobile-circle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 24px rgba(8, 15, 30, 0.08);
}

.ont-mobile-menu {
  width: 48px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    background var(--transition-fast),
    box-shadow var(--transition-fast);
}

.ont-mobile-menu:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 24px rgba(8, 15, 30, 0.08);
}

.ont-mobile-menu span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition:
    transform 0.3s ease,
    width 0.3s ease,
    opacity 0.3s ease;
}

.ont-mobile-menu span:nth-child(1) {
  width: 18px;
  transform: translateX(-2px);
}

.ont-mobile-menu span:nth-child(2) {
  width: 22px;
  transform: translateX(2px);
}

.ont-mobile-menu span:nth-child(3) {
  width: 15px;
  transform: translateX(-1px);
}

.ont-mobile-menu:hover span:nth-child(1) {
  width: 22px;
}

.ont-mobile-menu:hover span:nth-child(2) {
  width: 16px;
}

.ont-mobile-menu:hover span:nth-child(3) {
  width: 20px;
}

.ont-mobile-menu.is-active span:nth-child(1) {
  width: 20px;
  transform: translateY(7px) rotate(45deg);
}

.ont-mobile-menu.is-active span:nth-child(2) {
  opacity: 0;
}

.ont-mobile-menu.is-active span:nth-child(3) {
  width: 20px;
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   OVERLAY / DRAWERS
========================================= */
.ont-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 12, 20, 0.34);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
  z-index: 1260;
}

.ont-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 350px);
  max-width: 350px;
  height: 100vh;
  z-index: 1270;
  pointer-events: none;
}

.ont-drawer__panel {
  position: relative;
  width: 100%;
  height: 100%;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(17, 20, 27, 0.08);
  box-shadow: -18px 0 44px rgba(7, 12, 20, 0.12);
  transform: translateX(100%);
  transition: transform var(--transition-base);
  overflow: hidden;
}

.ont-drawer__panel::before {
  content: "";
  position: absolute;
  right: -30px;
  bottom: 40px;
  width: 220px;
  height: 220px;
  background-image: var(--asset-mark);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.06;
  pointer-events: none;
}

.ont-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 18px 18px;
  border-bottom: 1px solid var(--surface-line);
}

.ont-drawer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.ont-drawer__brand img {
  width: 54px;
  height: auto;
  flex: 0 0 54px;
}

.ont-drawer__brand div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ont-drawer__brand strong {
  font-size: 0.95rem;
  line-height: 1.1;
  color: var(--ink-strong);
}

.ont-drawer__brand span {
  font-size: 0.76rem;
  color: var(--ink-medium);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ont-drawer__close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--surface-line-strong);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.ont-drawer__body {
  padding: 22px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: calc(100% - 79px);
  overflow-y: auto;
}

.ont-drawer__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(226, 0, 82, 0.07);
}

.ont-drawer__title {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--ink-strong);
}

.ont-drawer__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ink-medium);
}

.ont-drawer__info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ont-drawer__info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--ink-strong);
  font-size: 0.92rem;
  line-height: 1.6;
}

.ont-drawer__info-item i {
  margin-top: 2px;
  color: var(--color-primary);
}

.ont-drawer__socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ont-drawer__socials a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--surface-line-strong);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-strong);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

.ont-drawer__socials a:hover {
  transform: translateY(-1px);
  color: var(--color-primary);
  border-color: rgba(226, 0, 82, 0.24);
}

.ont-searchbar--drawer {
  width: 100%;
}

.ont-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ont-drawer__nav-link {
  text-decoration: none;
  color: var(--ink-strong);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 14px;
  border-radius: 14px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.ont-drawer__nav-link:hover,
.ont-drawer__nav-link.is-active {
  background: var(--surface-soft);
  color: var(--color-primary);
}

.ont-drawer__meta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--surface-line);
  color: var(--ink-medium);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* =========================================
   STATES
========================================= */
.ont-topbar.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.ont-drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

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

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

body.topbar-scrolled .ont-navbar {
  top: 0;
  background: var(--navbar-glass-bg-scrolled);
  border-top-color: rgba(255, 255, 255, 0.06);
  border-bottom-color: var(--navbar-glass-border-scrolled);
  box-shadow: var(--shadow-navbar-scrolled);
  backdrop-filter: blur(var(--navbar-glass-blur-scrolled));
  -webkit-backdrop-filter: blur(var(--navbar-glass-blur-scrolled));
}

body.topbar-scrolled .ont-navbar__inner {
  min-height: var(--navbar-height-desktop-scrolled);
  gap: 24px;
}

body.topbar-scrolled .ont-navbar__brand-mark {
  width: 76px;
  flex-basis: 76px;
}

body.topbar-scrolled .ont-navbar__line--top {
  height: 40px;
  border-bottom-color: rgba(255, 255, 255, 0.10);
}

body.topbar-scrolled .ont-navbar__line--bottom {
  height: 44px;
}

body.topbar-scrolled .ont-searchbar,
body.topbar-scrolled .ont-action-btn,
body.topbar-scrolled .ont-mobile-circle,
body.topbar-scrolled .ont-mobile-menu {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

body.topbar-scrolled .ont-searchbar:focus-within {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

body.topbar-scrolled .ont-action-btn__icon {
  background: rgba(255, 255, 255, 0.10);
}

body.no-scroll {
  overflow: hidden;
}

/* =========================================
   MEDIA QUERIES
========================================= */
@media (max-width: 1400px) {
  .ont-navbar__inner {
    grid-template-columns: minmax(220px, 290px) 1fr;
    gap: 22px;
  }

  .ont-navbar__nav {
    gap: 22px;
  }

  .ont-searchbar {
    width: min(100%, 390px);
  }
}

@media (max-width: 1200px) {
  .ont-topbar__item--address {
    display: none;
  }

  .ont-topbar__group--left .ont-topbar__separator:first-of-type {
    display: none;
  }

  .ont-navbar__brand-copy small {
    display: none;
  }

  .ont-searchbar {
    width: min(100%, 320px);
  }

  .ont-navbar__nav {
    gap: 18px;
  }

  .ont-navbar__link {
    font-size: 0.88rem;
  }
}

@media (max-width: 992px) {
  .ont-topbar {
    display: none;
  }

  .ont-navbar {
    top: 0;
  }

  .ont-navbar__inner {
    min-height: var(--navbar-height-mobile);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
  }

  .ont-navbar__desktop {
    display: none;
  }

  .ont-navbar__mobile-actions {
    display: flex;
  }

  .ont-navbar__brand {
    padding-block: 10px;
    gap: 12px;
  }

  .ont-navbar__brand::after {
    display: none;
  }

  .ont-navbar__brand-mark {
    width: 72px;
    flex-basis: 72px;
  }

  .ont-navbar__brand-copy strong {
    font-size: 0.94rem;
  }

  .ont-navbar__brand-copy small {
    display: block;
    font-size: 0.72rem;
  }

  .ont-dropdown__menu--mobile {
    right: 0;
    left: auto;
    min-width: 190px;
  }
}

@media (max-width: 768px) {
  .ont-navbar__inner {
    padding-inline: 16px;
  }

  .ont-navbar__brand-mark {
    width: 66px;
    flex-basis: 66px;
  }

  .ont-navbar__brand-copy strong {
    font-size: 0.9rem;
  }

  .ont-navbar__brand-copy small {
    font-size: 0.68rem;
  }

  .ont-mobile-circle {
    width: 40px;
    height: 40px;
  }

  .ont-mobile-menu {
    width: 46px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .ont-navbar__inner {
    min-height: 74px;
    gap: 10px;
  }

  .ont-navbar__brand {
    gap: 10px;
  }

  .ont-navbar__brand-mark {
    width: 58px;
    flex-basis: 58px;
  }

  .ont-navbar__brand-copy strong {
    font-size: 0.84rem;
  }

  .ont-navbar__brand-copy small {
    display: none;
  }

  .ont-drawer {
    width: min(100%, 100%);
    max-width: 350px;
  }
}

/* =========================================
   ACCESSIBILITY / REDUCED MOTION
========================================= */
@media (prefers-reduced-motion: reduce) {
  .ont-topbar,
  .ont-navbar,
  .ont-dropdown__menu,
  .ont-drawer__panel,
  .ont-drawer-overlay {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}