.top-bar {
      position: relative;
      z-index: 30;
      min-height: var(--top-bar-height);
      margin-bottom: calc(-1 * var(--top-bar-height));
      overflow: hidden;
      color: rgba(255, 255, 255, 0.86);
      background: transparent;
      font-family: "Inter", Arial, sans-serif;
      font-size: 12px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

.top-bar__inner {
      width: 100%;
      max-width: none;
      min-height: var(--top-bar-height);
      overflow: hidden;
      padding: 0;
      margin: 0;
    }

.top-bar__track {
      display: flex;
      align-items: center;
      width: max-content;
      min-height: var(--top-bar-height);
      gap: 36px;
      padding-right: 36px;
      animation: topBarScroll 24s linear infinite;
      white-space: nowrap;
    }

.top-bar__track span {
      display: inline-flex;
      align-items: center;
      gap: 36px;
    }

.top-bar__track span::after {
      width: 4px;
      height: 4px;
      content: "";
      background: rgba(255, 255, 255, 0.72);
      border-radius: 50%;
    }

@keyframes topBarScroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

.site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      margin-top: var(--top-bar-height);
      margin-bottom: calc(-1 * (var(--top-bar-height) + var(--header-height)));
      background: transparent;
      border-bottom: 1px solid transparent;
      transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
    }

.site-header.is-scrolled {
      background: var(--color-black);
      border-color: rgba(155, 107, 61, 0.18);
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
    }

.nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: var(--header-height);
    }

.logo {
      max-width: 320px;
      color: var(--color-white);
      font-family: "Playfair Display", Georgia, serif;
      font-size: 24px;
      font-weight: 700;
      line-height: 1.1;
    }

.nav__links {
      display: flex;
      align-items: center;
      gap: 30px;
      color: rgba(255, 255, 255, 0.84);
      font-family: "Inter", Arial, sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.13em;
      list-style: none;
      margin: 0;
      padding: 0;
      text-transform: uppercase;
    }

.nav__links a {
      position: relative;
      display: inline-flex;
      padding: 10px 0;
      transition: color 200ms ease;
    }

.nav__links a::after {
      position: absolute;
      left: 0;
      bottom: 3px;
      width: 100%;
      height: 1px;
      content: "";
      background: #8f1f1f;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 220ms ease;
    }

.nav__links a:hover,
    .nav__links a:focus-visible {
      color: #8f1f1f;
    }

.nav__links a:hover::after,
    .nav__links a:focus-visible::after {
      transform: scaleX(1);
      transform-origin: left;
    }

.nav__links a.nav__cta {
      min-height: 40px;
      padding: 10px 18px;
      color: var(--color-white);
      background: #8f1f1f;
      border: 1px solid #8f1f1f;
      border-radius: 3px;
    }

.nav__links a.nav__cta::after {
      display: none;
    }

.nav__links a.nav__cta:hover,
    .nav__links a.nav__cta:focus-visible {
      color: var(--color-white);
      background: #6e0f12;
      border-color: #6e0f12;
    }

.menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      padding: 0;
      color: var(--color-white);
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 4px;
      cursor: pointer;
    }

.menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      margin: 5px auto;
      background: currentColor;
      transition: transform 220ms ease, opacity 220ms ease;
    }

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

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

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