.tcc-site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 68px;
  background: rgba(250, 250, 248, 0.96);
  border-bottom: 1px solid #e7e4df;
  backdrop-filter: blur(18px) saturate(1.3);
}

.tcc-nav-inner {
  width: min(1120px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.tcc-nav-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: #1a1a1f;
  font: 800 16px/1 system-ui, sans-serif;
  text-decoration: none;
}

.tcc-nav-logo img {
  display: block;
  width: 38px;
  height: 38px;
}

.tcc-nav-logo .tcc-wordmark {
  color: #1a1a1f;
}

.tcc-nav-logo .tcc-wordmark b {
  color: #e8590c;
  font-weight: inherit;
}

.tcc-nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.tcc-nav-links > a {
  color: #52525b;
  font: 500 14px/1.4 system-ui, sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.tcc-nav-links > a:hover,
.tcc-nav-links > a[aria-current="page"] {
  color: #e8590c;
}

.tcc-nav-links > .tcc-nav-cta {
  padding: 11px 20px;
  border-radius: 10px;
  background: #e8590c;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(232, 89, 12, 0.2);
}

.tcc-nav-links > .tcc-nav-cta:hover {
  background: #d14e0a;
  color: #fff;
}

.tcc-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
}

.tcc-nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: #1a1a1f;
}

@media (max-width: 780px) {
  .tcc-nav-inner {
    width: min(100% - 32px, 1120px);
  }

  .tcc-nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .tcc-nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    padding: 18px 24px 24px;
    background: #fafaf8;
    border-bottom: 1px solid #e7e4df;
    box-shadow: 0 12px 24px rgba(26, 26, 31, 0.08);
  }

  .tcc-nav-links.is-open {
    display: grid;
    gap: 6px;
  }

  .tcc-nav-links > a {
    display: block;
    padding: 11px 4px;
  }

  .tcc-nav-links > .tcc-nav-cta {
    margin-top: 6px;
    padding: 13px 18px;
    text-align: center;
  }
}
